/*
Theme Name:  EduPath Europe
Theme URI:   https://edupatheurope.com
Author:      EduPath Europe
Author URI:  https://edupatheurope.com
Description: Professional educational consultancy theme for Germany-based study-abroad agency. Clean, modern, high-conversion single-page layout.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: edupath-europe
*/

/* ================================================================
   CSS CUSTOM PROPERTIES
   ──────────────────────────────────────────────────────────────────
   HOW TO CUSTOMIZE:
   Change --primary and --accent to match your logo's brand colors.
   All other values update automatically.
================================================================ */
:root {
  --primary:       #1B4F8A;   /* Deep navy — update from your logo */
  --primary-dark:  #113669;
  --primary-light: #2E7DD1;
  --accent:        #FF6B35;   /* CTA orange — update from your logo */
  --accent-dark:   #e05520;
  --bg:            #F8FAFB;
  --bg-alt:        #EEF3FA;
  --white:         #FFFFFF;
  --text:          #1A1A2E;
  --muted:         #6B7C93;
  --border:        #DDE3ED;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 8px rgba(27,79,138,.07);
  --shadow-md:     0 8px 28px rgba(27,79,138,.11);
  --shadow-lg:     0 20px 60px rgba(27,79,138,.15);
  --shadow-card:   0 4px 24px rgba(27,79,138,.09);
  --t:             all .3s cubic-bezier(.4,0,.2,1);
  --section-py:    90px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Inter',sans-serif; color:var(--text); background:var(--bg); line-height:1.6; overflow-x:hidden; }
h1,h2,h3,h4,h5 { font-family:'Poppins',sans-serif; line-height:1.25; font-weight:700; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; transition:var(--t); }
ul { list-style:none; }
input,textarea,select,button { font-family:inherit; }

/* ── Container ── */
.container { width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }

/* ── Section helpers ── */
.section-label { display:inline-block; font-family:'Poppins',sans-serif; font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--primary-light); background:var(--bg-alt); border:1px solid rgba(27,79,138,.12); padding:5px 14px; border-radius:100px; margin-bottom:12px; }
.section-title { font-size:clamp(1.75rem,3.5vw,2.4rem); font-weight:800; color:var(--text); margin-bottom:14px; }
.section-title span { color:var(--primary); }
.section-subtitle { font-size:1.05rem; color:var(--muted); max-width:580px; line-height:1.7; }
.section-header { text-align:center; margin-bottom:56px; }
.section-header .section-subtitle { margin:0 auto; }

/* ── Buttons ── */
.btn { display:inline-flex; align-items:center; gap:8px; font-family:'Poppins',sans-serif; font-size:.93rem; font-weight:600; padding:13px 26px; border-radius:10px; border:2px solid transparent; cursor:pointer; transition:var(--t); white-space:nowrap; text-decoration:none; }
.btn-primary { background:var(--accent); color:#fff; border-color:var(--accent); box-shadow:0 6px 20px rgba(255,107,53,.28); }
.btn-primary:hover { background:var(--accent-dark); border-color:var(--accent-dark); transform:translateY(-2px); box-shadow:0 10px 28px rgba(255,107,53,.38); }
.btn-outline { background:transparent; color:var(--primary); border-color:var(--primary); }
.btn-outline:hover { background:var(--primary); color:#fff; transform:translateY(-2px); }
.btn-white { background:#fff; color:var(--primary); border-color:#fff; box-shadow:var(--shadow-md); }
.btn-white:hover { background:var(--bg-alt); transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.55); }
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:#fff; transform:translateY(-2px); }
.btn-lg { padding:15px 34px; font-size:1rem; }

/* ================================================================
   NAVBAR
================================================================ */
#navbar { position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(255,255,255,.96); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-bottom:1px solid var(--border); transition:var(--t); }
#navbar.scrolled { box-shadow:var(--shadow-md); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:72px; }

.nav-logo { display:flex; align-items:center; gap:11px; text-decoration:none; }
.nav-logo-icon { width:42px; height:42px; background:var(--primary); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; }
.nav-logo-icon img { width:100%; height:100%; object-fit:contain; }
.nav-logo-icon svg { width:22px; height:22px; fill:none; stroke:#fff; stroke-width:2.2; }
.nav-logo-text .brand { font-family:'Poppins',sans-serif; font-size:1.12rem; font-weight:800; color:var(--primary); letter-spacing:-.3px; display:block; }
.nav-logo-text .tagline { font-size:.65rem; font-weight:500; color:var(--muted); letter-spacing:.5px; text-transform:uppercase; display:block; }

.nav-menu { display:flex; align-items:center; gap:4px; }
.nav-menu a { font-family:'Poppins',sans-serif; font-size:.88rem; font-weight:500; color:var(--text); padding:8px 13px; border-radius:var(--radius-sm); transition:var(--t); }
.nav-menu a:hover, .nav-menu a.active { color:var(--primary); background:var(--bg-alt); }
.nav-cta { display:flex; align-items:center; gap:14px; }

.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; border:none; background:none; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:var(--t); }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.nav-mobile { display:none; flex-direction:column; gap:4px; padding:14px 20px 20px; background:#fff; border-top:1px solid var(--border); }
.nav-mobile a { font-family:'Poppins',sans-serif; font-size:.94rem; font-weight:500; color:var(--text); padding:12px 14px; border-radius:var(--radius-sm); transition:var(--t); }
.nav-mobile a:hover { background:var(--bg-alt); color:var(--primary); }
.nav-mobile .btn { margin-top:8px; justify-content:center; }

/* ================================================================
   HERO
================================================================ */
#hero { padding-top:72px; min-height:100vh; position:relative; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background:linear-gradient(135deg,#0D2D5A 0%,#1B4F8A 50%,#2563AE 100%); z-index:0; }
.hero-bg::after { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.06) 1px,transparent 1px); background-size:30px 30px; }
.hero-blob { position:absolute; border-radius:50%; filter:blur(80px); opacity:.18; pointer-events:none; }
.blob1 { width:560px; height:560px; background:var(--accent); top:-180px; right:-80px; }
.blob2 { width:380px; height:380px; background:#4DAAFF; bottom:-100px; left:-60px; }

.hero-content { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; width:100%; padding:80px 0; }
.hero-text { color:#fff; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); backdrop-filter:blur(6px); padding:7px 17px; border-radius:100px; font-size:.8rem; font-family:'Poppins',sans-serif; font-weight:500; color:rgba(255,255,255,.9); margin-bottom:22px; }
.hero-badge .dot { width:7px; height:7px; background:#4DFF91; border-radius:50%; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }
.hero-title { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:800; line-height:1.15; color:#fff; margin-bottom:18px; letter-spacing:-.4px; }
.hero-title .hl { color:#FFB347; }
.hero-subtitle { font-size:1.05rem; color:rgba(255,255,255,.78); line-height:1.7; margin-bottom:34px; max-width:480px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats { display:flex; gap:28px; flex-wrap:wrap; align-items:center; }
.hero-stat { display:flex; flex-direction:column; }
.stat-num { font-family:'Poppins',sans-serif; font-size:1.75rem; font-weight:800; color:#FFB347; line-height:1; }
.stat-lbl { font-size:.8rem; color:rgba(255,255,255,.7); margin-top:4px; }
.stat-div { width:1px; height:38px; background:rgba(255,255,255,.2); }

.hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.hero-img-wrap { position:relative; width:100%; max-width:460px; }
.hero-frame { width:100%; aspect-ratio:4/5; background:linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.05)); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius-xl); backdrop-filter:blur(4px); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.hero-frame img { width:100%; height:100%; object-fit:cover; }
.hero-placeholder { display:flex; flex-direction:column; align-items:center; gap:14px; color:rgba(255,255,255,.35); text-align:center; padding:20px; }
.hero-placeholder svg { width:72px; height:72px; stroke:rgba(255,255,255,.25); }
.hero-placeholder p { font-size:.78rem; font-family:'Poppins',sans-serif; font-weight:500; max-width:200px; line-height:1.5; }

.float-card { position:absolute; background:#fff; border-radius:var(--radius-md); padding:12px 18px; box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:11px; }
.fc1 { bottom:70px; left:-44px; animation:floatY 4s ease-in-out infinite; }
.fc2 { top:70px; right:-30px; animation:floatY 4s ease-in-out infinite; animation-delay:1.8s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.fc-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fc-green { background:#E6F7EF; } .fc-blue { background:#EBF3FF; }
.fc-icon svg { width:20px; height:20px; }
.fc-lbl { font-size:.7rem; color:var(--muted); font-family:'Poppins',sans-serif; font-weight:500; }
.fc-val { font-size:.92rem; font-family:'Poppins',sans-serif; font-weight:700; color:var(--text); white-space:nowrap; }

/* ================================================================
   TRUST BAR
================================================================ */
#trust { background:#fff; padding:52px 0; border-bottom:1px solid var(--border); }
.trust-inner { display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.tp-block { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.tp-wordmark { font-family:'Poppins',sans-serif; font-size:1.1rem; font-weight:800; color:#00B67A; letter-spacing:-.3px; margin-bottom:4px; }
.tp-stars { display:flex; gap:3px; }
.tp-star { width:22px; height:22px; background:#00B67A; border-radius:3px; display:flex; align-items:center; justify-content:center; }
.tp-star svg { width:12px; height:12px; fill:#fff; }
.tp-half { background:linear-gradient(90deg,#00B67A 60%,#ccc 60%); }
.tp-score { font-family:'Poppins',sans-serif; font-size:1.4rem; font-weight:800; color:var(--text); line-height:1; }
.tp-sub { font-size:.78rem; color:var(--muted); }
.trust-div { width:1px; height:52px; background:var(--border); flex-shrink:0; }

.trust-badges { display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.t-badge { display:flex; align-items:center; gap:10px; padding:11px 18px; border:1.5px solid var(--border); border-radius:var(--radius-md); background:var(--bg); transition:var(--t); }
.t-badge:hover { border-color:var(--primary-light); box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.t-badge-icon { width:32px; height:32px; border-radius:7px; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; }
.t-badge-icon svg { width:17px; height:17px; stroke:var(--primary); }
.t-badge-title { font-family:'Poppins',sans-serif; font-size:.8rem; font-weight:700; color:var(--text); }
.t-badge-sub { font-size:.7rem; color:var(--muted); }

.trust-students { display:flex; align-items:center; gap:13px; }
.av-stack { display:flex; }
.av { width:36px; height:36px; border-radius:50%; border:2.5px solid #fff; margin-left:-9px; display:flex; align-items:center; justify-content:center; font-family:'Poppins',sans-serif; font-size:.72rem; font-weight:700; }
.av:first-child { margin-left:0; }
.av1{background:#FFDDD1;color:#c44} .av2{background:#D1E8FF;color:var(--primary)} .av3{background:#D4F7E7;color:#077} .av4{background:#FFF3D1;color:#a65}
.av-count { font-family:'Poppins',sans-serif; font-size:1.05rem; font-weight:800; color:var(--text); }
.av-sub { font-size:.76rem; color:var(--muted); }

/* ================================================================
   SERVICES
================================================================ */
#services { padding:var(--section-py) 0; background:var(--bg); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(255px,1fr)); gap:26px; }
.svc-card { background:#fff; border-radius:var(--radius-lg); padding:34px 30px; border:1.5px solid var(--border); box-shadow:var(--shadow-card); transition:var(--t); display:flex; flex-direction:column; position:relative; overflow:hidden; }
.svc-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:linear-gradient(90deg,var(--primary),var(--primary-light)); opacity:0; transition:var(--t); }
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(46,125,209,.3); }
.svc-card:hover::before { opacity:1; }
.svc-icon { width:58px; height:58px; background:var(--bg-alt); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; margin-bottom:22px; transition:var(--t); }
.svc-card:hover .svc-icon { background:var(--primary); }
.svc-icon svg { width:26px; height:26px; stroke:var(--primary); transition:var(--t); }
.svc-card:hover .svc-icon svg { stroke:#fff; }
.svc-title { font-family:'Poppins',sans-serif; font-size:1.1rem; font-weight:700; color:var(--text); margin-bottom:11px; }
.svc-desc { font-size:.88rem; color:var(--muted); line-height:1.65; flex:1; margin-bottom:22px; }
.svc-link { display:inline-flex; align-items:center; gap:6px; font-family:'Poppins',sans-serif; font-size:.85rem; font-weight:600; color:var(--primary); transition:var(--t); }
.svc-link svg { width:15px; height:15px; transition:var(--t); }
.svc-link:hover { gap:10px; color:var(--accent); }

/* ================================================================
   TEAM
================================================================ */
#team { padding:var(--section-py) 0; background:#fff; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.team-card { background:#fff; border-radius:var(--radius-lg); border:1.5px solid var(--border); overflow:hidden; box-shadow:var(--shadow-card); transition:var(--t); text-align:center; }
.team-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(46,125,209,.35); }
.team-photo { width:100%; aspect-ratio:1/1; background:linear-gradient(145deg,var(--bg-alt),#D0E5F8); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.team-photo img { width:100%; height:100%; object-fit:cover; }
.team-photo-ph { display:flex; flex-direction:column; align-items:center; gap:6px; }
.team-av-circle { width:78px; height:78px; border-radius:50%; background:rgba(27,79,138,.1); display:flex; align-items:center; justify-content:center; }
.team-av-circle svg { width:42px; height:42px; stroke:var(--primary-light); }
.team-av-lbl { font-size:.68rem; color:var(--muted); font-family:'Poppins',sans-serif; }
.team-info { padding:20px 18px; }
.team-name { font-family:'Poppins',sans-serif; font-size:.98rem; font-weight:700; color:var(--text); margin-bottom:3px; }
.team-role { font-family:'Poppins',sans-serif; font-size:.72rem; font-weight:600; color:var(--primary-light); text-transform:uppercase; letter-spacing:.7px; margin-bottom:10px; }
.team-bio { font-size:.81rem; color:var(--muted); line-height:1.58; }

/* ================================================================
   REVIEWS
================================================================ */
#reviews { padding:var(--section-py) 0; background:linear-gradient(180deg,var(--bg) 0%,var(--bg-alt) 100%); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.rev-card { background:#fff; border-radius:var(--radius-lg); padding:28px 26px; border:1.5px solid var(--border); box-shadow:var(--shadow-card); transition:var(--t); display:flex; flex-direction:column; gap:14px; }
.rev-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(46,125,209,.3); }
.rev-stars { display:flex; gap:3px; }
.rev-stars svg { width:17px; height:17px; fill:#F59E0B; }
.rev-quote { font-size:3rem; color:var(--primary-light); line-height:.4; font-family:Georgia,serif; opacity:.3; margin-bottom:-8px; }
.rev-text { font-size:.88rem; color:var(--text); line-height:1.7; font-style:italic; flex:1; }
.rev-author { display:flex; align-items:center; gap:11px; border-top:1px solid var(--border); padding-top:14px; margin-top:4px; }
.rev-av { width:42px; height:42px; border-radius:50%; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; font-family:'Poppins',sans-serif; font-size:.88rem; font-weight:700; color:var(--primary); flex-shrink:0; }
.rev-name { font-family:'Poppins',sans-serif; font-size:.88rem; font-weight:700; color:var(--text); }
.rev-country { font-size:.76rem; color:var(--muted); margin-top:1px; }

/* ================================================================
   LOCATION
================================================================ */
#location { padding:var(--section-py) 0; background:#fff; }
.location-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:56px; align-items:start; }
.location-info { display:flex; flex-direction:column; gap:28px; }
.contact-item { display:flex; align-items:flex-start; gap:16px; }
.ci-icon { width:46px; height:46px; background:var(--bg-alt); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.ci-icon svg { width:20px; height:20px; stroke:var(--primary); }
.ci-label { font-family:'Poppins',sans-serif; font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.8px; color:var(--muted); margin-bottom:4px; }
.ci-value { font-family:'Poppins',sans-serif; font-size:.98rem; font-weight:600; color:var(--text); line-height:1.5; }
.ci-value a { color:var(--primary); }
.ci-value a:hover { color:var(--accent); }
.location-map { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); border:1.5px solid var(--border); }
.location-map iframe { width:100%; height:380px; border:none; display:block; }

/* ================================================================
   FAQ
================================================================ */
#faq { padding:var(--section-py) 0; background:var(--bg); }
.faq-grid { max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item { background:#fff; border-radius:var(--radius-md); border:1.5px solid var(--border); overflow:hidden; box-shadow:var(--shadow-sm); transition:var(--t); }
.faq-item.open { border-color:rgba(46,125,209,.35); box-shadow:var(--shadow-card); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; background:none; border:none; cursor:pointer; text-align:left; font-family:'Poppins',sans-serif; font-size:.96rem; font-weight:600; color:var(--text); transition:var(--t); }
.faq-q:hover { color:var(--primary); }
.faq-q .faq-icon { width:28px; height:28px; border-radius:50%; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--t); }
.faq-q .faq-icon svg { width:14px; height:14px; stroke:var(--primary); transition:var(--t); }
.faq-item.open .faq-icon { background:var(--primary); }
.faq-item.open .faq-icon svg { stroke:#fff; transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease; }
.faq-a-inner { padding:0 24px 20px; font-size:.9rem; color:var(--muted); line-height:1.7; }

/* ================================================================
   CTA BAND
================================================================ */
#cta { padding:80px 0; background:linear-gradient(135deg,#0D2D5A 0%,#1B4F8A 55%,#2563AE 100%); position:relative; overflow:hidden; }
#cta::before { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px); background-size:28px 28px; }
.cta-blob { position:absolute; border-radius:50%; filter:blur(70px); opacity:.14; pointer-events:none; }
.cta-blob1 { width:400px; height:400px; background:var(--accent); top:-150px; right:-80px; }
.cta-blob2 { width:300px; height:300px; background:#4DAAFF; bottom:-100px; left:-60px; }
.cta-inner { position:relative; z-index:1; text-align:center; color:#fff; }
.cta-title { font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:800; color:#fff; margin-bottom:16px; letter-spacing:-.3px; }
.cta-title span { color:#FFB347; }
.cta-sub { font-size:1.05rem; color:rgba(255,255,255,.75); max-width:520px; margin:0 auto 36px; line-height:1.7; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ================================================================
   CONTACT FORM
================================================================ */
#contact { padding:var(--section-py) 0; background:#fff; }
.contact-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:start; }
.contact-form-wrap { background:var(--bg); border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:40px 36px; box-shadow:var(--shadow-card); }
.form-title { font-family:'Poppins',sans-serif; font-size:1.25rem; font-weight:700; color:var(--text); margin-bottom:6px; }
.form-sub { font-size:.88rem; color:var(--muted); margin-bottom:28px; line-height:1.5; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-family:'Poppins',sans-serif; font-size:.82rem; font-weight:600; color:var(--text); margin-bottom:7px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:12px 16px; border:1.5px solid var(--border); border-radius:var(--radius-sm); background:#fff; font-size:.9rem; color:var(--text); outline:none; transition:var(--t); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--primary-light); box-shadow:0 0 0 3px rgba(27,79,138,.07); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-submit { width:100%; justify-content:center; margin-top:8px; }
.form-notice { font-size:.76rem; color:var(--muted); text-align:center; margin-top:12px; line-height:1.5; }

.contact-info { display:flex; flex-direction:column; gap:28px; padding-top:8px; }
.contact-info-title { font-family:'Poppins',sans-serif; font-size:1.4rem; font-weight:800; color:var(--text); margin-bottom:8px; }
.contact-info-sub { font-size:.92rem; color:var(--muted); line-height:1.65; margin-bottom:10px; }
.ci-card { display:flex; align-items:flex-start; gap:14px; padding:18px 20px; background:var(--bg); border:1.5px solid var(--border); border-radius:var(--radius-md); transition:var(--t); }
.ci-card:hover { border-color:rgba(46,125,209,.35); box-shadow:var(--shadow-sm); }

/* ================================================================
   FOOTER
================================================================ */
#footer { background:#0D2140; color:rgba(255,255,255,.75); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; margin-bottom:48px; }
.footer-brand .fb-logo { display:flex; align-items:center; gap:11px; margin-bottom:18px; }
.fb-icon { width:38px; height:38px; background:rgba(255,255,255,.1); border-radius:9px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.fb-icon img { width:100%; height:100%; object-fit:contain; }
.fb-icon svg { width:20px; height:20px; fill:none; stroke:#fff; stroke-width:2.2; }
.fb-brand-name { font-family:'Poppins',sans-serif; font-size:1.05rem; font-weight:800; color:#fff; display:block; }
.fb-brand-tag { font-size:.62rem; font-weight:500; color:rgba(255,255,255,.5); letter-spacing:.5px; text-transform:uppercase; display:block; }
.footer-brand p { font-size:.85rem; line-height:1.7; color:rgba(255,255,255,.55); max-width:280px; }
.footer-col h4 { font-family:'Poppins',sans-serif; font-size:.88rem; font-weight:700; color:#fff; margin-bottom:16px; letter-spacing:.3px; }
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col ul a { font-size:.84rem; color:rgba(255,255,255,.55); transition:var(--t); }
.footer-col ul a:hover { color:#fff; padding-left:4px; }
.footer-contact { display:flex; flex-direction:column; gap:14px; }
.fc-row { display:flex; align-items:flex-start; gap:11px; }
.fc-row-icon { width:28px; height:28px; background:rgba(255,255,255,.06); border-radius:7px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.fc-row-icon svg { width:14px; height:14px; stroke:rgba(255,255,255,.6); }
.fc-row-text { font-size:.83rem; color:rgba(255,255,255,.55); line-height:1.55; }
.fc-row-text a { color:rgba(255,255,255,.7); }
.fc-row-text a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:20px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.35); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:.78rem; color:rgba(255,255,255,.35); transition:var(--t); }
.footer-bottom-links a:hover { color:rgba(255,255,255,.7); }

/* ================================================================
   ANIMATIONS
================================================================ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media(max-width:1024px) {
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:820px) {
  :root { --section-py:64px; }
  .nav-menu, .nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .hero-content { grid-template-columns:1fr; gap:40px; padding:50px 0; }
  .hero-visual { display:none; }
  .reviews-grid { grid-template-columns:1fr; }
  .location-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .trust-inner { flex-direction:column; align-items:flex-start; gap:24px; }
  .trust-div { display:none; }
  .float-card { display:none; }
}
@media(max-width:640px) {
  .services-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { justify-content:center; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
