/* ============================================
   VASTU KEY — Main Stylesheet
   Premium Vastu Consultancy Website
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #FAF7F2;
  --color-bg-alt: #F3EDE3;
  --color-bg-dark: #2C2C2C;
  --color-gold: #C8A951;
  --color-gold-light: #E0C97A;
  --color-gold-dark: #A8893A;
  --color-saffron: #C47A3A;
  --color-saffron-light: #D99A5E;
  --color-terracotta: #B86B3A;
  --color-green: #3D5A3E;
  --color-green-light: #5A7A5B;
  --color-green-dark: #2E452F;
  --color-charcoal: #2C2C2C;
  --color-brown: #4A3728;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-text-muted: #8E8E8E;
  --color-white: #FFFFFF;
  --color-border: #E5DDD0;
  --color-overlay: rgba(44, 44, 44, 0.6);
  --color-overlay-light: rgba(44, 44, 44, 0.35);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-saffron);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--space-md);
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-green { color: var(--color-green); }
.text-saffron { color: var(--color-saffron); }

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
  font-weight: 400;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-saffron));
  margin: var(--space-lg) auto;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn--secondary:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #20BD5A;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn--green {
  background: var(--color-green);
  color: var(--color-white);
}

.btn--green:hover {
  background: var(--color-green-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-charcoal);
  font-weight: 700;
}

.header__logo-text span {
  color: var(--color-gold);
}

/* Navigation */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__item {
  position: relative;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-gold-dark);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Dropdown */
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav__item:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  z-index: 100;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.nav__dropdown-link:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-gold-dark);
  padding-left: 1.5rem;
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-xs) 0;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-sm);
  z-index: 1010;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.65) 0%,
    rgba(61, 90, 62, 0.45) 50%,
    rgba(200, 169, 81, 0.25) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: var(--space-xl);
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero__title {
  font-size: 3.2rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
  line-height: 1.6;
}

.hero__btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero carousel indicators */
.hero__indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 3;
}

.hero__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__indicator.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* --- Intro / Trust Section --- */
.intro {
  text-align: center;
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.intro__card {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.intro__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.intro__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  border-radius: 50%;
  color: var(--color-gold);
}

.intro__card-icon svg {
  width: 28px;
  height: 28px;
}

.intro__card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.intro__card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.service-card__body {
  padding: var(--space-lg) var(--space-xl);
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--color-saffron);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
}

/* --- Process Section --- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-saffron), var(--color-green), var(--color-gold));
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__number {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.process__step h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.process__step p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Why Choose Us --- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.why__item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  transition: background var(--transition-fast);
}

.why__item:hover {
  background: var(--color-white);
}

.why__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.15), rgba(200, 169, 81, 0.05));
  color: var(--color-gold);
}

.why__icon svg {
  width: 24px;
  height: 24px;
}

.why__item h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.why__item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Video Section --- */
.video__grid {
  display: block;
}

.video__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.video__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-align: center;
}

.video__item:hover,
.video__item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.video__item.active {
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.08), rgba(200, 169, 81, 0.02));
}

.video__thumb {
  width: 100%;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--color-bg-alt);
}

.video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__thumb-play svg {
  width: 10px;
  height: 10px;
  fill: #fff;
  margin-left: 2px;
}

.video__item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.4;
}

.video__player {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--color-charcoal);
  aspect-ratio: 9/16;
  max-height: 500px;
  box-shadow: var(--shadow-lg);
}

.video__player--landscape {
  aspect-ratio: 16/9;
  max-height: none;
}

.video__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-charcoal), var(--color-brown));
}

.video__poster-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
  transition: transform var(--transition-base);
}

.video__poster:hover .video__poster-play {
  transform: scale(1.1);
}

.video__poster-play svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 4px;
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-alt);
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-charcoal);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial-card__category {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-green);
  background: rgba(61, 90, 62, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
  color: var(--color-white);
  text-align: center;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
}

.cta-section .btn-group {
  justify-content: center;
}

/* --- Footer --- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__brand-logo img {
  height: 50px;
  width: auto;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 700;
}

.footer__brand-name span {
  color: var(--color-gold);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 3px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.65);
}

.footer__contact-item a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.5);
}

.footer__bottom-links a:hover {
  color: var(--color-gold);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* --- Page Banner (Inner pages) --- */
.page-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--color-charcoal), var(--color-brown));
  overflow: hidden;
}

.page-banner--with-bg {
  background-size: cover;
  background-position: center;
}

.page-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
}

.page-banner__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
}

.page-banner__title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-banner__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.page-banner__breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.page-banner__breadcrumb a {
  color: var(--color-gold-light);
}

.page-banner__breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story__img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__img img {
  width: 100%;
  height: auto;
}

.about-story__content h2 {
  margin-bottom: var(--space-lg);
}

.about-story__content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Profile Section */
.profile {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.profile__photo {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.profile__photo img {
  width: 100%;
  height: auto;
}

.profile__content h2 {
  margin-bottom: var(--space-sm);
}

.profile__title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.profile__content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Approach Cards */
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.approach__card {
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.approach__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.approach__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.15), rgba(200, 169, 81, 0.05));
  color: var(--color-gold);
}

.approach__card-icon svg {
  width: 28px;
  height: 28px;
}

.approach__card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.approach__card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- FAQ Section --- */
.faq__list {
  max-width: 750px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.faq__item.active {
  border-color: var(--color-gold);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-gold-dark);
}

.faq__icon,
.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-gold);
}

.faq__item.active .faq__icon,
.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact__info-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.15), rgba(200, 169, 81, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact__info-icon svg {
  width: 22px;
  height: 22px;
}

.contact__info-card h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact__info-card p,
.contact__info-card a {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact__info-card a:hover {
  color: var(--color-gold-dark);
}

.contact__hours h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.contact__hours-list {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact__hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
  background: var(--color-white);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* Map section */
.map-section {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Service Detail Page --- */
.service-detail__overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.service-detail__overview-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail__overview-img img {
  width: 100%;
  height: auto;
}

.service-detail__issues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-detail__issue {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.service-detail__issue svg {
  width: 18px;
  height: 18px;
  color: var(--color-saffron);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__issue span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.service-detail__process-list {
  max-width: 700px;
  margin: 0 auto;
}

.service-detail__process-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail__process-item:last-child {
  border-bottom: none;
}

.service-detail__process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

.service-detail__process-item h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.service-detail__process-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.service-detail__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61, 90, 62, 0.12), rgba(61, 90, 62, 0.04));
  color: var(--color-green);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Privacy / Terms pages --- */
.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--space-sm);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* --- Responsive Design --- */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }

  .hero__title { font-size: 2.5rem; }

  .intro__grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); }
  .process__grid::before { display: none; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail__benefits { grid-template-columns: repeat(2, 1fr); }

  .about-story { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .profile { grid-template-columns: 1fr; }
  .profile__photo { max-width: 350px; position: static; }
  .approach__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; }
  .service-detail__overview { grid-template-columns: 1fr; }
  .video__list { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --space-4xl: 3.5rem;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.25rem; }

  .container {
    padding: 0 var(--space-md);
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1005;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: right var(--transition-base);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav__link {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link::after { display: none; }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background: var(--color-bg-alt);
    margin: 0 calc(-1 * var(--space-xl));
    padding: 0 var(--space-xl);
  }

  .nav__item.dropdown-open .nav__dropdown {
    max-height: 600px;
    padding: var(--space-sm) var(--space-xl);
  }

  .nav__dropdown-link {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__dropdown-link:last-child {
    border-bottom: none;
  }

  .nav__dropdown-link:hover {
    padding-left: 0;
    background: transparent;
  }

  .nav__toggle { display: flex; }
  .header__cta { display: none; }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__btns {
    flex-direction: column;
    align-items: center;
  }

  /* Grids */
  .intro__grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr; }
  .service-detail__issues { grid-template-columns: 1fr; }
  .service-detail__benefits { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }

  /* Page banner */
  .page-banner {
    min-height: 260px;
  }

  .page-banner__title {
    font-size: 1.85rem;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section .btn-group {
    flex-direction: column;
    align-items: center;
  }

  /* WhatsApp button */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .video__list { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }

  .hero__title { font-size: 1.7rem; }
  .hero__tagline { font-size: 0.9rem; }

  .section {
    padding: var(--space-2xl) 0;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.88rem;
  }

  .process__number {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }

  .service-card__img {
    height: 180px;
  }
}

/* Print styles */
@media print {
  .header, .footer, .whatsapp-float, .cta-section {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    margin-top: 0;
  }
}

/* ===========================
   Site Visits Gallery
   =========================== */
.visits-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.visits-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visits-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.visits-gallery__item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.visits-gallery__caption {
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2C2C2C;
  text-align: center;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

/* Process Steps */
.visits-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.visits-process__step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.visits-process__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #6B8F71, #3D5A3E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visits-process__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.visits-process__step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2C2C2C;
}

.visits-process__step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .visits-gallery {
    grid-template-columns: 1fr;
  }

  .visits-gallery__item img {
    height: 280px;
  }

  .visits-process {
    grid-template-columns: 1fr;
  }
}
