:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --blue: #1a56db;
  --blue-light: #3b82f6;
  --sky: #e8f1fd;
  --accent: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --text: #1e293b;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,60,0.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* TOPBAR */
.topbar { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 0.82rem; padding: 8px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

/* NAVBAR */
nav { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 16px rgba(13,31,60,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.logo-sub { font-size: 0.72rem; color: var(--gray-500); letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-700); font-size: 0.92rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { background: var(--sky); color: var(--blue); }
.nav-cta { background: var(--blue) !important; color: white !important; padding: 9px 20px !important; border-radius: 8px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); box-shadow: var(--shadow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; padding: 56px 24px 48px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 560px; }

/* SECTION */
.section { padding: 72px 24px; }
.section-alt { background: var(--gray-50); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: var(--sky); color: var(--blue); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-sub { color: var(--gray-500); font-size: 1rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: white; text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 13px 26px; border-radius: 10px; transition: all 0.25s; }
.btn-primary:hover { background: #1648c0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,219,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--blue); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 13px 26px; border-radius: 10px; border: 1.5px solid var(--blue); transition: all 0.25s; }
.btn-outline:hover { background: var(--sky); }
.btn-accent { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.95rem; padding: 13px 26px; border-radius: 10px; transition: all 0.25s; }
.btn-accent:hover { background: #e08d00; transform: translateY(-2px); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: white; border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 32px 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }
.service-icon { width: 52px; height: 52px; background: var(--sky); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; transition: 0.3s; }
.service-card:hover .service-icon { background: var(--blue); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--gray-100); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; background: white; border: none; padding: 20px 24px; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: 0.2s; }
.faq-q:hover { background: var(--sky); }
.faq-icon { font-size: 1.2rem; color: var(--blue); flex-shrink: 0; transition: transform 0.3s; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: white; }
.faq-body.open { max-height: 300px; }
.faq-body-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

/* TRUST BAR */
.trust-bar { background: var(--sky); border-top: 1px solid #dbeafe; border-bottom: 1px solid #dbeafe; padding: 18px 24px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--navy); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: white; padding: 64px 24px; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.78); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 13px 26px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.45); transition: all 0.25s; }
.btn-white:hover { background: rgba(255,255,255,0.12); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 1rem; transition: 0.2s; }
.social-btn:hover { background: var(--blue); }
.footer-col h5 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: 0.2s; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.87rem; }
.contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.45); transition: transform 0.25s; animation: pulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.75); } }

/* CARDS */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card { background: white; border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 28px 24px; transition: 0.3s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue-light); }
.feature-card .fi { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--gray-500); }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.process-step { text-align: center; padding: 32px 20px; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--gray-300); }
.step-num { width: 52px; height: 52px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 16px; font-family: 'Playfair Display', serif; }
.process-step h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--gray-500); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--gray-100); transition: 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb-img { width: 100%; height: 190px; object-fit: cover; }
.blog-thumb-placeholder { height: 190px; background: linear-gradient(135deg, var(--navy-mid), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-content { padding: 22px; }
.blog-date { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 8px; }
.blog-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.86rem; color: var(--gray-500); margin-bottom: 16px; }
.blog-link { font-size: 0.85rem; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.blog-link:hover { gap: 9px; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--blue); }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.reviewer-loc { font-size: 0.78rem; color: var(--gray-500); }

/* FORM */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group select, .form-group input, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-300); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); transition: border 0.2s; appearance: none; background: white; outline: none; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select:focus, .form-group input:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.btn-form { width: 100%; background: var(--accent); color: var(--navy); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 13px; border: none; border-radius: 10px; cursor: pointer; transition: all 0.25s; margin-top: 4px; }
.btn-form:hover { background: #e08d00; transform: translateY(-1px); }

/* CONTENT PROSE */
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.prose h4 { font-size: 1rem; font-weight: 700; color: var(--navy-mid); margin: 18px 0 8px; }
.prose p { font-size: 0.95rem; color: var(--gray-700); margin-bottom: 14px; line-height: 1.75; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose ul li { font-size: 0.93rem; color: var(--gray-700); margin-bottom: 6px; }

/* LAYOUT SIDE */
.layout-side { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar-card { background: white; border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sidebar-service-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gray-700); font-size: 0.9rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--gray-100); transition: 0.2s; }
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover, .sidebar-service-link.active { color: var(--blue); padding-left: 4px; }
.contact-box { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; border-radius: var(--radius); padding: 28px; text-align: center; }
.contact-box h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; }
.contact-box p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.contact-box a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.95rem; padding: 12px 20px; border-radius: 10px; margin-bottom: 10px; transition: 0.2s; }
.contact-box a:hover { background: white; }

/* REGIONS */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.region-card { background: white; border: 1.5px solid var(--gray-100); border-radius: 10px; padding: 20px; }
.region-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.region-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card { background: white; border-radius: var(--radius); padding: 24px; border-left: 4px solid var(--blue); box-shadow: var(--shadow); }
.value-card h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.87rem; color: var(--gray-500); }

/* STATS ROW */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
.stat-box { padding: 28px 16px; background: white; border-radius: var(--radius); border: 1.5px solid var(--gray-100); }
.stat-num-big { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label-sm { font-size: 0.82rem; color: var(--gray-500); margin-top: 6px; }

/* FADE UP */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 16px 24px; box-shadow: var(--shadow-lg); gap: 2px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .layout-side { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .trust-inner { gap: 20px; }
}
