/* ============================================================
   ŁUKASZ POPŁAWSKI – DORADCA KREDYTOWY
   Plik: css/style.css
   Sekcje:
     1. Reset & zmienne CSS
     2. Typografia & elementy wspólne
     3. Przyciski
     4. Animacje scroll (reveal)
     5. Topbar
     6. Navbar
     7. Wave dividers
     8. Hero
     9. Trust Bar
    10. O mnie (About)
    11. Usługi (Services)
    12. Jak działam (Process)
    13. Opinie (Opinions)
    14. Kontakt (Contact)
    15. Footer
    16. Pływające CTA (Float buttons)
    17. Responsive
   ============================================================ */


/* ============================================================
   1. RESET & ZMIENNE CSS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2D42;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --cream:      #F7F4EF;
  --white:      #FFFFFF;
  --gray-100:   #F2F2F2;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(13,27,42,.10);
  --shadow-lg:  0 16px 56px rgba(13,27,42,.20);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}


/* ============================================================
   2. TYPOGRAFIA & ELEMENTY WSPÓLNE
   ============================================================ */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

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

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
}


/* ============================================================
   3. PRZYCISKI
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,168,76,.4);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}


/* ============================================================
   4. ANIMACJE SCROLL (reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ============================================================
   5. TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: flex-end; gap: 28px; align-items: center; }
.topbar a { display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }


/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(13,27,42,.08);
  transition: box-shadow var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.logo-title { font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}


/* ============================================================
   7. WAVE DIVIDERS (przejścia między sekcjami)
   ============================================================ */
.wave-bottom { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-top    { display: block; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); }


/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a5a 100%);
  color: var(--white);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: 60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero-content { padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* H1 – JEDYNY nagłówek pierwszego stopnia na stronie */
h1.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.18;
}
h1.hero-headline em { font-style: normal; color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }

.hero-photo-wrap { display: flex; justify-content: center; align-items: flex-end; }
.hero-photo { position: relative; width: 380px; max-width: 100%; }
.hero-photo img {
  width: 100%;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201,168,76,.2), transparent 60%);
  z-index: -1;
}

.hero-wave { margin-bottom: -2px; }


/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar { background: var(--cream); padding: 32px 0; }
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }


/* ============================================================
   10. O MNIE (About)
   ============================================================ */
.about { padding: 100px 0; background: var(--white); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-col { position: relative; }
.about-photo-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.about-photo-badge {
  position: absolute;
  bottom: 28px;
  right: -28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  padding: 18px 22px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-photo-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.about-photo-badge .small { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; opacity: .85; }

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

.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.about-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  background: var(--white);
}
.about-feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.about-feature:hover .about-feature-icon { background: var(--navy); color: var(--gold); }
.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.about-feature p { color: var(--gray-600); font-size: .85rem; margin: 0; }


/* ============================================================
   11. USŁUGI (Services)
   ============================================================ */
.services { padding: 100px 0 120px; background: var(--navy); }
.services .section-title { color: var(--white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-label { color: var(--gold-light); }
.services-header .section-subtitle { color: rgba(255,255,255,.6); margin: 0 auto; text-align: center; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.45);
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
  background: rgba(255,255,255,.09);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(201,168,76,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; }


/* ============================================================
   12. JAK DZIAŁAM (Process)
   ============================================================ */
.process { padding: 100px 0; background: var(--cream); }
.process-header { text-align: center; margin-bottom: 64px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p { font-size: .85rem; color: var(--gray-600); }


/* ============================================================
   13. OPINIE (Opinions)
   ============================================================ */
.opinions { padding: 100px 0; background: var(--white); }
.opinions-header { text-align: center; margin-bottom: 56px; }
.opinions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.opinion-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.opinion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.opinion-text {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.opinion-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.opinion-card:hover .author-avatar { background: var(--gold); color: var(--navy); }
.author-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.author-info { font-size: .78rem; color: var(--gray-400); }


/* ============================================================
   14. UMÓW SPOTKANIE (Booking)
   ============================================================ */
.booking {
  padding: 100px 0;
  background: var(--cream);
}

.booking-header {
  text-align: center;
  margin-bottom: 56px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* Info sidebar */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid #e8e2d8;
}

.booking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ece6;
}
.booking-info-item:last-of-type { border-bottom: none; }

.booking-info-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(201,168,76,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

.booking-info-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.booking-info-item span {
  font-size: .82rem;
  color: var(--gray-600);
}

.booking-confirm-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(201,168,76,.08);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,.25);
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.booking-confirm-note svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

/* Calendar widget area */
.booking-calendar {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e8e2d8;
  position: relative;
  height: 560px;        /* stała wysokość = brak paska przewijania */
}

/* Widget Calendly wypełnia dokładnie kartę */
.booking-calendar .calendly-inline-widget {
  width: 100% !important;
  height: 560px !important;
}

/* Placeholder shown before Calendly is configured */
.booking-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 18px;
  z-index: 5;
}
.booking-placeholder-inner {
  text-align: center;
  padding: 40px 32px;
  max-width: 340px;
}
.booking-placeholder-inner h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.booking-placeholder-inner p {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.65;
}

/* Hide placeholder once Calendly loads */
.calendly-inline-widget:not(:empty) + .booking-placeholder,
.booking-calendar:has(.calendly-inline-widget iframe) .booking-placeholder {
  display: none;
}

/* ============================================================
   15. KONTAKT (Contact)
   ============================================================ */
.contact {
  padding: 100px 0;
  position: relative;
  background-color: var(--navy);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(13,27,42,.92) 0%, rgba(13,27,42,.72) 100%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(26,45,66,.85) 0%, transparent 100%);
  z-index: 1;
}

.contact .container { position: relative; z-index: 2; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info .section-label { color: var(--gold-light); }
.contact-info .section-title { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,.65); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
  cursor: default;
}
.contact-item:hover {
  border-color: rgba(201,168,76,.45);
  background: rgba(255,255,255,.1);
  transform: translateX(6px);
}
.contact-item-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: rgba(201,168,76,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.contact-item:hover .contact-item-icon { background: var(--gold); color: var(--navy); }
.contact-item-label {
  font-size: .73rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.contact-item-value { font-size: .95rem; font-weight: 500; color: var(--white); }
.contact-item-value a { color: var(--white); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--gold); }

.contact-visual { display: flex; flex-direction: column; align-items: center; gap: 32px; }

.contact-cta-card {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
}
.contact-cta-card .cta-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.contact-cta-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-cta-card p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 28px; line-height: 1.7; }

.contact-cta-note {
  color: rgba(255,255,255,.38);
  font-size: .78rem;
  text-align: center;
  letter-spacing: .04em;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
footer {
  background: #070f18;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  padding: 28px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: rgba(255,255,255,.55); transition: color var(--transition); }
footer a:hover { color: var(--gold); }


/* ============================================================
   16. PŁYWAJĄCE CTA (Float buttons)
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  cursor: pointer;
  transition: var(--transition);
}
.float-phone { background: var(--gold); color: var(--navy); }
.float-phone:hover { background: var(--gold-light); transform: scale(1.06) translateY(-2px); }
.float-book { background: var(--navy); color: var(--white); border: 1px solid rgba(201,168,76,.4); }
.float-book:hover { background: var(--navy-mid); border-color: var(--gold); transform: scale(1.06) translateY(-2px); }


/* ============================================================
   17. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner,
  .about .container,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { order: -1; }
  .hero-photo { width: 260px; margin: 0 auto; }
  .hero-photo img { border-radius: 18px; }
  .hero-content { padding-bottom: 0; }
  .about-photo-badge { right: 16px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-visual { display: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-calendar { min-height: 600px; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--gray-100); }
  .nav-links a { display: block; padding: 13px 24px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 56px 0 0; }
  .process-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .opinions-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 22px; }
  .hero-stats { gap: 20px; }
  .float-cta { bottom: 16px; right: 16px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .about-photo-badge { right: 8px; bottom: 12px; }
}
