/* ===== SITE 5: WINGATE SUPPORT SERVICES LTD — Wealth Management Principles ===== */
/* Classic Cream / Navy / Burgundy Professional Theme */

:root {
  --cream: #faf8f5;
  --cream-mid: #f0ebe0;
  --cream-dark: #e0d8c8;
  --navy: #1a3a5c;
  --navy-mid: #234d78;
  --navy-light: #2e6096;
  --burgundy: #8b1a1a;
  --burgundy-light: #b02020;
  --gold: #c8952a;
  --text: #2c2c2c;
  --text-mid: #5a5a5a;
  --text-light: #888888;
  --border: #d8d0c0;
  --card-bg: #f5f0e8;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Georgia', 'Times New Roman', serif; background: var(--cream); color: var(--text); line-height: 1.7; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: #fff;
  padding: 16px 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; z-index: 9999; flex-wrap: wrap;
  border-top: 3px solid var(--gold);
}
#cookie-banner p { font-size: 13px; color: #c0cdd8; flex: 1; min-width: 200px; font-family: 'Segoe UI', Arial, sans-serif; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--gold); color: #fff; border: none; padding: 9px 22px; border-radius: 3px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: 'Segoe UI', Arial, sans-serif; }
.btn-cookie-decline { background: transparent; color: #8899aa; border: 1px solid #2e4a6a; padding: 9px 22px; border-radius: 3px; cursor: pointer; font-size: 13px; font-family: 'Segoe UI', Arial, sans-serif; }
.btn-cookie-accept:hover { background: #d8a030; }

/* ===== WHATSAPP ===== */
.whatsapp-fab {
  position: fixed; bottom: 90px; right: 24px; width: 58px; height: 58px;
  background: #25d366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 9998; text-decoration: none; transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: #fff; }

/* ===== NAV ===== */
nav {
  background: var(--white); border-bottom: 3px solid var(--navy);
  position: sticky; top: 0; z-index: 100;
  padding: 0 56px; display: flex; align-items: center;
  justify-content: space-between; height: 76px;
  box-shadow: 0 2px 12px rgba(26,58,92,.1);
}
.nav-logo { font-size: 20px; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: .3px; font-family: Georgia, serif; }
.nav-logo span { color: var(--burgundy); }
.nav-links { display: flex; gap: 28px; list-style: none; font-family: 'Segoe UI', Arial, sans-serif; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-bottom: 2px solid var(--navy); padding-bottom: 2px; }
.nav-cta { background: var(--navy) !important; color: #fff !important; padding: 10px 22px; border-radius: 3px; border-bottom: none !important; }
.nav-cta:hover { background: var(--navy-mid) !important; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: #fdf5e8; border-top: 1px solid #e8d8a8; border-bottom: 1px solid #e8d8a8;
  padding: 10px 40px; text-align: center; font-size: 12px; color: #8a6820;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  min-height: 580px; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background-image: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=900&q=80');
  background-size: cover; background-position: center; opacity: .2;
}
.hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(to right, var(--navy), transparent);
}
.hero-content { position: relative; z-index: 1; padding: 90px 72px; max-width: 640px; }
.hero-rule { width: 48px; height: 3px; background: var(--gold); margin-bottom: 24px; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(200,149,42,.4); color: var(--gold);
  font-size: 11px; font-weight: 600; letter-spacing: 2px; padding: 6px 18px;
  border-radius: 2px; margin-bottom: 20px; text-transform: uppercase;
  font-family: 'Segoe UI', Arial, sans-serif; background: rgba(200,149,42,.08);
}
.hero h1 { font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 20px; font-family: Georgia, serif; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 17px; color: #aabccc; margin-bottom: 28px; line-height: 1.8; font-family: 'Segoe UI', Arial, sans-serif; }
.hero-disclaimer {
  font-size: 12px; color: #7a90a0; background: rgba(255,255,255,.04);
  border-left: 3px solid var(--burgundy); padding: 10px 14px; border-radius: 2px;
  margin-bottom: 32px; font-family: 'Segoe UI', Arial, sans-serif;
}
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 16px 38px; border-radius: 3px; font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; letter-spacing: .5px;
  font-family: 'Segoe UI', Arial, sans-serif; transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #d8a030; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section-wrap { max-width: 1180px; margin: 0 auto; padding: 80px 56px; }
.section-rule { width: 40px; height: 3px; background: var(--burgundy); margin-bottom: 16px; }
.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--burgundy); font-weight: 700; margin-bottom: 10px; font-family: 'Segoe UI', Arial, sans-serif; }
.section-title { font-size: 36px; font-weight: 700; margin-bottom: 14px; color: var(--navy); font-family: Georgia, serif; }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 580px; line-height: 1.8; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); padding: 80px 0; border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.about-text p { color: var(--text-mid); margin-bottom: 14px; font-size: 15px; line-height: 1.85; font-family: 'Segoe UI', Arial, sans-serif; }
.about-features { list-style: none; margin-top: 22px; font-family: 'Segoe UI', Arial, sans-serif; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 15px; color: var(--text); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.about-features li:last-child { border-bottom: none; }
.about-features li::before { content: '■'; color: var(--burgundy); font-size: 8px; flex-shrink: 0; margin-top: 7px; }
.about-img { border-radius: 2px; overflow: hidden; border: 1px solid var(--border); box-shadow: 6px 6px 0 var(--navy); }
.about-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* ===== MODULES ===== */
.modules-section { background: var(--cream-mid); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.module-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--navy); padding: 28px; transition: box-shadow .2s; }
.module-card:hover { box-shadow: 0 8px 28px rgba(26,58,92,.12); }
.module-number { font-size: 11px; font-weight: 700; color: var(--burgundy); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; font-family: 'Segoe UI', Arial, sans-serif; }
.module-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-family: Georgia, serif; }
.module-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== PHOTOS ===== */
.photos-section { padding: 80px 0; background: var(--cream); }
.photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.photo-card { overflow: hidden; border: 1px solid var(--border); box-shadow: 3px 3px 0 var(--navy); }
.photo-card img { width: 100%; height: 225px; object-fit: cover; display: block; transition: transform .5s; }
.photo-card:hover img { transform: scale(1.04); }

/* ===== REGISTER ===== */
.register-section { background: var(--navy); padding: 80px 0; }
.register-inner { max-width: 600px; margin: 0 auto; padding: 0 40px; text-align: center; }
.register-inner .section-title { color: var(--white); }
.register-inner .section-rule { background: var(--gold); margin: 16px auto; }
.register-inner .section-sub { color: #aabccc; margin: 0 auto 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; text-align: left; font-family: 'Segoe UI', Arial, sans-serif; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: #8899aa; letter-spacing: .5px; text-transform: uppercase; }
.form-group input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; padding: 12px 14px; border-radius: 3px; font-size: 14px; outline: none; transition: border-color .2s; font-family: 'Segoe UI', Arial, sans-serif; }
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: #5a6a7a; }
.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.form-submit button { width: 100%; background: var(--gold); color: #fff; border: none; padding: 16px; border-radius: 3px; font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: .5px; font-family: 'Segoe UI', Arial, sans-serif; transition: background .2s; }
.form-submit button:hover { background: #d8a030; }
#form-success { display: none; margin-top: 18px; background: rgba(200,149,42,.1); border: 1px solid var(--gold); color: #e8c060; padding: 14px; border-radius: 3px; font-size: 15px; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== FOOTER ===== */
footer { background: #101e30; border-top: 3px solid var(--burgundy); padding: 60px 56px 30px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { font-size: 18px; display: inline-block; margin-bottom: 12px; color: var(--white) !important; }
.footer-brand .nav-logo span { color: var(--gold) !important; }
.footer-brand p { font-size: 13px; color: #5a7090; line-height: 1.7; max-width: 280px; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-col ul { list-style: none; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #5a7090; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: 13px; color: #5a7090; line-height: 1.9; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-bottom { max-width: 1180px; margin: 0 auto; border-top: 1px solid #1e3040; padding-top: 24px; font-size: 12px; color: #4a6070; line-height: 1.7; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-disclaimer { background: rgba(139,26,26,.08); border-left: 3px solid var(--burgundy); padding: 12px 14px; border-radius: 2px; margin-bottom: 16px; color: #9a6060; font-size: 12px; }

/* ===== CONTACT / LEGAL ===== */
.page-hero { background: var(--navy); border-bottom: 3px solid var(--burgundy); padding: 80px 56px 60px; text-align: center; }
.page-hero h1 { font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 10px; font-family: Georgia, serif; }
.page-hero p { font-size: 16px; color: #8899aa; font-family: 'Segoe UI', Arial, sans-serif; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; padding: 80px 56px; }
.contact-info h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 20px; font-family: Georgia, serif; }
.company-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--burgundy); padding: 28px; margin-bottom: 28px; box-shadow: 3px 3px 0 var(--cream-dark); }
.company-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; font-family: Georgia, serif; }
.company-card address { font-style: normal; color: var(--text-mid); line-height: 1.9; font-size: 14px; font-family: 'Segoe UI', Arial, sans-serif; }
.wa-btn { display: flex; align-items: center; gap: 12px; background: #25d366; color: #fff; padding: 14px 26px; border-radius: 3px; text-decoration: none; font-weight: 700; font-size: 15px; margin-top: 20px; transition: background .2s, transform .2s; width: fit-content; font-family: 'Segoe UI', Arial, sans-serif; }
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.wa-btn svg { width: 22px; height: 22px; fill: #fff; }
.contact-form-wrap h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 20px; font-family: Georgia, serif; }
.contact-form-wrap .form-grid { grid-template-columns: 1fr; font-family: 'Segoe UI', Arial, sans-serif; }
.contact-form-wrap .form-group label { color: var(--text-mid); }
.contact-form-wrap .form-group input,
.contact-form-wrap textarea { background: var(--cream-mid); border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: 3px; font-size: 14px; outline: none; font-family: 'Segoe UI', Arial, sans-serif; width: 100%; }
.contact-form-wrap .form-group input:focus, .contact-form-wrap textarea:focus { border-color: var(--navy); }
.contact-form-wrap textarea { resize: vertical; }
.contact-form-wrap .form-submit button { background: var(--navy); }
.contact-form-wrap .form-submit button:hover { background: var(--navy-mid); }

.legal-content { max-width: 860px; margin: 0 auto; padding: 60px 56px 80px; font-family: 'Segoe UI', Arial, sans-serif; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 10px; font-family: Georgia, serif; border-bottom: 2px solid var(--border); padding-bottom: 8px; }
.legal-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; font-size: 15px; }
.legal-content ul { color: var(--text-mid); padding-left: 22px; line-height: 2; font-size: 15px; margin-bottom: 12px; }
.legal-date { font-size: 13px; color: var(--text-light); margin-bottom: 32px; }

@media (max-width: 900px) {
  .hero h1 { font-size: 34px; }
  .hero-content { padding: 60px 28px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .modules-grid, .photos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 20px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 26px; }
  .modules-grid, .photos-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
