/* ============================================================
  Nagy Napsugar - Stylesheet
  ============================================================ */

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

:root {
  --sun-yellow:   #E2C799;
  --sun-light:    #F2E6CC;
  --sun-warm:     #C6A46A;
  --navy:         #0D1B2A;
  --navy-light:   #1C2F41;
  --slate:        #5D4037;
  --slate-light:  #7A5A50;
  --white:        #FFFFFF;
  --off-white:    #F8F4E1;
  --border:       #D9C6A3;
  --shadow-sm:    0 2px 8px rgba(13,27,42,0.08);
  --shadow-md:    0 6px 24px rgba(13,27,42,0.12);
  --shadow-lg:    0 12px 40px rgba(13,27,42,0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--slate);
  background: var(--off-white);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Container ── */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Section helpers ── */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-warm);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-light);
  max-width: 600px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition);
}

#navbar.scrolled .nav-logo {
  color: var(--navy);
}

.nav-logo .logo-icon {
  width: 100px;
  height: 100px;
  background: transparent;
  border: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: none;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--sun-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sun-yellow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

#navbar.scrolled .nav-links a {
  color: var(--slate);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--sun-warm);
}

.nav-cta {
  background: var(--sun-yellow);
  color: var(--navy) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--sun-warm) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .burger span {
  background: var(--navy);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 58%, #2E4458 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shapes::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,199,153,0.22) 0%, transparent 70%);
}

.hero-bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,199,153,0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-text .eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun-yellow);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-text .eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sun-yellow);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.hero-text h1 span {
  color: var(--sun-yellow);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.2rem;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sun-yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(226,199,153,0.38);
}

.btn-primary:hover {
  background: var(--sun-warm);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,164,106,0.42);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  border-color: var(--sun-yellow);
  background: rgba(226,199,153,0.14);
  color: var(--sun-yellow);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sun-yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hc-icon {
  width: 52px;
  height: 52px;
  background: var(--sun-yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.hc-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.hc-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hc-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  column-gap: 0.8rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.hc-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hc-item-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.45;
}

.hc-item-check {
  color: var(--sun-yellow);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  width: 22px;
  text-align: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 6rem 0;
  background: linear-gradient(180deg, #F6EFDF 0%, #FCFAF3 100%);
}

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

.about-text .section-title {
  color: var(--navy);
}

.about-text p {
  color: var(--slate-light);
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sun-yellow);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .badge-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.qualifications-panel {
  margin-top: 1.8rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.qualifications-panel h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.qualification-item {
  padding: 1rem;
  background: var(--off-white);
  border: 1px solid rgba(217,198,163,0.7);
  border-radius: var(--radius);
}

.qualification-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun-warm);
  margin-bottom: 0.35rem;
}

.qualification-item strong {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--navy);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 58%, #2E4458 100%);
}

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

.services-header .section-title {
  color: var(--white);
}

.services-header .section-subtitle {
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(226,199,153,0.65);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--sun-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  transition: background var(--transition), transform var(--transition);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.65;
}

.service-card .service-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card .service-list li {
  font-size: 0.86rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .service-list li::before {
  content: '✓';
  color: var(--sun-warm);
  font-weight: 700;
  flex-shrink: 0;
}

#services .section-tag {
  color: var(--sun-yellow);
}

#services .service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 26px rgba(9,20,32,0.2);
  backdrop-filter: blur(10px);
}

#services .service-card:hover {
  border-color: rgba(226,199,153,0.45);
}

#services .service-icon {
  background: rgba(226,199,153,0.18);
  border: 1px solid rgba(226,199,153,0.35);
}

#services .service-card h3 {
  color: var(--white);
}

#services .service-card p,
#services .service-card .service-list li {
  color: rgba(255,255,255,0.78);
}

#services .service-card .service-list li::before {
  color: var(--sun-yellow);
}

/* ============================================================
   CONTACT PROCESS
   ============================================================ */
#contact-process {
  padding: 6rem 0;
  background: linear-gradient(180deg, #F6EFDF 0%, #FCFAF3 100%);
  border-top: 1px solid rgba(93,64,55,0.08);
  border-bottom: 1px solid rgba(93,64,55,0.08);
}

.contact-process-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.contact-process-header .section-title {
  color: var(--navy);
}

.contact-process-header .section-subtitle {
  margin: 0 auto;
  color: var(--slate-light);
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(226,199,153,0.65);
}

.process-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sun-yellow);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.process-step h3 {
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.65;
}

.contact-process-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.9rem;
}

.contact-process-actions .btn-primary {
  min-width: 230px;
  justify-content: center;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 58%, #2E4458 100%);
  border-top: 1px solid rgba(93,64,55,0.08);
  border-bottom: 1px solid rgba(93,64,55,0.08);
}

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

.pricing-header .section-title {
  color: var(--white);
}

.pricing-header .section-subtitle {
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
}

.pricing-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.9rem;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
  scrollbar-width: thin;
  scrollbar-color: var(--sun-warm) rgba(226,199,153,0.18);
}

.pricing-scroll::-webkit-scrollbar {
  height: 10px;
}

.pricing-scroll::-webkit-scrollbar-track {
  background: rgba(226,199,153,0.18);
  border-radius: 999px;
}

.pricing-scroll::-webkit-scrollbar-thumb {
  background: var(--sun-warm);
  border-radius: 999px;
}

.pricing-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  min-width: 100%;
}

.pricing-grid > * {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.pricing-grid {
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226,199,153,0.52);
}

.price-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun-warm);
  margin-bottom: 0.8rem;
}

.price-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 1rem;
}

.price-value span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-light);
}

.price-copy {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--slate-light);
  margin-bottom: 1.2rem;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--slate);
}

.price-list li::before {
  content: '•';
  color: var(--sun-warm);
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.pricing-actions .btn-primary {
  min-width: 220px;
  justify-content: center;
}

.pricing-note {
  margin-top: 1.6rem;
  text-align: center;
}

.pricing-note p {
  display: inline-block;
  max-width: 720px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.86);
}

#pricing .section-tag {
  color: var(--sun-yellow);
}

#pricing .price-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 26px rgba(9,20,32,0.2);
  backdrop-filter: blur(10px);
}

#pricing .price-card:hover {
  box-shadow: 0 14px 34px rgba(9,20,32,0.3);
  border-color: rgba(226,199,153,0.45);
}

#pricing .price-kicker {
  color: var(--sun-yellow);
}

#pricing .price-card h3,
#pricing .price-value {
  color: var(--white);
}

#pricing .price-value span,
#pricing .price-copy,
#pricing .price-list li {
  color: rgba(255,255,255,0.78);
}

#pricing .price-list li::before {
  color: var(--sun-yellow);
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: var(--sun-light);
  color: var(--navy);
}

/* ============================================================
   WHY US / NUMBERS
   ============================================================ */
#why-us {
  padding: 6rem 0;
  background: linear-gradient(180deg, #F6EFDF 0%, #FCFAF3 100%);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,27,42,0.06) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-text .section-title {
  color: var(--navy);
}

.why-text .section-subtitle {
  color: var(--slate-light);
}

.why-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-point-icon {
  width: 42px;
  height: 42px;
  background: var(--sun-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.why-point-text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.why-point-text p {
  font-size: 0.87rem;
  color: var(--slate-light);
  line-height: 1.55;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.number-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.number-card:hover {
  background: #FFF9EE;
  transform: translateY(-3px);
}

.number-value {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--sun-warm);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.number-label {
  font-size: 0.88rem;
  color: var(--slate-light);
  line-height: 1.4;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 6rem 0;
  background: var(--white);
}

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

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

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

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--sun-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: 0.2rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--sun-warm);
}

.contact-hours {
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
}

.contact-hours h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* Contact form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--slate-light);
  margin-bottom: 1.8rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--navy);
  background: var(--white);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sun-yellow);
  box-shadow: 0 0 0 3px rgba(226,199,153,0.22);
}

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

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--sun-yellow);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(226,199,153,0.35);
}

.form-submit:hover {
  background: var(--sun-warm);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(198,164,106,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand .footer-logo .logo-icon {
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-socials a:hover {
  background: var(--sun-yellow);
  color: var(--navy);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--sun-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--sun-yellow);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--sun-yellow);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
  z-index: 900;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  background: var(--sun-warm);
  color: var(--white);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2000;
  white-space: nowrap;
  pointer-events: none;
  border-left: 4px solid var(--sun-yellow);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   LEGAL PAGE (ASZF)
   ============================================================ */
.legal-page {
  background: linear-gradient(180deg, #F6EFDF 0%, #FCFAF3 100%);
  color: var(--slate);
}

.legal-header {
  position: relative;
  padding: 2.2rem 0 1.4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 58%, #2E4458 100%);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.legal-home-link:hover {
  color: var(--sun-yellow);
}

.legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
}

.legal-logo .logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.legal-hero {
  padding: 3rem 0 2.6rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 58%, #2E4458 100%);
  color: var(--white);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.76);
  max-width: 760px;
}

.legal-meta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
}

.legal-layout {
  padding: 2.3rem 0 5rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.legal-toc h2 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sun-warm);
  margin-bottom: 0.8rem;
}

.legal-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
}

.legal-toc a {
  font-size: 0.9rem;
  color: var(--navy);
  padding: 0.36rem 0.45rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  display: block;
}

.legal-toc a:hover {
  background: var(--sun-light);
  color: var(--navy);
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  scroll-margin-top: 1rem;
}

.legal-section + .legal-section {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px dashed rgba(217,198,163,0.75);
}

.legal-section h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--slate-light);
  line-height: 1.72;
}

.legal-section ul {
  margin-top: 0.7rem;
  padding-left: 1.15rem;
}

.legal-section li {
  font-size: 0.93rem;
  color: var(--slate-light);
  margin-bottom: 0.35rem;
}

.legal-note {
  margin-top: 2rem;
  background: rgba(226,199,153,0.25);
  border: 1px solid rgba(198,164,106,0.55);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  font-size: 0.87rem;
  color: var(--slate);
}

.legal-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 1.3rem 0;
}

.legal-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
}

.legal-footer a {
  color: rgba(255,255,255,0.8);
}

.legal-footer a:hover {
  color: var(--sun-yellow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-process-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-content  { grid-template-columns: 1fr; padding: 120px 0 60px; }
  .hero-visual   { display: none; }
  .hero-stats    { flex-wrap: wrap; gap: 1.5rem; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual  { max-width: 420px; margin: 0 auto; }
  .about-badge   { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-process-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .qualifications-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .pricing-note p { border-radius: var(--radius); }
  .legal-header .container { flex-direction: column; align-items: flex-start; }
  .legal-content { padding: 1.3rem; }
  .legal-footer .container { flex-direction: column; }

  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 0; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 1.5rem; color: var(--slate); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.5rem 1.5rem; display: block; text-align: center; border-radius: 8px; padding: 0.7rem; }
  .burger { display: flex; }
}
