/* =========================================================
   MKS SOFA SERVICE — Royal Luxury Theme
   Designed with royal blue, imperial gold & warm orange
   ========================================================= */

:root {
  /* Core Royal Palette */
  --royal-deep: #050a2b;
  --royal-blue: #0a1f5c;
  --royal-blue-2: #142b7a;
  --royal-blue-3: #1f3ca0;

  /* Imperial Gold & Warm Accents */
  --gold: #ffc107;
  --gold-light: #ffd86b;
  --gold-deep: #c48f00;
  --orange: #ff7a00;
  --orange-light: #f7941d;

  /* Neutrals */
  --cream: #fff8e7;
  --ivory: #fdf6e3;
  --white: #ffffff;
  --text-muted: #a9b4d6;

  /* Type */
  --font-display: 'Cinzel', serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --font-stats: 'Bebas Neue', sans-serif;

  /* Shadows & Effects */
  --shadow-gold: 0 20px 60px -20px rgba(255, 193, 7, 0.45);
  --shadow-deep: 0 30px 80px -20px rgba(5, 10, 43, 0.6);
  --glow-gold: 0 0 40px rgba(255, 193, 7, 0.4);
}

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--royal-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
}

.brand-logo-img {
  height: 156px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

/* Slightly smaller on mobile */
@media (max-width: 767px) {
  .brand-logo-img { height: 74px; }
}

::selection { background: var(--gold); color: var(--royal-deep); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--royal-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 10px;
}

/* ========== DECORATIVE BACKGROUND ========== */
.bg-noise {
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.035; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-gradient-orbs {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}

.bg-gradient-orbs::before,
.bg-gradient-orbs::after {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.bg-gradient-orbs::before {
  background: radial-gradient(circle, var(--royal-blue-3), transparent 70%);
  top: -20vw; left: -20vw;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-gradient-orbs::after {
  background: radial-gradient(circle, var(--orange), transparent 70%);
  bottom: -20vw; right: -20vw;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 5vw) scale(1.1); }
}

/* ========== NAVIGATION ========== */
.royal-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 1rem 0;
  transition: all 0.4s ease;
  background: rgba(5, 10, 43, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.royal-nav.scrolled {
  background: rgba(5, 10, 43, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 193, 7, 0.15);
  padding: 0.6rem 0;
}

.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}

.brand-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--cream);
  position: relative; z-index: 2;
}

.brand-crown {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, var(--gold), var(--gold-deep));
  border-radius: 50%;
  box-shadow: var(--glow-gold);
  position: relative;
}

.brand-crown::before {
  content: '';
  position: absolute; inset: -4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

.brand-crown svg { width: 30px; height: 30px; fill: var(--royal-deep); }

.brand-text { line-height: 1; }

.brand-text .main {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.brand-text .sub {
  font-family: var(--font-elegant);
  font-size: 0.75rem; font-style: italic;
  letter-spacing: 0.2em;
  color: var(--cream); text-transform: uppercase;
}

.nav-menu {
  list-style: none; display: flex;
  gap: 2.5rem; align-items: center;
}

.nav-menu a {
  color: var(--cream); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-menu a::before {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::before, .nav-menu a.active::before { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--royal-deep) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 10px 25px -10px var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -10px var(--gold);
}

.nav-cta::before { display: none; }

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.5rem;
  cursor: pointer; z-index: 101;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(31, 60, 160, 0.5), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 122, 0, 0.25), transparent 50%),
    linear-gradient(135deg, var(--royal-deep) 0%, var(--royal-blue) 50%, var(--royal-deep) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(255, 193, 7, 0.03) 49%, rgba(255, 193, 7, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 193, 7, 0.03) 49%, rgba(255, 193, 7, 0.03) 51%, transparent 52%);
  background-size: 40px 40px;
}

.hero-container {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 50px;
  font-family: var(--font-elegant);
  font-style: italic; font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-family: var(--font-elegant);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-royal {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  border: none; cursor: pointer;
}

.btn-primary-royal {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--royal-deep);
  box-shadow: 0 15px 35px -10px var(--gold);
}

.btn-primary-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px -10px var(--gold);
  color: var(--royal-deep);
}

.btn-ghost-royal {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 216, 107, 0.4);
  backdrop-filter: blur(10px);
}

.btn-ghost-royal:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 193, 7, 0.05);
}

.btn-royal::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-royal:hover::after { transform: translateX(5px); }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 550px;
}

.hero-card-main {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(31, 60, 160, 0.3), rgba(10, 31, 92, 0.5));
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.hero-card-main::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 122, 0, 0.1), transparent 50%);
}

.hero-sofa-svg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}

.hero-sofa-svg svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-stat-float {
  position: absolute;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(255, 122, 0, 0.95));
  border-radius: 16px;
  color: var(--royal-deep);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.hero-stat-float .num {
  font-family: var(--font-stats);
  font-size: 2.5rem; line-height: 1; font-weight: 400;
}

.hero-stat-float .label {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; opacity: 0.8;
}

.hero-stat-float.top-right { top: 1.5rem; right: -1.5rem; }
.hero-stat-float.bottom-left {
  bottom: 1.5rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--white), var(--cream));
}

/* ========== SECTION BASE ========== */
section { position: relative; z-index: 2; padding: 6rem 0; }

.section-container {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-kicker {
  display: inline-block;
  font-family: var(--font-elegant);
  font-style: italic; font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 2rem;
}

.section-kicker::before, .section-kicker::after {
  content: '';
  position: absolute; top: 50%;
  width: 30px; height: 1px;
}

.section-kicker::before {
  left: -30px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-kicker::after {
  right: -30px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-title .italic-accent {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

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

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, rgba(20, 43, 122, 0.4), rgba(10, 31, 92, 0.6));
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

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

.service-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 122, 0, 0.1));
  border: 1px solid rgba(255, 193, 7, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}

.service-icon svg { width: 34px; height: 34px; fill: var(--gold); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  position: relative; z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem; line-height: 1.6;
  position: relative; z-index: 1;
}

.service-number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-stats);
  font-size: 3rem;
  color: rgba(255, 193, 7, 0.1);
  line-height: 1;
}

/* ========== SPLIT / ABOUT PREVIEW ========== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  height: 500px;
}

.split-image-main {
  position: absolute; inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--royal-blue-2), var(--royal-deep));
  border: 1px solid rgba(255, 193, 7, 0.2);
  box-shadow: var(--shadow-deep);
  display: flex; align-items: center; justify-content: center;
}

.split-image-main svg {
  width: 70%; height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.split-badge {
  position: absolute;
  bottom: 2rem; right: -2rem;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--royal-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.split-badge .num {
  font-family: var(--font-stats);
  font-size: 2.8rem; line-height: 1;
}

.split-badge .text {
  font-family: var(--font-elegant);
  font-style: italic; font-size: 0.85rem;
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.split-content h2 .italic-accent {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.split-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  padding: 0.8rem 0 0.8rem 2.8rem;
  position: relative;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 193, 7, 0.08);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
}

.feature-list li::after {
  content: '✓';
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  color: var(--royal-deep);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ========== STATS ========== */
.stats-section {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-deep));
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
  position: relative; overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 122, 0, 0.1), transparent 40%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative; z-index: 1;
}

.stat-item { padding: 2rem 1rem; }

.stat-num {
  font-family: var(--font-stats);
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--royal-deep);
  padding: 4rem 0;
  position: relative; overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(10, 31, 92, 0.2), transparent 30%);
}

.cta-container {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
  color: var(--royal-deep);
}

.cta-text p {
  font-family: var(--font-elegant);
  font-style: italic; font-size: 1.1rem;
  color: var(--royal-blue);
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-dark-royal {
  background: var(--royal-deep);
  color: var(--gold);
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(5, 10, 43, 0.3);
}

.btn-dark-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(5, 10, 43, 0.5);
  color: var(--gold-light);
}

.btn-white-royal {
  background: var(--white);
  color: var(--royal-deep);
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s ease;
}

.btn-white-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(5, 10, 43, 0.2);
  color: var(--royal-deep);
}

/* ========== FOOTER ========== */
footer {
  background: var(--royal-deep);
  padding: 5rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin: 1.5rem 0;
  max-width: 320px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
}

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

.footer-contact-item {
  display: flex; gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  flex-shrink: 0; margin-top: 2px;
}

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

.footer-bottom .accent {
  color: var(--gold);
  font-family: var(--font-elegant);
  font-style: italic;
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-header {
  position: relative;
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, var(--royal-deep), var(--royal-blue), var(--royal-deep));
  overflow: hidden;
  text-align: center;
  z-index: 2;
}

.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255, 193, 7, 0.15), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 122, 0, 0.1), transparent 40%),
    linear-gradient(45deg, transparent 48%, rgba(255, 193, 7, 0.05) 49%, rgba(255, 193, 7, 0.05) 51%, transparent 52%);
  background-size: auto, auto, 60px 60px;
}

.page-header-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; padding: 0 2rem;
}

.breadcrumb-royal {
  display: inline-flex; gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.breadcrumb-royal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-royal a:hover { color: var(--gold); }
.breadcrumb-royal .sep { color: var(--gold); }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}

.page-header h1 .italic-accent {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px; margin: 0 auto;
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 900px; margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--orange), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
}

.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-dot {
  position: absolute;
  top: 2.5rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 0 5px var(--royal-deep), 0 0 20px var(--gold);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-year {
  font-family: var(--font-stats);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== SERVICES DETAIL ========== */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(20, 43, 122, 0.3), rgba(10, 31, 92, 0.5));
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 24px;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  border-color: rgba(255, 193, 7, 0.35);
  transform: translateY(-5px);
}

.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-visual {
  height: 350px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--royal-blue-2), var(--royal-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255, 193, 7, 0.15);
}

.service-detail-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.1), transparent 60%);
}

.service-detail-visual svg {
  width: 60%; height: auto;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.service-detail-content .service-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--gold);
  font-family: var(--font-elegant);
  font-style: italic; font-size: 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.service-detail-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-benefits li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--cream);
  font-size: 0.9rem;
}

.service-benefits li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
  position: relative;
}

.process-step {
  position: relative;
  padding: 3rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(20, 43, 122, 0.3), rgba(10, 31, 92, 0.5));
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 20px;
  counter-increment: step;
  transition: all 0.4s ease;
  margin-top: 25px;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -25px; left: 50%;
  transform: translateX(-50%);
  width: 55px; height: 55px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--royal-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-stats);
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--royal-deep);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.4);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin: 1rem 0 0.8rem;
}

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

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(20, 43, 122, 0.3), rgba(10, 31, 92, 0.5));
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 20px;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: all 0.4s ease;
}

.contact-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 60px; height: 60px; min-width: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 122, 0, 0.1));
  border: 1px solid rgba(255, 193, 7, 0.25);
  display: flex; align-items: center; justify-content: center;
}

.contact-card-icon svg { width: 28px; height: 28px; fill: var(--gold); }

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 0.95rem; line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.contact-card a:hover { color: var(--gold); }

.contact-form-card {
  padding: 3rem;
  background: linear-gradient(145deg, rgba(20, 43, 122, 0.4), rgba(10, 31, 92, 0.6));
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-form-card h3 .italic-accent {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.form-control-royal {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(5, 10, 43, 0.5);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-royal:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(5, 10, 43, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.form-control-royal::placeholder { color: rgba(169, 180, 214, 0.5); }

textarea.form-control-royal {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.map-placeholder {
  margin-top: 4rem;
  height: 400px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--royal-blue-2), var(--royal-deep));
  border: 1px solid rgba(255, 193, 7, 0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.map-placeholder iframe {
  width: 100%; height: 100%;
  border: 0; border-radius: 24px;
  filter: grayscale(0.2) contrast(1.1);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ========== VALUES ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.value-card .value-ring {
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--orange), var(--gold));
  padding: 3px;
  position: relative;
  animation: rotate 8s linear infinite;
}

.value-card .value-ring::before {
  content: '';
  position: absolute; inset: 3px;
  background: var(--royal-deep);
  border-radius: 50%;
}

.value-card .value-ring svg {
  position: absolute; inset: 0; margin: auto;
  width: 45px; height: 45px;
  fill: var(--gold);
  z-index: 1;
  animation: rotate 8s linear infinite reverse;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-visual { height: 400px; }

  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-visual { height: 400px; }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .service-detail-card.reverse { direction: ltr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .timeline::before { left: 20px; }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 1rem;
    text-align: left !important;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0; text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 10px; right: auto;
  }
}

@media (max-width: 767px) {
  .mobile-toggle { display: block; }

  .nav-menu {
    position: fixed; inset: 0;
    background: var(--royal-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.2rem; }

  section { padding: 4rem 0; }
  .page-header { padding: 10rem 0 4rem; }

  .hero-stat-float { padding: 0.8rem 1rem; }
  .hero-stat-float .num { font-size: 1.8rem; }
  .hero-stat-float.top-right { right: 0.5rem; top: 0.5rem; }
  .hero-stat-float.bottom-left { left: 0.5rem; bottom: 0.5rem; }

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

  .cta-container {
    text-align: center;
    flex-direction: column;
  }
  .cta-actions { justify-content: center; }
  .service-benefits { grid-template-columns: 1fr; }

  .nav-container { padding: 0 1rem; }
  .section-container { padding: 0 1rem; }
  .contact-form-card { padding: 2rem 1.5rem; }

  .split-badge {
    width: 120px; height: 120px;
    right: 0; bottom: 0;
  }

  .split-badge .num { font-size: 2rem; }
}

/* ========== ANIMATION UTILITIES ========== */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.stagger-child { opacity: 0; transform: translateY(20px); }

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(-90deg);
}


/* ===== FORM VALIDATION & STATUS ===== */
.form-control-royal.is-invalid {
  border-color: #ff5a5f !important;
  background: rgba(255, 90, 95, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.12) !important;
}

.field-error {
  display: block;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  color: #ff8a8e;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
}

.field-error.show {
  max-height: 40px;
  margin-top: 0.4rem;
}

.form-status {
  display: none;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: statusFadeIn 0.3s ease;
}

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

.form-status.error {
  background: rgba(255, 90, 95, 0.1);
  border: 1px solid rgba(255, 90, 95, 0.35);
  color: #ffb0b3;
}

.form-status.success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #7ee8a6;
}

.form-status.success strong {
  color: #a0f5bf;
}

@keyframes statusFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-hint {
  text-align: center;
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.85;
}

/* ===== SELECT DROPDOWN OPTIONS FIX ===== */
.form-control-royal option {
  background-color: #0a1f5c;      /* royal-blue solid */
  color: #fff8e7;                  /* cream */
  padding: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* Placeholder option — slightly dimmed */
.form-control-royal option[value=""] {
  color: rgba(255, 248, 231, 0.6);
  font-style: italic;
}

/* Hover/highlight state (Firefox supports; Chrome ignores but harmless) */
.form-control-royal option:hover,
.form-control-royal option:checked {
  background: linear-gradient(135deg, #ffc107, #ff7a00);
  color: #050a2b;
}

/* Make sure the select itself uses a solid background so native dropdown panels
   on some browsers render correctly */
select.form-control-royal {
  background-color: rgba(5, 10, 43, 0.85);
  /* Custom dropdown arrow in gold */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 14px;
  padding-right: 2.8rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
/* ========== FOUNDER SECTION IMAGE STYLES ========== */

.founder-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

/* Founder image container - overrides default split-image-main */
.founder-image-container {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--royal-blue-2), var(--royal-deep));
  border: 1px solid rgba(255, 193, 7, 0.2);
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important; /* Override any padding from split-image-main */
}

.founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

/* Subtle zoom effect on hover */
.founder-image-container:hover .founder-portrait-img {
  transform: scale(1.05);
}

/* Optional: Add a subtle overlay for better aesthetic */
.founder-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 43, 0.1) 0%,
    rgba(31, 60, 160, 0.08) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Ensure image is behind the overlay */
.founder-portrait-img {
  position: relative;
  z-index: 0;
}

/* ========== RESPONSIVE ADJUSTMENTS FOR FOUNDER SECTION ========== */

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
  .founder-section .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-section .split-visual {
    height: 450px;
    order: 1;
  }

  .founder-section .split-content {
    order: 2;
  }
}

/* Mobile View (below 768px) */
@media (max-width: 767px) {
  .founder-section {
    padding: 4rem 0;
  }

  .founder-section .split-visual {
    height: 400px;
  }

  .founder-section .split-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.2rem;
  }

  .founder-section .split-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  /* Quote box adjustments for mobile */
  .founder-section .split-content > div[style*="background: linear-gradient"] {
    padding: 1.25rem 1.5rem !important;
    font-size: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .founder-section .split-content > div[style*="background: linear-gradient"] > div {
    font-size: 0.8rem !important;
    margin-top: 0.6rem !important;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
  .founder-section .split-visual {
    height: 350px;
  }

  .founder-section .split-content h2 {
    font-size: 1.6rem;
  }

  .founder-section .split-content p {
    font-size: 0.95rem;
  }

  .founder-section .split-content > div[style*="background: linear-gradient"] {
    padding: 1rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}

/* Extra Small Devices (below 375px) */
@media (max-width: 374px) {
  .founder-section .split-visual {
    height: 300px;
  }

  .section-container {
    padding: 0 1rem;
  }

  .founder-section .split-content h2 {
    font-size: 1.4rem;
  }
}