:root {
  --navy: #C0151B;        /* primary red (deep, for headers/footers) */
  --navy-light: #E2231A;  /* brighter red */
  --teal: #E2231A;        /* accent red (CTAs, links) */
  --teal-dark: #A11212;
  --gold: #D4AF37;        /* gold accent kept for CTAs */
  --white: #FBF8F6;
  --charcoal: #2B2320;
  --gray: #6B6360;
  --light-bg: #FBEAEA;
  --nav-bg: #FFFFFF;      /* clear/white nav strip so logo shows */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; }

/* NAV — clear/white strip so the logo is fully visible */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  padding: 0 6%; display: flex; align-items: center; justify-content: space-between;
  height: 90px; box-shadow: 0 2px 16px rgba(192,21,27,0.12);
  border-bottom: 1px solid rgba(192,21,27,0.1);
}
.nav-logo img { height: 72px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--charcoal); text-decoration: none; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: white !important; padding: 0.55rem 1.5rem !important; border-radius: 50px; font-weight: 700 !important; transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(226,35,26,0.4); color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--teal); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 90px; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 1.5rem 6%; gap: 1.2rem; z-index: 999; backdrop-filter: blur(10px); box-shadow: 0 6px 16px rgba(192,21,27,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--charcoal); text-decoration: none; font-size: 1rem; font-weight: 600; padding: 0.5rem 0; border-bottom: 1px solid rgba(192,21,27,0.08); }

/* PAGE HERO (inner pages) */
.page-hero { padding: 164px 6% 80px; background: linear-gradient(135deg, var(--navy) 0%, #6b0c0c 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 60% 50%, rgba(212,175,55,0.1) 0%, transparent 70%); }
.page-hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.35); color: var(--gold); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; position: relative; }
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white; line-height: 1.15; position: relative; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 1.2rem auto 0; line-height: 1.8; position: relative; }

/* REUSABLE */
.section-badge { display: inline-block; background: var(--light-bg); color: var(--teal-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 4px; margin-bottom: 0.8rem; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-title span { color: var(--teal); }
.section-sub { color: var(--gray); font-size: 1rem; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-title { max-width: 580px; margin: 0.5rem auto 0.8rem; }
.section-header .section-sub { max-width: 520px; margin: 0 auto; }

.btn-primary { background: var(--gold); color: var(--navy); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: all 0.3s; box-shadow: 0 4px 20px rgba(212,175,55,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal); padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-3px); }
.btn-white { background: white; color: var(--navy); padding: 1rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-block; transition: all 0.3s; box-shadow: 0 6px 30px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); padding: 80px 6%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-band h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 0.8rem; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2.2rem; position: relative; }

/* FOOTER */
footer { background: #4A0808; padding: 60px 6% 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; color: white; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* CONTACT FORM (shared) */
.contact-form { background: var(--navy); border-radius: 20px; padding: 2.5rem; }
.contact-form h3 { font-family: 'Montserrat', sans-serif; color: white; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: white; padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 1rem; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.3s; margin-top: 0.5rem; }
.btn-submit:hover { background: #c19d2e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.35); }

/* TRUST BAND */
.trust-band { background: var(--navy); padding: 1.4rem 6%; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* MOBILE */
@media(max-width:960px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media(max-width:768px) { .nav-links { display: none; } .hamburger { display: flex; } .form-row { grid-template-columns: 1fr; } .trust-divider { display: none; } }
@media(max-width:600px) { .footer-top { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; } .footer-bottom { flex-direction: column; text-align: center; } }
