/* ═══════════════════════════════════════════════════════════════
   Rechtsanwältin Olga Kroca — Design System
   Style: Classic & Elegant | Navy + Deep Red + Platinum/Silver
   Trends 2025–2026: Subtle animations, micro-interactions,
   glassmorphism accents, refined typography, scroll reveals
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Primary Palette */
  --navy-900: #0B1222;
  --navy-800: #111D33;
  --navy-700: #1B2A4A;
  --navy-600: #243656;
  --navy-500: #2E4A6E;
  --navy-400: #3D6090;
  --navy-300: #6B8AB5;
  --navy-200: #9BB3D4;
  --navy-100: #C8D8EC;
  --navy-50:  #E8EFF7;

  /* Accent Red */
  --red-900: #5C0E0E;
  --red-800: #7A1414;
  --red-700: #8B1A1A;
  --red-600: #A52222;
  --red-500: #C02C2C;
  --red-400: #D94444;
  --red-300: #E87070;

  /* Platinum / Silver Accent */
  --gold-600: #6B7280;
  --gold-500: #8A92A0;
  --gold-400: #A6ADB8;
  --gold-300: #BFC5CE;
  --gold-200: #D8DCE3;
  --gold-100: #EEF0F3;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50:  #F8F9FA;
  --gray-100: #F0F2F5;
  --gray-200: #E2E5EA;
  --gray-300: #C8CDD5;
  --gray-400: #9AA3B0;
  --gray-500: #6B7585;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --gray-800: #1A202C;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-px: clamp(1.25rem, 4vw, 3rem);
  --container-max: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,18,34,0.08);
  --shadow-md: 0 4px 16px rgba(11,18,34,0.1);
  --shadow-lg: 0 8px 40px rgba(11,18,34,0.12);
  --shadow-xl: 0 16px 64px rgba(11,18,34,0.16);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}


/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}


/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}

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

.section-label--light {
  color: var(--gold-300);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-800);
  margin-bottom: 1rem;
}

.section-heading--light {
  color: var(--white);
}

.section-heading em {
  font-style: normal;
  color: var(--red-700);
}

.section-heading--light em {
  color: var(--gold-300);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

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


/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-quart);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-700);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(139, 26, 26, 0.25);
}
.btn-primary:hover {
  background: var(--red-600);
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.35);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

.btn-header {
  background: var(--red-700);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.2);
}
.btn-header:hover {
  background: var(--red-600);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════ */
/* HEADER                                      */
/* ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: env(safe-area-inset-top, 0) 0 0;
  transition: all 0.4s var(--ease-out-expo);
  background: var(--navy-900);
}

.site-header.scrolled {
  background: rgba(11, 18, 34, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 30px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { color: var(--gold-400); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.logo-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-current:hover {
  background: rgba(255,255,255,0.15);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-xl);
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 0.4rem 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.lang-option:hover,
.lang-option.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════ */
/* HERO                                        */
/* ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-lines {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding-top: 6rem;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--gold-600);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line.accent {
  color: var(--gold-300);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-languages {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.lang-tag:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}

/* Hero Portrait */
.hero-portrait {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.portrait-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--navy-700);
}

.portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.portrait-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-600);
  border-radius: calc(var(--radius-lg) + 4px);
  opacity: 0.4;
}

.portrait-accent {
  position: absolute;
  right: -40px;
  top: 0;
  height: 100%;
  width: 120px;
}


/* ═══════════════════════════════════════════ */
/* TRUST BAR                                   */
/* ═══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-800);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(155, 123, 60, 0.2);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.trust-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.trust-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-text p {
  margin: 0;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}


/* ═══════════════════════════════════════════ */
/* ABOUT                                       */
/* ═══════════════════════════════════════════ */
.section-about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.img-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-700);
  position: relative;
}

.img-placeholder svg,
.img-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder--tall {
  border-radius: var(--radius-lg);
}

.img-placeholder--video {
  border-radius: var(--radius-lg);
  aspect-ratio: 2.4/1;
}

.img-prompt-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(155, 123, 60, 0.8);
  color: var(--white);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
}

.about-separator {
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-700);
}


/* ═══════════════════════════════════════════ */
/* PHILOSOPHY                                  */
/* ═══════════════════════════════════════════ */
.section-philosophy {
  background: var(--white);
  padding-top: 2rem;
  padding-bottom: var(--section-py);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.4s ease;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(138, 146, 160, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  overflow: hidden;
  isolation: isolate;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(138,146,160,0.45), rgba(138,146,160,0) 45%, rgba(139, 26, 26, 0.18) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.philosophy-card:hover {
  border-color: transparent;
  box-shadow: 0 24px 50px -28px rgba(11, 18, 34, 0.35), 0 8px 18px -10px rgba(11, 18, 34, 0.18);
  transform: translateY(-6px);
}

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

.philosophy-index {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  opacity: 0.55;
}

.philosophy-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: transform 0.5s var(--ease-out-expo);
}

.philosophy-icon-shape {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #eef0f3 100%);
  border: 1px solid rgba(138, 146, 160, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 6px 18px -8px rgba(11, 18, 34, 0.18);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.4s ease;
}

.philosophy-icon-glow {
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 50%, rgba(138,146,160,0.35), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.philosophy-icon svg {
  position: relative;
  z-index: 1;
  color: var(--navy-700);
  transition: color 0.4s ease, transform 0.5s var(--ease-out-expo);
}

.philosophy-card:hover .philosophy-icon { transform: translateY(-2px); }
.philosophy-card:hover .philosophy-icon-shape {
  transform: rotate(-4deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 12px 28px -10px rgba(11, 18, 34, 0.28);
}
.philosophy-card:hover .philosophy-icon svg { color: var(--red-700); }
.philosophy-card:hover .philosophy-icon-glow { opacity: 1; }

.philosophy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.philosophy-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════ */
/* SERVICES                                    */
/* ═══════════════════════════════════════════ */
.section-services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
}

.service-image {
  overflow: hidden;
}

.service-image .img-placeholder {
  border-radius: 0;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.service-content {
  padding: 1.75rem;
}

.service-icon {
  color: var(--red-700);
  margin-bottom: 1rem;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-700);
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.65rem;
  color: var(--red-600);
}


/* ═══════════════════════════════════════════ */
/* PROCESS                                     */
/* ═══════════════════════════════════════════ */
.section-process {
  background: var(--white);
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 4px;
}

.process-line svg {
  width: 100%;
  height: 100%;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  background: var(--white);
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover .process-number {
  background: var(--gold-500);
  color: var(--white);
}

.process-card {
  flex: 1;
  background: var(--gray-50);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .process-card {
  border-color: var(--gold-200);
  box-shadow: var(--shadow-sm);
}

.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════ */
/* BOOKING                                     */
/* ═══════════════════════════════════════════ */
.section-booking {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.section-booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 26, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.booking-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: all 0.3s ease;
}

.booking-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.booking-option strong {
  display: block;
  font-size: 0.95rem;
}

.booking-option span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

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

.booking-phone,
.booking-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-300);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.booking-phone:hover,
.booking-email:hover {
  color: var(--gold-200);
}

/* Calendar Widget */
.calendar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.calendar-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-month {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
}

.calendar-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  color: var(--navy-700);
  transition: all 0.3s ease;
}
.calendar-nav:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 1.5rem;
}

.day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  cursor: default;
}

.day.other {
  color: var(--gray-300);
}

.day.today {
  background: var(--navy-50);
  color: var(--navy-700);
  font-weight: 600;
}

.day.available {
  color: var(--navy-700);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.day.available:hover {
  background: var(--red-700);
  color: var(--white);
}

.day.selected {
  background: var(--red-700);
  color: var(--white);
  font-weight: 600;
}

.calendar-times {
  margin-bottom: 1.5rem;
}

.times-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: none;
  font-size: 0.85rem;
  color: var(--navy-700);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-sans);
}

.time-slot:hover {
  border-color: var(--red-700);
  color: var(--red-700);
}

.time-slot.active {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--white);
}


/* ═══════════════════════════════════════════ */
/* REFERENCES / TESTIMONIALS                   */
/* ═══════════════════════════════════════════ */
.section-references {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-200);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-800);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Google Reviews Badge */
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
}

.reviews-score {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-800);
}

.reviews-text {
  font-size: 0.85rem;
  color: var(--gray-500);
}


/* ═══════════════════════════════════════════ */
/* GALLERY                                     */
/* ═══════════════════════════════════════════ */
.section-gallery {
  background: var(--white);
}

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

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

.gallery-item .img-placeholder {
  border-radius: 0;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 34, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ═══════════════════════════════════════════ */
/* BLOG                                        */
/* ═══════════════════════════════════════════ */
.section-blog {
  background: var(--gray-50);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out-expo);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image .img-placeholder {
  border-radius: 0;
  transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-image .img-placeholder {
  transform: scale(1.03);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red-700);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--red-700);
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-700);
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 0.65rem;
}


/* ═══════════════════════════════════════════ */
/* VIDEO                                       */
/* ═══════════════════════════════════════════ */
.section-video {
  background: var(--white);
}

.video-block {
  text-align: center;
}

.video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
}


/* ═══════════════════════════════════════════ */
/* DOWNLOADS                                   */
/* ═══════════════════════════════════════════ */
.section-downloads {
  background: var(--gray-50);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out-expo);
  color: var(--navy-700);
}

.download-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.download-card strong {
  display: block;
  font-size: 0.95rem;
}

.download-card span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.download-arrow {
  margin-left: auto;
  color: var(--gold-500);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════ */
/* CONTACT / MAP                               */
/* ═══════════════════════════════════════════ */
.section-map {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-item a {
  color: var(--red-700);
}
.contact-item a:hover {
  color: var(--red-600);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--navy-700);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


/* ═══════════════════════════════════════════ */
/* CONTACT FORM                                */
/* ═══════════════════════════════════════════ */
.section-contact-form {
  background: var(--gray-50);
}

.form-block {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--navy-800);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--gray-400);
  max-width: 320px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--red-700);
  text-decoration: underline;
}


/* ═══════════════════════════════════════════ */
/* FOOTER                                      */
/* ═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo svg { color: var(--gold-400); }
.footer-logo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.footer-logo span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

.footer-nav h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: var(--gold-400);
}


/* ═══════════════════════════════════════════ */
/* ANIMATIONS                                  */
/* ═══════════════════════════════════════════ */

/* Fade-up entrance animation */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.8s var(--ease-out-expo) forwards;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }
.anim-delay-5 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}


/* ═══════════════════════════════════════════ */
/* RESPONSIVE                                  */
/* ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 34, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 1000;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
  .burger { display: flex; }
  body.menu-open { overflow: hidden; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-languages { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .trust-items { flex-direction: column; gap: 1.5rem; }
  .trust-divider { width: 60px; height: 1px; }

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

  .form-row { grid-template-columns: 1fr; }
  .form-block { padding: 1.5rem; }
  .form-footer { flex-direction: column; text-align: center; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .btn-header { display: none; }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  background: rgba(11, 18, 34, 0.85);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 36px;
    height: 36px;
  }
}

