/* ============================================
   GLÜCKLICHE ZUKUNFT — Color Palette & Variables
   ============================================ */

:root {
  --navy-900: #0F2137;
  --navy-800: #152D4A;
  --navy-700: #1B3A5C;
  --navy-600: #234B74;
  --navy-500: #2C5D8E;
  --gold-600: #9A7520;
  --gold-500: #B8922E;
  --gold-400: #C9A23C;
  --gold-300: #D4B35C;
  --gold-200: #E2CA8A;
  --gold-100: #F2E6C8;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-50: #F5F5F5;
  --gray-100: #EEEEEE;
  --gray-200: #D9D9D9;
  --gray-400: #9E9E9E;
  --gray-600: #616161;
  --gray-800: #333333;
  --black: #111111;
  --success: #2E7D4F;
  --error: #C62828;
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-out); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--navy-800); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { max-width: 70ch; }
.container { width: 90%; max-width: var(--container-max); margin: 0 auto; }

/* ============================================
   COOKIE CONSENT BANNER (GDPR/DSGVO)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 20px 30px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; opacity: 0.9; flex: 1; min-width: 250px; }
.cookie-banner a { color: var(--gold-300); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.cookie-btn.accept { background: var(--gold-400); color: var(--navy-900); }
.cookie-btn.accept:hover { background: var(--gold-300); }
.cookie-btn.decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn.decline:hover { border-color: var(--white); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  font-size: 1rem;
  display: flex;
}
.top-bar-right a:hover { color: var(--gold-400); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 80px;
}
.logo img { height: 55px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-400);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-600); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 8px;
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 0.9rem;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--gold-600); }
.dropdown-menu a::after { display: none; }

.btn-cta {
  background: var(--gold-400);
  color: var(--navy-900);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold-400);
}
.btn-cta:hover {
  background: var(--navy-800);
  color: var(--gold-300);
  border-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,33,55,0.25);
}
.btn-cta::after { display: none !important; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-800);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 28px; height: 2.5px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 40%, rgba(201,162,60,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(201,162,60,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,60,0.08);
  pointer-events: none;
  animation: heroOrb 20s linear infinite;
}
@keyframes heroOrb { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,162,60,0.15);
  border: 1px solid rgba(201,162,60,0.3);
  color: var(--gold-200);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.15s var(--ease-out) both;
}
.hero h1 span { color: var(--gold-400); }
.hero p, .hero-content p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.3s var(--ease-out) both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s var(--ease-out) both;
}
.hero-decoration {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  opacity: 0.07;
  z-index: 1;
}
.hero-decoration svg { width: 100%; height: 100%; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy-900); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { margin: 0 auto; color: var(--gray-600); font-size: 1.05rem; }
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card-img { height: 170px; overflow: hidden; }
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 24px 20px 28px; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--navy-600));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
  z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15,33,55,0.1);
  border-color: transparent;
}
.service-icon {
  width: 70px; height: 70px;
  margin: 20px auto 20px;
  background: linear-gradient(135deg, var(--gold-100), var(--off-white));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-600);
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--gray-600); margin: 0 auto; }
.service-card .card-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.service-card .card-link:hover { color: var(--navy-700); }

/* ============================================
   ABOUT / SIDE-BY-SIDE
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-text .section-label { text-align: left; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 16px; color: var(--gray-600); }
.check-list { margin: 24px 0; }
.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: var(--white);
}
.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-400);
  margin-bottom: 8px;
}
.stat-item p { font-size: 0.9rem; opacity: 0.75; font-weight: 500; }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s var(--ease-out);
}
.why-card:hover {
  background: rgba(201,162,60,0.08);
  border-color: rgba(201,162,60,0.2);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.why-card h3 { color: var(--gold-300); font-size: 1.2rem; margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; opacity: 0.75; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}
.testimonial-card { min-width: 100%; padding: 0 40px; }
.testimonial-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial-inner::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold-200);
  position: absolute;
  top: 16px; left: 32px;
  line-height: 1;
}
.testimonial-inner p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author { font-weight: 700; color: var(--navy-800); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonial-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dots .dot.active { background: var(--gold-400); transform: scale(1.2); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,60,0.1);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); margin: 0 auto 32px; font-size: 1.1rem; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: 16px;
  padding: 44px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.4rem; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,60,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item p { font-size: 0.92rem; opacity: 0.85; }
.contact-info-item strong { display: block; opacity: 1; margin-bottom: 4px; }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(201,162,60,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold-500); }
.form-consent a { color: var(--gold-600); text-decoration: underline; }
.btn-submit {
  background: var(--gold-400);
  color: var(--navy-900);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  width: 100%;
}
.btn-submit:hover {
  background: var(--navy-800);
  color: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,33,55,0.25);
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 60%, rgba(201,162,60,0.08), transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); position: relative; margin: 0 auto; }
.breadcrumb { position: relative; margin-top: 16px; font-size: 0.85rem; }
.breadcrumb a { color: var(--gold-300); }
.breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 8px; }

/* ============================================
   SERVICES PAGE — DETAIL
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-detail-content p { color: var(--gray-600); margin-bottom: 16px; }
.service-detail-content ul { margin-bottom: 20px; }
.service-detail-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.service-detail-content ul li::before {
  content: '\2192';
  position: absolute; left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.2rem; margin: 24px 0 8px; color: var(--navy-700); }
.legal-content p { margin-bottom: 12px; color: var(--gray-600); }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; color: var(--gray-600); margin-bottom: 6px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 50px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; opacity: 0.7; transition: opacity 0.3s, color 0.3s; }
.footer ul a:hover { opacity: 1; color: var(--gold-400); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.82rem; opacity: 0.5; }
.footer-legal { display: flex; justify-content: center; gap: 24px; margin-top: 8px; }
.footer-legal a { font-size: 0.82rem; opacity: 0.7; }
.footer-legal a:hover { opacity: 1; color: var(--gold-400); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .nav-links {
    position: fixed; inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .dropdown-menu {
    position: static; box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    display: none; text-align: center;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .split-section, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { min-height: 80vh; padding: 100px 0 60px; }
  .hero-decoration { display: none; }
}
@media (max-width: 600px) {
  .top-bar-left { flex-direction: column; gap: 4px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-3px); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  pointer-events: none;
}
.hero-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,33,55,0.92), rgba(27,58,92,0.85));
}
.hero-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots button.active { background: var(--gold-400); border-color: var(--gold-400); }

/* ============================================
   IMAGE AREAS / GALLERY
   ============================================ */
.img-frame { border-radius: 16px; overflow: hidden; position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.img-frame:hover img { transform: scale(1.04); }
.about-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px; height: 450px;
}
.about-images .img-frame:first-child { grid-row: 1 / 3; }

/* ============================================
   SERVICE PAGE — DETAIL
   ============================================ */
.service-page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.service-page-hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.service-page-hero .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,33,55,0.9), rgba(27,58,92,0.85));
}
.service-page-content { position: relative; z-index: 2; }
.service-page-hero h1 { color: var(--white); margin-bottom: 16px; }
.service-page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }
.service-page-hero .breadcrumb { margin-top: 20px; }
.service-body-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  align-items: start;
}
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 { font-family: 'Source Sans 3', sans-serif; font-weight: 700; margin-bottom: 16px; font-size: 1rem; }
.sidebar-nav a {
  display: block; padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500; font-size: 0.92rem;
  margin-bottom: 4px; transition: all 0.3s;
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--gold-100); color: var(--gold-600); }

/* ============================================
   TEAM CARDS — WITH PHOTO PLACEHOLDERS
   ============================================ */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.team-photo-wrap {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--gold-200);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); font-size: 3rem;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold-600); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 6px; }
.team-languages { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--gray-600); margin-top: 8px; }
.team-card .team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; color: var(--navy-600); font-size: 0.85rem; font-weight: 600;
}
.team-card .team-linkedin:hover { color: var(--gold-600); }

/* ============================================
   SERVICE DETAIL IMAGE SECTION
   ============================================ */
.service-detail-img { border-radius: 16px; overflow: hidden; height: 300px; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-img .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); font-size: 4rem;
}

/* Feature grid */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--off-white);
  border-radius: 10px; transition: all 0.3s;
}
.feature-item:hover { background: var(--gold-100); }
.feature-check {
  width: 24px; height: 24px;
  background: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem;
  flex-shrink: 0; margin-top: 2px;
}
.feature-item span { font-size: 0.92rem; font-weight: 500; }

@media (max-width: 968px) {
  .service-body-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-images { height: 350px; grid-template-columns: 1fr; grid-template-rows: 200px 1fr; }
  .about-images .img-frame:first-child { grid-row: auto; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}