/* ===================================================
   ROYAL CREST INTERIOR & CONSTRUCTION
   Main Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #0A3D62;
  --secondary-color: #3C6382;
  --accent-color: #60A3BC;
  --light-accent: #AED6F1;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --light-bg: #F5F7FA;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #444;
  --text-light: #777;
  --border: rgba(10, 61, 98, 0.12);
  --shadow-sm: 0 2px 20px rgba(10, 61, 98, 0.08);
  --shadow-md: 0 8px 40px rgba(10, 61, 98, 0.14);
  --shadow-lg: 0 20px 60px rgba(10, 61, 98, 0.2);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 4px;
  --radius-lg: 12px;
  --navbar-h: 80px;
  --navbar-h-scroll: 64px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

/* ===== SECTION UTILITIES ===== */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.section-title { color: var(--primary-color); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 580px; }
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(255,255,255,0.15);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,61,98,0.35);
}
.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,61,98,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  background: #b8913d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: all 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  height: var(--navbar-h-scroll);
  box-shadow: var(--shadow-sm);
}
#navbar.dark {
  background: rgba(10,61,98,0.95);
  backdrop-filter: blur(20px);
  height: var(--navbar-h-scroll);
  box-shadow: 0 2px 30px rgba(10,61,98,0.2);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.4s;
  filter: brightness(0) invert(1);
}
#navbar.scrolled .nav-logo img { height: 44px; filter: none; }
#navbar.dark .nav-logo img { height: 44px; filter: brightness(0) invert(1); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.nav-logo-text span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
#navbar.scrolled .nav-logo-text strong { color: var(--primary-color); }
#navbar.scrolled .nav-logo-text span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }
#navbar.scrolled .nav-link { color: var(--text-dark); }
#navbar.scrolled .nav-link:hover { color: var(--primary-color); }
#navbar.dark .nav-link { color: rgba(255,255,255,0.85); }
.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: #b8913d; transform: translateY(-1px); }
.nav-cta::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
#navbar.scrolled .hamburger span { background: var(--primary-color); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,61,98,0.75) 0%,
    rgba(10,61,98,0.4) 50%,
    rgba(10,61,98,0.2) 100%
  );
}
/* ===== VIDEO BACKGROUND (comment/uncomment to switch) ===== */
/* 
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
*/
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--navbar-h);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  width: 40px; height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary-color);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--light-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  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 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,61,98,0.5));
}
.service-icon {
  position: absolute;
  bottom: -24px; left: 24px;
  width: 50px; height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  color: white;
  z-index: 1;
}
.service-card-body { padding: 44px 24px 28px; }
.service-card-body h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; color: var(--gold); }

/* ===== PROJECTS SECTION ===== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

/* CARD BASE */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

/* LAYOUT STRUCTURE */
.project-card:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
  height: 520px;
}

.project-card:nth-child(2) {
  grid-column: span 4;
  height: 250px;
}

.project-card:nth-child(3) {
  grid-column: span 4;
  height: 250px;
}

.project-card:nth-child(4) {
  grid-column: span 6;
  height: 280px;
}

.project-card:nth-child(5) {
  grid-column: span 6;
  height: 280px;
}

/* IMAGE + VIDEO SUPPORT */
.project-card img,
.project-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

/* HOVER ZOOM */
.project-card:hover img,
.project-card:hover video {
  transform: scale(1.05);
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 61, 98, 0.9) 0%,
    rgba(10, 61, 98, 0.4) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;

  display: flex;
  align-items: flex-end;
  padding: 28px;
}

/* SHOW ON HOVER */
.project-card:hover .project-overlay {
  opacity: 1;
}

/* TEXT */
.project-info h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.project-info span {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* DESCRIPTION */
.project-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-top: 6px;
  line-height: 1.4;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* DESCRIPTION ON HOVER */
.project-card:hover .project-info p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width: 768px) {

  .projects-grid {
    display: flex;
    flex-direction: column;
  }

  .project-card {
    height: 260px !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  /* ALWAYS SHOW OVERLAY ON MOBILE */
  .project-overlay {
    opacity: 1 !important;
    background: linear-gradient(
      to top,
      rgba(10,61,98,0.95),
      rgba(10,61,98,0.5),
      transparent
    );
  }

  /* ALWAYS SHOW TEXT */
  .project-info p {
    opacity: 1;
    transform: none;
  }

}

/* ===== BEFORE AFTER ===== */
.before-after-section { background: var(--primary-color); }
.before-after-section .section-label { color: var(--gold-light); }
.before-after-section .section-label::before { background: var(--gold-light); }
.before-after-section .section-title { color: var(--white); }
.before-after-section .section-subtitle { color: rgba(255,255,255,0.65); }
.ba-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  height: 500px;
}
.ba-before, .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 16px;
  background: rgba(10,61,98,0.85);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 5;
}
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }
.ba-slider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 10;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  cursor: ew-resize;
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img-wrap img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.why-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1;
}
.why-badge span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}
.why-feature:hover .why-feature-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}
.why-feature-text h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}
.why-feature-text p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ===== PROCESS SECTION ===== */
.process-section { background: var(--light-bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color), var(--primary-color));
  z-index: 0;
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-number {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.1);
}
.process-step h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.process-step p { font-size: 0.87rem; color: var(--text-light); }

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  padding: 120px 0;
  background: var(--text-dark);
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
  /* Recommended: 1920x1080 */
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-content h2 { color: var(--white); margin-bottom: 16px; }
.video-content p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 40px; }
.video-play-btn {
  width: 80px; height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 1.6rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 16px rgba(255,255,255,0.15);
}
.video-play-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { overflow: hidden; }
.testimonials-track-wrap { overflow: hidden; margin: 0 -12px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 0 12px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--light-accent);
  line-height: 1;
  opacity: 0.5;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
}
.author-info span { font-size: 0.8rem; color: var(--text-light); }
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}
.testimonials-prev,
.testimonials-next {
  width: 44px; height: 44px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--primary-color);
}
.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.testimonials-dots { display: flex; gap: 6px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active { background: var(--primary-color); width: 24px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== MAP SECTION ===== */
.map-section { background: var(--light-bg); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.map-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 2px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text-mid);
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.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.08);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img { height: 48px; filter: brightness(0) invert(1); }
.footer-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}
.footer-logo-text span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; color: var(--gold); opacity: 0; transition: opacity 0.3s; font-size: 0.75rem; }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  color: var(--white);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  height: 380px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-benefits { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  transition: var(--transition);
}
.benefit-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.benefit-check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}
.benefit-item p { font-size: 0.9rem; margin: 0; color: var(--text-mid); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  transition: background 0.3s;
  font-size: 0.95rem;
}
.faq-question:hover { background: var(--light-bg); }
.faq-icon { transition: transform 0.3s; font-size: 0.8rem; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  padding: 0 24px 18px;
  max-height: 300px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ===== ABOUT PAGE ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.founder-img {
  height: 380px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.founder-info { padding: 28px; }
.founder-info h3 { color: var(--primary-color); margin-bottom: 4px; }
.founder-info .role {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.founder-info p { font-size: 0.9rem; color: var(--text-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-6px);
}
.value-card:hover h4, .value-card:hover p { color: var(--white); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { color: var(--primary-color); margin-bottom: 10px; font-family: 'Jost', sans-serif; font-size: 1rem; }
.value-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,61,98,0.7);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}
.contact-card-icon {
  width: 60px; height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.contact-card h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.contact-card p { font-size: 0.93rem; color: var(--text-mid); margin: 0; }
.contact-card a { color: var(--primary-color); transition: color 0.3s; }
.contact-card a:hover { color: var(--gold); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}