@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f9;
  --text-primary: #333333;
  --text-secondary: #777777;
  --accent-color: #000000;
  --accent-hover: #333333;
  --border-color: #eeeeee;

  --font-body: 'Open Sans', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #222222;
  margin-bottom: 1rem;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Bar */
.top-bar {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 8px 0;
  font-size: 13px;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span {
  margin-right: 20px;
}

.top-bar-left i {
  margin-right: 5px;
}

.top-bar-social a {
  color: #ffffff;
  margin-left: 15px;
}

.top-bar-social a:hover {
  opacity: 0.8;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 24px;
  color: #222222;
}

.logo-text {
  color: #222222;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #555555;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333333;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #f8fafc;
  /* Very light modern gray/blue */
  color: var(--text-primary);
  padding: 180px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 85vh;
  border-bottom: 1px solid var(--border-color);
}

.hero-bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  z-index: 1;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding-right: 20px;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
}

.hero-title {
  font-size: 68px;
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 24px;
  color: #0f172a;
  letter-spacing: -1px;
}

.hero-title strong {
  font-weight: 800;
  color: var(--accent-color);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-large i {
  margin-left: 10px;
}

.btn-primary.btn-large {
  background-color: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary.btn-large:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.btn-outline.btn-large {
  background-color: #fff;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.btn-outline.btn-large:hover {
  border-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.bottom-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--accent-color);
  animation: bounce 2s infinite;
  opacity: 0.6;
  z-index: 3;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@media (max-width: 992px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 60px;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .visual-circle {
    width: 400px;
    height: 400px;
  }

  .nav-container {
    padding: 10px 6px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .btn-large {
    width: 100%;
    box-sizing: border-box;
  }

  .visual-circle {
    width: 300px;
    height: 300px;
  }
}

/* Page Header (Inner Pages) */
.page-header {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--accent-color);
}

/* General Sections */
.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-box {
  background-color: #ffffff;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  transition: var(--transition-normal);
  border-bottom: 3px solid transparent;
}

.service-box:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--accent-color);
}

.service-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-box p {
  color: var(--text-secondary);
}

/* About Section */
.about-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-item p {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Contact Area */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info-block {
  margin-bottom: 30px;
}

.contact-info-block h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info-block p,
.contact-info-block a {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-block i {
  color: var(--accent-color);
  font-size: 18px;
  width: 20px;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: #222222;
  color: #dddddd;
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-widget p {
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dddddd;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #333333;
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
}

.footer-social a:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #999999;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 42px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}