/* ============================================
   Vista Touch Interior — Design System
   Colors derived from the soft blue and silver logo
   ============================================ */

:root {
  --gold: #88a9cc;
  --gold-light: #d9e6f3;
  --gold-dark: #557da5;
  --teal: #516b82;
  --teal-light: #7f9dbc;
  --teal-dark: #243746;
  --cream: #f6f9fc;
  --cream-dark: #e5edf5;
  --charcoal: #202933;
  --charcoal-light: #334250;
  --silver: #a8adb2;
  --mist: #eef4f9;
  --ink: #18232d;
  --white: #ffffff;
  --text: #34404a;
  --text-muted: #6d7781;
  --gradient-gold: linear-gradient(135deg, #6f94bb 0%, #dbe7f3 54%, #9ca4ad 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 58%, var(--teal-light) 100%);
  --gradient-hero: linear-gradient(110deg, rgba(24, 35, 45, 0.86) 0%, rgba(81, 107, 130, 0.72) 52%, rgba(217, 230, 243, 0.28) 100%);
  --shadow-sm: 0 2px 12px rgba(32, 41, 51, 0.08);
  --shadow-md: 0 10px 34px rgba(32, 41, 51, 0.12);
  --shadow-lg: 0 22px 70px rgba(32, 41, 51, 0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(246, 249, 252, 0.95) 100%),
    var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.text-gold { color: var(--gold-dark); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(85, 125, 165, 0.26);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(85, 125, 165, 0.34);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(217, 230, 243, 0.7);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-3px);
}

.btn-teal {
  background: var(--gradient-teal);
  color: var(--white);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(24, 35, 45, 0.72), rgba(24, 35, 45, 0));
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--white);
  padding: 5px;
  box-shadow: 0 8px 24px rgba(32, 41, 51, 0.12);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.header.scrolled .logo-name {
  color: var(--ink);
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header.scrolled .logo-tagline {
  color: var(--gold-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.header.scrolled .nav-link {
  color: var(--charcoal-light);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--gold-dark);
}

.header.scrolled .nav-link.nav-cta {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--ink);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 24px) 0 46px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(217, 230, 243, 0.18);
  border: 1px solid rgba(217, 230, 243, 0.45);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
  color: var(--white);
  max-width: 980px;
  font-size: clamp(2.35rem, 5.4vw, 4.6rem);
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--white), var(--gold-light) 44%, #9fb8d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 760px;
  margin-bottom: 26px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease 0.7s forwards;
  opacity: 0;
}

.hero-slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-slider-dots button.active,
.hero-slider-dots button:hover {
  width: 48px;
  background: var(--gold-light);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease 0.9s forwards;
  opacity: 0;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.15rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  background:
    linear-gradient(115deg, rgba(24, 35, 45, 0.94), rgba(81, 107, 130, 0.88)),
    url('../assets/indian-luxury-interior.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1200px) / 2));
  width: 220px;
  height: 220px;
  background: url('../assets/vista-touch-logo.jpeg') center/contain no-repeat;
  opacity: 0.14;
  transform: translateY(-42%);
  filter: saturate(0.9);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.8);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

/* About Preview */
.about-preview {
  background: var(--white);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-image img.portrait-img,
.owner-image img.portrait-img {
  object-position: center top;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--gradient-gold);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-image-badge h4 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-image-badge p {
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
}

.about-content .features-list {
  margin: 32px 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(85, 125, 165, 0.12) 0%, rgba(168, 173, 178, 0.18) 100%);
  border-radius: 12px;
  color: var(--teal);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.features-list h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.features-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services Grid */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(168, 173, 178, 0.2);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-content {
  padding: 28px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
}

.service-link svg {
  transition: transform var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Gallery */
.gallery-section {
  background:
    linear-gradient(180deg, rgba(24, 35, 45, 0.96), rgba(36, 55, 70, 0.96)),
    url('../assets/indian-royal-exterior.jpg');
  background-size: cover;
  background-position: center;
}

.gallery-section .section-label,
.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 35, 45, 0.86) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.gallery-page-section {
  background: var(--cream);
  padding-top: 80px;
}

/* Why Choose Us */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid rgba(168, 173, 178, 0.18);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-teal);
  opacity: 0;
  transition: opacity var(--transition);
}

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

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

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card:hover h3,
.why-card:hover p {
  color: var(--white);
}

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.why-card:hover .why-number {
  -webkit-text-fill-color: var(--gold);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold-light);
  color: var(--ink);
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

/* Testimonial */
.testimonial-section {
  background:
    linear-gradient(120deg, rgba(24, 35, 45, 0.95), rgba(81, 107, 130, 0.94)),
    url('../assets/indian-luxury-interior.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(217, 230, 243, 0.1);
  line-height: 1;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-content {
  color: var(--white);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-initial {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gradient-gold);
  border: 3px solid var(--gold-light);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(24, 35, 45, 0.22);
}

.testimonial-author h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-author p {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dots button.active {
  background: var(--gold-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, var(--cream), var(--cream-dark));
  position: relative;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 173, 178, 0.2);
}

.cta-content {
  padding: 60px;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-image {
  height: 100%;
  min-height: 400px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid rgba(168, 173, 178, 0.18);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-card:hover {
  background: var(--gradient-teal);
  transform: translateX(8px);
}

.contact-card:hover .contact-card-icon {
  background: var(--gold-light);
  color: var(--ink);
}

.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover a {
  color: var(--white);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  color: var(--teal);
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}

.contact-form-wrapper {
  background: linear-gradient(180deg, var(--cream), var(--white));
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 173, 178, 0.2);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(168, 173, 178, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(136, 169, 204, 0.18);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-success {
  display: none;
  padding: 16px;
  background: rgba(136, 169, 204, 0.13);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  margin-bottom: 20px;
  text-align: center;
}

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

/* Map */
.map-section {
  padding: 0;
}

.map-wrapper {
  height: 450px;
  filter: grayscale(30%);
}

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

/* About Page */
.about-story {
  background: var(--white);
}

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

.story-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.owner-section {
  background: var(--cream);
}

.owner-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168, 173, 178, 0.18);
}

.owner-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.owner-content {
  padding: 40px 40px 40px 0;
}

.owner-content .section-label {
  margin-bottom: 8px;
}

.owner-content h2 {
  margin-bottom: 8px;
}

.owner-title {
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

.owner-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--white), var(--cream));
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(168, 173, 178, 0.18);
}

.value-card:hover {
  background: var(--gradient-teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover h3,
.value-card:hover p {
  color: var(--white);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--teal);
}

.value-card:hover .value-icon {
  background: var(--gold-light);
  color: var(--ink);
}

.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

/* Services Page */
.services-detail {
  background: var(--white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 173, 178, 0.2);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content h3 {
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.service-features li svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.process-section {
  background: var(--cream);
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--teal-light), var(--gold-light));
  z-index: 0;
}

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

.step-number {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  box-shadow: var(--shadow-md);
}

.process-step h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gallery Page */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-teal);
  border-color: var(--teal-light);
  color: var(--white);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-page-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 35, 45, 0.9) 0%, transparent 52%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-page-item:hover .gallery-page-overlay {
  opacity: 1;
}

.gallery-page-overlay h4 {
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.gallery-page-overlay p {
  color: var(--gold-light);
  font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: var(--gold-light);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Why Us Page */
.why-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stat-box {
  background: var(--white);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 173, 178, 0.18);
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.stat-box h3 span {
  color: var(--gold-dark);
}

.stat-box p {
  color: var(--text-muted);
  font-weight: 500;
}

.comparison-section {
  background: var(--cream);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 173, 178, 0.18);
}

.comparison-card.featured {
  background: var(--gradient-teal);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.comparison-card.featured h3,
.comparison-card.featured li {
  color: var(--white);
}

.comparison-card h3 {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cream-dark);
}

.comparison-card.featured h3 {
  border-color: rgba(255, 255, 255, 0.2);
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
}

.comparison-card.featured .comparison-list li {
  border-color: rgba(255, 255, 255, 0.1);
}

.comparison-list li svg {
  flex-shrink: 0;
}

.comparison-list .check { color: var(--teal); }
.comparison-card.featured .comparison-list .check { color: var(--gold); }
.comparison-list .cross { color: #ccc; }

.guarantee-section {
  background: var(--white);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guarantee-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.guarantee-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  color: var(--ink);
}

.guarantee-icon svg {
  width: 36px;
  height: 36px;
}

.guarantee-card h3 {
  margin-bottom: 12px;
}

.guarantee-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background:
    linear-gradient(180deg, var(--ink), var(--charcoal));
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-name {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-4px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

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

.footer-bottom a:hover {
  text-decoration: underline;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .why-grid--three,
  .values-grid,
  .process-steps,
  .why-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(24, 35, 45, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header.scrolled .nav .nav-link {
    color: rgba(255, 255, 255, 0.86);
  }

  .header.scrolled .nav .nav-link:hover,
  .header.scrolled .nav .nav-link.active {
    color: var(--gold-light);
  }

  .header.scrolled .nav .nav-link.nav-cta {
    color: var(--ink);
  }

  .nav-cta {
    margin: 16px 0 0;
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .about-grid,
  .story-grid,
  .contact-grid,
  .cta-box,
  .owner-card,
  .service-detail-card,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card:nth-child(even) {
    direction: ltr;
  }

  .services-grid,
  .gallery-page-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .why-grid--three,
  .why-hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
    padding-top: 18px;
  }

  .hero-content {
    padding: calc(var(--header-height) + 18px) 0 34px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }

  .stat-item h3 {
    font-size: 1.55rem;
  }

  .stat-item p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .owner-content {
    padding: 40px;
  }

  .owner-image img {
    height: 350px;
  }

  .comparison-card.featured {
    transform: none;
  }

  .cta-content {
    padding: 40px 24px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  section {
    padding: 70px 0;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider-dots {
    margin-top: 18px;
  }

  .hero-slider-dots button {
    width: 24px;
  }

  .hero-slider-dots button.active,
  .hero-slider-dots button:hover {
    width: 36px;
  }

  .hero-stats {
    gap: 8px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}
