/* style.css */
:root {
  --color-primary: #EAB308; /* Mustard Yellow */
  --color-primary-hover: #ca8a04;
  --color-bg-dark: #0f1115; /* Main dark background */
  --color-bg-light: #ffffff; /* White background for alternate sections */
  --color-surface-dark: #1a1d24; /* Slightly lighter dark */
  --color-surface-light: #f9fafb; /* Light gray for alternate sections */
  --color-text-dark: #111827;
  --color-text-light: #ffffff;
  --color-text-muted-dark: #9ca3af;
  --color-text-muted-light: #4b5563;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-accent {
  color: var(--color-primary);
}

.text-center {
  text-align: center;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.25);
}

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

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

.btn-outline.dark {
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
}
.btn-outline.dark:hover {
  background-color: var(--color-text-dark);
  color: var(--color-text-light);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background-color: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo a {
  display: flex;
  flex-direction: column;
  color: var(--color-text-light);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  font-family: var(--font-heading);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-light);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.7) 50%, rgba(15, 17, 21, 0.2) 100%);
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
  padding-bottom: 11rem;
}

.pill-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.pill-badge-small {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.hero-title-new {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
}

.hero-subtitle-new {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 300;
}

/* Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(26, 29, 36, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none;
  width: calc(100% - 4rem);
  max-width: 1000px;
}

.stat-card {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted-dark);
  font-family: var(--font-heading);
}

/* Intro Section */
.intro-section {
  padding: 8rem 0;
  background-color: var(--color-bg-light);
}

.intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
}

.intro-text p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.intro-image-wrapper {
  position: relative;
}

.intro-image {
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary);
  border-radius: 12px;
  z-index: 1;
}

/* Process Section */
.process-section {
  padding: 8rem 0;
  background-color: var(--color-surface-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
}

/* Connection Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-color: rgba(234, 179, 8, 0.3);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  color: #000;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
  box-shadow: 0 0 0 10px var(--color-surface-light);
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--color-text-muted-light);
  font-size: 1rem;
}

/* Gallery Carousel Section */
.gallery-carousel-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.carousel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 21, 0.95);
}

.carousel-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.text-light { color: #fff !important; }

.carousel-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 2rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.carousel-item {
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .carousel-item {
    width: 280px;
    height: 220px;
  }
}

/* Page Header */
.page-header {
  background-color: var(--color-bg-dark);
  padding: 12rem 0 6rem;
  border-bottom: 2px solid var(--color-primary);
}

.page-title {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
}

/* About Page Content */
.about-page-content {
  padding: 8rem 0;
  background-color: var(--color-bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: flex-start;
}

.about-brand {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.dotted-divider {
  width: 100%;
  border-bottom: 5px dotted var(--color-primary);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.about-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
}

.about-text-column p {
  color: var(--color-text-muted-light);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.rounded-image {
  border-radius: 24px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shadow-lg {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section {
  padding: 6rem 0 10rem;
  background-color: var(--color-surface-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--color-bg-light);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 179, 8, 0.1);
}

/* Floating animation and hover effects */
.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.3);
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 30px rgba(234, 179, 8, 0.4);
}

.value-icon {
  width: 40px;
  height: 40px;
}

.value-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-desc {
  color: var(--color-text-muted-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Subtle background glow on hover */
.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234,179,8,0.08) 0%, rgba(255,255,255,0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover::before {
  opacity: 1;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Services Page */
.services-subnav {
  padding: 1.5rem 0;
  background: var(--color-bg-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.services-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.service-pill {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-pill:hover, .service-pill.active {
  background: var(--color-primary);
  color: #000;
}

.services-disclaimer {
  text-align: center;
  color: var(--color-text-muted-light);
  font-size: 0.85rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-block {
  padding: 6rem 0;
  border-bottom: 2px dotted rgba(0,0,0,0.1);
}

.service-block:last-child {
  border-bottom: none;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Reverse layout for even blocks */
.service-block:nth-child(even) .service-grid {
  direction: rtl;
}
.service-block:nth-child(even) .service-content {
  direction: ltr;
}

.service-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-title {
  color: var(--color-primary);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-subtitle {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-desc {
  color: var(--color-text-muted-light);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.service-list {
  margin-bottom: 2rem;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.service-list li::before {
  content: '•';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: -4px;
}

@media (max-width: 992px) {
  .service-grid, .service-block:nth-child(even) .service-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    direction: ltr;
  }
}

/* Location Section */
.location-section {
  padding: 8rem 0;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.info-block {
  margin-bottom: 2.5rem;
}

.info-block h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.info-block p {
  color: var(--color-text-muted-light);
  font-size: 1.125rem;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background-color: #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 6rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-desc {
  color: var(--color-text-muted-dark);
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links a {
  color: var(--color-text-light);
  font-weight: 500;
  margin: 0 0.5rem;
}
.social-links a:first-child { margin-left: 0; }
.social-links a:hover { color: var(--color-primary); }

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-list li {
  margin-bottom: 1rem;
}

.footer-list a {
  color: var(--color-text-muted-dark);
}

.footer-list a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted-dark);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--color-primary);
}

/* Gallery Page (Bento Layout) */
.gallery-section {
  padding: 4rem 0 8rem;
  background-color: var(--color-bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: none; /* Uses custom cursor */
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Bento Layout Placements */
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; }

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { grid-column: span 1; }

.gallery-item:nth-child(6) { grid-column: span 1; }
.gallery-item:nth-child(7) { grid-column: span 2; }

.gallery-item:nth-child(8) { grid-column: span 3; grid-auto-rows: 400px; }

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item:nth-child(7) { grid-column: span 1; }
  .gallery-item:nth-child(8) { grid-column: span 1; }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item { grid-column: span 1 !important; }
}



/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--color-primary);
}

/* Custom Cursor */
@media (pointer: fine) {
  body, a, button, .btn, .carousel-item {
    cursor: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease, border 0.2s ease;
  display: none;
}

.custom-cursor.hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(234, 179, 8, 0.2);
  border: 2px solid var(--color-primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
.logo-img {
  max-height: 80px;
  width: auto;
}

.footer-logo-img {
  max-height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .intro-container {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .intro-container, .location-container {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
    position: relative;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 3rem 2rem;
  }
  
  .stat-card:not(:last-child)::after {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
