﻿/* =====================================================
   ServisAdres.tr — Ana Stil Dosyası
   Fonts: Playfair Display (display) + DM Sans (body)
   Colors: #e3d0ff (lavender) | #000099 (deep blue)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

:root {
  --lavender:    #e3d0ff;
  --lavender-mid:#c9b0f5;
  --lavender-dk: #9370db;
  --blue:        #000099;
  --blue-mid:    #0000cc;
  --blue-light:  #2222dd;
  --ink:         #0a0818;
  --ink-mid:     #3a3558;
  --ink-light:   #6b6589;
  --white:       #ffffff;
  --off-white:   #faf8ff;
  --surface:     #f2ecff;
  --border:      #ddd4f5;
  --ff-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,153,.08);
  --shadow-md:  0 8px 30px rgba(0,0,153,.13);
  --shadow-lg:  0 20px 60px rgba(0,0,153,.18);
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --radius-xl:  48px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--white); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Typography */
.display-title { font-family: var(--ff-display); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; }
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--ff-body); font-weight: 600; }
p { color: var(--ink-mid); }
.lead { font-size: 1.15rem; font-weight: 400; line-height: 1.7; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 100px; font-family: var(--ff-body); font-weight: 600; font-size: .95rem; letter-spacing: .02em; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(0,0,153,.35); }
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,153,.45); }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--lavender); color: var(--blue); font-weight: 700; }
.btn-light:hover { background: var(--lavender-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { background: var(--lavender); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* Topbar */
.topbar { background: var(--blue); color: rgba(255,255,255,.85); padding: 9px 0; font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-left a { color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 7px; transition: color var(--transition); }
.topbar-left a:hover { color: var(--lavender); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { color: rgba(255,255,255,.7); font-size: 1rem; transition: color var(--transition); }
.topbar-right a:hover { color: var(--lavender); }

/* Navbar */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.navbar-logo img { height: 44px; width: auto; }
.navbar-logo span { font-family: var(--ff-display); font-weight: 900; font-size: 1.5rem; color: var(--blue); letter-spacing: -.02em; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link { display: block; padding: 8px 14px; font-size: .9rem; font-weight: 500; color: var(--ink-mid); border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--surface); }
.nav-cta { margin-left: 10px; padding: 9px 22px; background: var(--blue); color: var(--white) !important; border-radius: 100px; font-weight: 600; font-size: .875rem; }
.nav-cta:hover { background: var(--blue-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; border-radius: var(--radius-sm); transition: background var(--transition); }
.hamburger:hover { background: var(--surface); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Section Utilities */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); background: var(--lavender); padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 0, 153, 0.158) 0%, rgba(10, 8, 24, 0.199) 60%, rgba(148, 112, 219, 0) 100%); }
.hero-content { position: relative; z-index: 2; padding: 120px 0 100px; max-width: 780px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(227, 208, 255, 0); border: 1px solid rgba(227, 208, 255, 0); backdrop-filter: blur(8px); color: var(--lavender); padding: 7px 18px; border-radius: 100px; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { color: var(--white); font-family: var(--ff-display); font-weight: 900; margin-bottom: 24px; }
.hero h1 em { font-style: normal; font-family: var(--ff-display); font-weight: 800; color: var(--lavender); display: block; letter-spacing: -.02em; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.78); margin-bottom: 44px; max-width: 540px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-phone-chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: var(--white); padding: 14px 24px; border-radius: 100px; font-weight: 600; font-size: .95rem; backdrop-filter: blur(6px); transition: var(--transition); }
.hero-phone-chip:hover { background: rgba(255,255,255,.15); }
.hero-phone-chip i { color: var(--lavender); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(.7); } }

/* Services Grid */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lavender-mid); }
.service-card-img { height: 200px; overflow: hidden; background: var(--surface); position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon { position: absolute; top: 16px; left: 16px; width: 44px; height: 44px; background: var(--blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.service-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--ink); }
.service-card-body p { font-size: .9rem; line-height: 1.72; flex: 1; margin-bottom: 24px; }
.service-card-body .btn { align-self: flex-start; }

/* Why Us */
.why-section { background: var(--blue); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(227,208,255,.06); }
.why-section::after { content: ''; position: absolute; bottom: -100px; left: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(227,208,255,.04); }
.why-intro { max-width: 600px; margin-bottom: 64px; }
.why-intro h2 { color: var(--white); margin-bottom: 16px; }
.why-intro p { color: rgba(255,255,255,.65); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.why-card { padding: 48px 44px; border: 1px solid rgba(227,208,255,.1); position: relative; transition: background var(--transition); }
.why-card:hover { background: rgba(227,208,255,.05); }
.why-number { font-family: var(--ff-display); font-size: 5rem; font-weight: 900; color: rgba(227,208,255,.1); line-height: 1; margin-bottom: -20px; }
.why-icon { width: 52px; height: 52px; background: rgba(227,208,255,.12); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--lavender); font-size: 1.3rem; margin-bottom: 20px; }
.why-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.why-card p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* About Summary */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-label { margin-bottom: 20px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 12px; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; }
.about-img-badge { position: absolute; bottom: -20px; left: -20px; background: var(--blue); color: var(--white); padding: 24px 28px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-lg); }
.about-img-badge .badge-num { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 900; line-height: 1; display: block; }
.about-img-badge .badge-text { font-size: .78rem; opacity: .85; }

/* Stats */
.stats-section { background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 56px 32px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 10px; display: block; }
.stat-label { font-size: .88rem; color: var(--ink-mid); font-weight: 500; }

/* Pricing */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pricing-block h3 { font-size: 1.4rem; margin-bottom: 28px; }
.policy-list { display: flex; flex-direction: column; gap: 16px; }
.policy-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; background: var(--surface); border-radius: var(--radius-md); border-left: 3px solid var(--blue); transition: var(--transition); }
.policy-item:hover { background: var(--lavender); }
.policy-item i { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.policy-item-text strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: .92rem; }
.policy-item-text p { font-size: .86rem; margin: 0; }

/* Regions */
.regions-section { background: var(--blue); }
.regions-header { text-align: center; margin-bottom: 56px; }
.regions-header h2 { color: var(--white); margin-bottom: 16px; }
.regions-header p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; margin-bottom: 48px; }
.region-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.85); padding: 9px 14px; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 500; text-align: center; transition: var(--transition); }
.region-tag:hover { background: rgba(227,208,255,.15); border-color: var(--lavender-mid); color: var(--lavender); cursor: default; }
.regions-note { text-align: center; color: rgba(255,255,255,.55); font-size: .85rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; }

/* CTA Banner */
.cta-banner { background: var(--ink); position: relative; overflow: hidden; padding: 96px 0; }
.cta-banner::before { content: ''; position: absolute; top: -120px; right: 10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,0,153,.4) 0%, transparent 70%); }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: 5%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(147,112,219,.25) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.cta-content h2 em { font-style: italic; color: var(--lavender); }
.cta-content p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 44px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); }
.footer-main { padding: 80px 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-col-title { font-family: var(--ff-body); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lavender-mid); margin-bottom: 20px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 38px; }
.footer-logo span { font-family: var(--ff-display); font-weight: 900; font-size: 1.4rem; color: var(--white); }
.footer-desc { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.75; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--lavender); }
.footer-links a i { font-size: .7rem; color: var(--lavender-mid); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--lavender-mid); font-size: .95rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--lavender); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bar p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-bar-links { display: flex; gap: 20px; }
.footer-bar-links a { color: rgba(255,255,255,.4); font-size: .8rem; transition: color var(--transition); }
.footer-bar-links a:hover { color: var(--lavender); }

/* Page Hero */
.page-hero { background: var(--blue); padding: 80px 0 72px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(227,208,255,.08); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--lavender); }
.page-hero .breadcrumb i { font-size: .65rem; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 520px; }

/* About Page */
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { background: var(--surface); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-md); padding: 36px 28px; border: 1px solid var(--border); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lavender-mid); }
.value-card-icon { width: 52px; height: 52px; background: var(--lavender); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.3rem; margin-bottom: 20px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { font-size: .875rem; }
.timeline-section { background: var(--off-white); }
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--lavender-mid); }
.timeline-item { display: flex; gap: 32px; padding-bottom: 48px; position: relative; }
.timeline-dot { width: 48px; height: 48px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: .78rem; flex-shrink: 0; position: relative; z-index: 1; }
.timeline-body { padding-top: 10px; }
.timeline-body h4 { font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.timeline-body p { font-size: .875rem; }

/* Services Page */
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.service-detail-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: var(--lavender-mid); transform: translateY(-4px); }
.service-detail-img { height: 220px; overflow: hidden; background: var(--surface); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-body { padding: 32px; }
.service-detail-body h3 { margin-bottom: 14px; }
.service-detail-body p { font-size: .9rem; margin-bottom: 20px; }
.service-feature-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-feature-list li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--ink-mid); }
.service-feature-list li i { color: var(--blue); font-size: .8rem; }
.process-section { background: var(--surface); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { padding: 40px 32px; text-align: center; position: relative; }
.process-step::after { content: ''; position: absolute; top: 52px; right: -1px; width: 32px; height: 2px; background: var(--lavender-mid); }
.process-step:last-child::after { display: none; }
.step-num { width: 64px; height: 64px; background: var(--blue); color: var(--white); border-radius: 50%; font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .875rem; }

/* Contact Page */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group label span { color: #c00; }
.form-control { width: 100%; padding: 13px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-family: var(--ff-body); font-size: .9rem; color: var(--ink); background: var(--white); outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,0,153,.08); }
.form-control::placeholder { color: var(--ink-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-note { font-size: .8rem; color: var(--ink-light); margin-top: 14px; }
.form-submit-note a { color: var(--blue); }
.contact-info-card { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 24px; border: 1px solid var(--border); }
.contact-info-card h3 { margin-bottom: 24px; font-size: 1.15rem; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text span { font-size: .95rem; color: var(--ink); font-weight: 500; }
.contact-detail-text a:hover { color: var(--blue); }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; height: 280px; background: var(--surface); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--ink-light); }
.map-placeholder i { font-size: 2.5rem; color: var(--lavender-mid); }
.map-placeholder p { font-size: .875rem; }

/* Legal */
.legal-section { background: var(--white); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-content p { margin-bottom: 14px; font-size: .935rem; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: .935rem; margin-bottom: 8px; list-style: disc; color: var(--ink-mid); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.legal-content table th, .legal-content table td { border: 1px solid var(--border); padding: 10px 14px; font-size: .875rem; }
.legal-content table th { background: var(--surface); font-weight: 600; }

/* Fixed Call Button */
.fixed-cta {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,153,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, background .3s, opacity .3s;
  opacity: 1;
  text-decoration: none;
}
.fixed-cta:hover {
  background: var(--blue-mid);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,153,.55);
}
.fixed-cta .fixed-cta-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.fixed-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}
@media (max-width: 480px) {
  .fixed-cta { padding: 13px 26px; font-size: .9rem; bottom: 20px; }
  .fixed-cta .fixed-cta-icon { width: 28px; height: 28px; font-size: .8rem; }
}

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid, .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { order: -1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .legal-bar { display: none; }
  .hamburger { display: flex; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; justify-content: center; align-items: center; gap: 8px; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 14px 24px; }
  .nav-cta { margin-top: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid, .services-detail-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 16px; }
  .regions-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}
