@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Minimalist Global Authority Palette */
  --color-bg: #F9F9F9;
  --color-bg-secondary: #FFFFFF;
  --color-bg-tertiary: #F2F2F2;

  --color-text-main: #2D2D2D;
  /* --color-text-muted: #6B7280; */
  --color-text-muted: #383b3f;
  --color-text-light: #9CA3AF;

  /* Accents extracted from Realistic India logo */
  --color-accent-blue: #1A2238;
  /* --color-accent-gold: #C5A059; */
  --color-accent-gold: #d3941d;

  /* UI Elements */
  --border-color: #E5E7EB;
  --border-color-gold: rgba(197, 160, 89, 0.4);
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --shadow-sm: none;
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-lg: none;
  --shadow-glow: none;

  /* Typography */
  --font-sans: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Spacing */
  --space-container: 1400px;
  --space-responsive: clamp(24px, 5vw, 64px);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
}

strong {
  font-weight: 600 !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography Utilities */
h3 {
  font-family: none;
}

h1,
h2,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-accent-blue);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-xs {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

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

/* Layout Utilities */
.container {
  max-width: var(--space-container);
  margin: 0 auto;
  padding: 0 var(--space-responsive);
}

.section {
  /* padding: clamp(96px, 12vw, 192px) 0; */
  padding: clamp(96px, 9vw, 192px) 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent-gold);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: #b08d4b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-accent-blue);
  border: 1px solid var(--color-accent-gold);
}

.btn-outline:hover {
  border-color: var(--color-accent-gold);
  background-color: var(--color-accent-gold);
  color: var(--color-bg);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 4px 0;
  transition: all 0.3s ease;
}

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

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-accent-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-weight: 700;
}

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

.nav-links a {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-muted);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text-main);
}

/* Glass Card */
.glass-card {
  background: var(--color-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 112px;
  /* Offset for navbar */
  position: relative;
}

.hero .btn {
  padding: 10px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  /* font-size: 0.75rem; */
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1.1;
  /* new */
  font-size: 50px;
}

.hero-desc {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--border-color);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 34, 56, 0.7) 0%, rgba(26, 34, 56, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  ;
  z-index: 0;
  position: relative;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color-gold);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.badge-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Footer */
.footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- New Rev 2 Components --- */

/* Navbar Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-bg);
  min-width: 600px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 101;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--border-radius);
  transition: background 0.2s ease;
  color: var(--color-text-main) !important;
  text-decoration: none;
}

.dropdown-item:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-text-main) !important;
}

.dropdown-item-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--color-accent-gold);
  font-size: 1rem;
}

.dropdown-item-text {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
}

/* Base card improvements (Better than basic cards) */
.premium-card {
  position: relative;
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  border: 1px solid var(--border-color);
  box-shadow: none;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-gold);
}

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

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  border: 1px solid var(--color-accent-gold);
  transition: all 0.3s ease;
}

/* Service Image Link Card (For Services Page) */
.service-link-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.service-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-link-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-link-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-link-card:hover .service-link-image img {
  transform: scale(1.05);
}

.service-link-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-link-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

.service-link-card:hover .service-link-title {
  color: var(--color-accent-gold);
}

/* Slider for Testimonials */
.testimonial-section {
  background: var(--color-bg-secondary);
  color: var(--color-text-main);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 20px;
}

.testimonial-card-inner {
  /* background: var(--color-bg-secondary); */
  background: #fdf6df;
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: none;
  border: 1px solid var(--border-color);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
  color: var(--color-accent-blue);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: 0.3s;
}

.slider-dot.active {
  background: var(--color-accent-gold);
  transform: scale(1.2);
}

/* Embedded Map container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--color-bg-tertiary);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Unique Footer Base */
.footer-unique {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-unique .footer-desc {
  color: var(--color-text-muted);
}

.footer-unique .footer-title {
  color: var(--color-text-main);
}

.footer-unique .footer-links a {
  color: var(--color-text-muted);
}

.footer-unique .footer-links a:hover {
  color: var(--color-accent-gold);
}

.footer-unique .footer-bottom {
  border-top-color: var(--border-color);
  color: var(--color-text-muted);
}



/* pages css */
.hero-bg-accent {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  z-index: -1;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
}

.about-hero {
  background: linear-gradient(to right, var(--color-bg), var(--color-bg-secondary));
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-bg);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 80px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.split-card-sticky {
  background: #fafaf9;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 100px;
  height: 600px;
  border-right: 1px solid var(--border-color);
}

.split-card-scroll {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.service-number {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #d4a373;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-accent-blue);
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.service-feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-size: 20px;
  line-height: 1.5;
}

.service-feature-list li i {
  color: var(--color-accent-gold);
  margin-top: 4px;
  font-size: 0.9rem;
}

.result-box {
  background: #fdfbf7;
  border-left: 4px solid var(--color-accent-gold);
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.result-box h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-box p {
  /* font-size: 0.95rem; */
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-main);
}

.split-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-pill:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 900px) {
  .split-card {
    grid-template-columns: 1fr;
  }

  .split-card-sticky {
    position: relative;
    top: 0;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-light .stats-container,
  .hero-light>div>div[style*="display: grid"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {

  .hero-light .stats-container,
  .hero-light>div>div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .service-scrolling-row {
    flex-direction: column !important;
    gap: 40px !important;
  }

  .sticky-text-block {
    position: relative !important;
    top: 0 !important;
  }
}


.customers-hero {
  background: var(--color-bg-tertiary);
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.logo-item {
  background: var(--color-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.logo-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.case-card {
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.case-image {
  height: 250px;
  background: var(--color-bg-tertiary);
  width: 100%;
  object-fit: cover;
}

.case-content {
  padding: 40px;
}

.case-metric {
  display: inline-flex;
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-accent-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  div[style*="display: grid; grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  div[style*="position: sticky;"] {
    position: relative !important;
    top: 0 !important;
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
  }

  .hero-dark div[style*="display: grid; grid-template-columns: repeat(3, 1fr)"],
  .hero-dark div[style*="display: grid; grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-dark div[style*="border-right"] {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}






/* ── HOW WE WORK ── */
.process-section {
  background: var(--navy);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold-light);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.process-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.process-section h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.process-section>.process-inner>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 20px;
  color: rgba(201, 168, 76, 0.3);
  font-size: 20px;
}

.step-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D49826;
  border: 1px solid #D49826;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
  color: #fff;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 17px;
  color: #000;
  line-height: 1.65;
  font-weight: 300;
  font-weight: 400;
}









/* contact us */
/* ── MAIN CONTACT SECTION ── */
.contact-section {
  padding: 80px 64px;
  max-width: 100% !important;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* ── MAIN CONTACT SECTION ── */
.contact-section {
  padding: 80px 64px;
  max-width: 1060px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* ── LEFT: Info panel ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid #666;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.25s;
}

.info-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}

.info-card-header p {
  font-size: 18px;
  color: var(--muted);
  margin-top: 2px;
}

.info-detail {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  display: block;
}

.info-detail-muted {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 300;
}

/* Contact action buttons */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.action-btn-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.action-btn.phone {
  background: var(--navy);
  color: var(--white);
}

.action-btn.phone:hover {
  background: var(--navy2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 22, 35, 0.2);
}

.action-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.action-btn.whatsapp:hover {
  background: #20b858;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.action-btn.email {
  background: var(--cream2);
  color: var(--text);
  border-color: var(--border);
}

.action-btn.email:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.action-btn-text {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.action-btn-text span {
  font-size: 18px;
  opacity: 0.7;
  font-weight: 600;
  margin-top: 1px;
}

/* address card */
.address-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.5;
}

.address-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.map-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Hours */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  color: var(--muted);
  font-weight: 400;
}

.hours-time {
  font-weight: 500;
  color: var(--text);
}

.hours-closed {
  color: #e05555;
  font-weight: 500;
}

/* ── RIGHT: Form ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  position: sticky;
  top: 88px;
}

.form-top {
  margin-bottom: 32px;
}

.form-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-top h2 em {
  font-style: italic;
  color: var(--gold);
}

.form-top p {
 font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-text-light);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  background: var(--color-accent-gold);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--color-accent-gold);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(11, 22, 35, 0.2);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}