/* ===== SSUCS GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #033b7a;
  --teal: #0f8ca8;
  --slate: #355070;
  --light-bg: #f4f6f9;
  --white: #ffffff;
  --dark: #1f1f23;
  --text: #444;
  --muted: #777;
  --border: #e2e8f0;
  --accent: #e8f4f8;
  --gold: #c9a84c;
  --success: #16a34a;
  --error: #dc2626;
}

*, *::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); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== PROGRESS BAR ===== */
.page-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--navy)); z-index: 9999; width: 0; transition: width 0.2s; }

/* ===== NAVBAR ===== */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; transition: all 0.3s;
}
nav.scrolled { height: 64px; box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { width: 54px; height: 54px; object-fit: contain; border-radius: 8px; }
.nav-brand-text h2 { color: var(--navy); font-size: 20px; font-weight: 700; line-height: 1; letter-spacing: -0.3px; }
.nav-brand-text p { color: var(--muted); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links li a {
  font-size: 13.5px; font-weight: 500; color: var(--text);
  padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--navy); background: var(--accent); }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--slate) !important; }

.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: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 20px 6%; z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; font-size: 15px; font-weight: 500; color: var(--text); border-radius: 8px; transition: all 0.2s; display: block; }
.mobile-menu a:hover { background: var(--accent); color: var(--navy); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 7px; font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.25s; border: none; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #0d7a91; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15,140,168,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #022f63; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(3,59,122,0.35); }

/* ===== SECTION HELPERS ===== */
.section-tag { display: inline-block; background: var(--accent); color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; }
.section-title { font-size: 34px; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 580px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }
.divider { width: 50px; height: 3px; background: var(--teal); border-radius: 2px; margin-bottom: 24px; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ===== HERO (shared) ===== */
.page-hero { background: linear-gradient(135deg, #023166, #355070); padding: 80px 6%; text-align: center; color: var(--white); }
.page-hero h1 { font-size: 44px; margin-bottom: 18px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: white; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy); padding: 18px 6%; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-bar span { font-size: 12.5px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; font-weight: 500; }
.trust-bar span::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; flex-shrink: 0; }

/* ===== CARDS ===== */
.card { background: var(--white); border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); overflow: hidden; transition: all 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

/* ===== SERVICE DETAIL ===== */
.service-detail { padding: 90px 6%; }
.service-detail:nth-child(even) { background: var(--light-bg); }
.service-detail:nth-child(odd) { background: var(--white); }
.service-detail-inner { display: flex; align-items: center; gap: 70px; max-width: 1280px; margin: 0 auto; }
.service-detail.reverse .service-detail-inner { flex-direction: row-reverse; }
.service-detail-img { flex: 1; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.service-detail-img img { width: 100%; display: block; }
.service-detail-text { flex: 1; }
.service-detail-text h2 { font-size: 30px; color: var(--navy); margin-bottom: 18px; }
.service-detail-text p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.service-features { margin-bottom: 30px; }
.service-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.feature-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--white); flex-shrink: 0; margin-top: 1px; }
.service-feature p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.6; }

/* ===== CERT BADGES ===== */
.cert-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 12px 18px; margin: 6px; font-size: 13px; font-weight: 600; color: var(--navy); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.cert-badge span { font-size: 20px; }

/* ===== TESTIMONIAL CARDS ===== */
.testi-full-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.testi-full-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.quote-mark { font-size: 48px; color: var(--teal); line-height: 0.5; margin-bottom: 16px; font-family: serif; opacity: 0.6; }
.testi-full-card .text { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 22px; }
.testi-full-card .author-row { display: flex; align-items: center; gap: 14px; }
.testi-full-card .avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: white; font-family: 'Playfair Display', serif; flex-shrink: 0; }
.testi-full-card .name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-full-card .role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testi-full-card .stars { font-size: 13px; color: var(--gold); margin-top: 4px; }

/* ===== FAQ ===== */
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 14px; overflow: hidden; box-shadow: 0 10px 12px rgba(0,0,0,0.05); }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; transition: background 0.2s; }
.faq-q:hover { background: var(--accent); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(455deg); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-section .section-header{
  text-align:center;
  padding-top:0;
  margin-top:-6px;
}

/* ===== FORM ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); transition: all 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15,140,168,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: var(--white); padding: 70px 6% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; max-width: 1280px; margin: 0 auto; padding-bottom: 50px; }
.footer-col h4 { font-size: 16px; margin-bottom: 22px; color: var(--white); font-family: 'Playfair Display', serif; }
.footer-col p, .footer-col a { font-size: 13.5px; color: #9ca3af; margin-bottom: 10px; line-height: 1.6; display: block; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-brand-desc { font-size: 13.5px; color: #9ca3af; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 50px; height: 50px; object-fit: contain; border-radius: 8px; }
.footer-logo-text h3 { font-size: 18px; color: var(--white); line-height: 1; }
.footer-logo-text span { font-size: 10px; color: #9ca3af; letter-spacing: 1px; text-transform: uppercase; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: #6b7280; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #9ca3af; transition: all 0.2s; }
.footer-social a:hover { background: var(--teal); color: var(--white); }

/* ===== MISC ===== */
.back-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: 10px; display: none; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; box-shadow: 0 4px 16px rgba(3,59,122,0.4); transition: all 0.2s; z-index: 999; }
.back-top:hover { background: var(--teal); transform: translateY(-3px); }
.back-top.visible { display: flex; }

.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--dark); color: var(--white); padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; box-shadow: 0 8px 30px rgba(0,0,0,0.2); z-index: 10000; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); max-width: 380px; text-align: center; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-1 { animation: fadeUp 0.7s 0.0s ease both; }
.animate-2 { animation: fadeUp 0.7s 0.15s ease both; }
.animate-3 { animation: fadeUp 0.7s 0.3s ease both; }
.animate-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-title { font-size: 26px; }
  .service-detail-inner { flex-direction: column !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
}
