/*
Theme Name: Trust Insurance
Author: The Sales Knob
Description: Custom WordPress theme for Trust Insurance - a life, health & income protection advisory brand. Includes a sticky header with dropdown navigation, animated hero slider, service branches, testimonial, partner logo strip, CTA band, and a contact section, all built with a navy/gold design system.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: trust-insurance
Tags: custom-menu, featured-images, threaded-comments, translation-ready
*/
/* 🔥 FIX: bottom nav ko cut hone se bachao */
body {
  overflow-x: hidden;
  overflow-y: auto;
}

/* hero ka overflow fix */
.hero-slider {
  overflow: visible !important;
}
/* ensure nav always visible */
.mobile-bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  z-index: 999999 !important;
}
:root{
  --navy-deep:#1B3350; --navy-mid:#24476B; --slate-blue:#4E7AA7; --sky-mist:#EAF1F6;
  --off-white:#FBFAF7; --gold:#C99A45; --gold-soft:#E4C888; --ink:#1A222C; --ink-soft:#52606D;
  --font-display:'Fraunces', serif; --font-body:'Work Sans', sans-serif;
  --radius:6px; --shadow-card:0 18px 40px -20px rgba(27,51,80,0.35); --wrap:1180px;
}
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--font-body); color:var(--ink); background:var(--off-white); -webkit-font-smoothing:antialiased; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }
h1,h2,h3{ font-family:var(--font-display); font-weight:600; line-height:1.12; margin:0; color:var(--navy-deep); }
p{ margin:0; line-height:1.65; color:var(--ink-soft); }
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 32px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } *{ animation-duration:.001ms !important; transition-duration:.001ms !important; } }

.screen-reader-text{ position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); }

.btn{ display:inline-flex; align-items:center; justify-content:center; padding:12px 24px; border-radius:999px; font-weight:600; font-size:.92rem; border:1.5px solid transparent; transition:all .2s ease; white-space:nowrap; cursor:pointer; }
.btn-lg{ padding:15px 30px; font-size:1rem; }
.btn-solid{ background:var(--gold); color:var(--navy-deep); }
.btn-solid:hover{ background:var(--gold-soft); transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--navy-deep); border-color:var(--navy-deep); }
.btn-ghost:hover{ background:var(--navy-deep); color:#fff; }
.btn-outline{ background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-outline:hover{ border-color:#fff; background:rgba(255,255,255,.1); }

.eyebrow{ text-transform:uppercase; letter-spacing:.14em; font-size:.76rem; font-weight:600; color:var(--slate-blue); margin:0 0 14px; }
.eyebrow-light{ color:var(--gold-soft); }
.text-link{ font-weight:600; color:var(--navy-deep);  padding-bottom:2px; }

/* ============ HEADER / NAV ============ */
.site-header{ position:sticky; top:0; z-index:100; background:var(--off-white); border-bottom:1px solid rgba(27,51,80,.08); }
.header-inner{ display:flex; align-items:center; gap:24px; padding:14px 32px; }
.brand{ display:flex; align-items:center; margin-right:auto; }
.brand img{ height:36px; width:auto; }
.brand-text{ font-family:var(--font-display); font-weight:600; font-size:1.2rem; color:var(--navy-deep); }

.main-nav .menu{ display:flex; align-items:center; gap:28px; }
.main-nav .menu > li.menu-item{ position:relative; }
.main-nav a{
  font-size:.92rem; font-weight:600; color:var(--ink); background:none; border:none;
  cursor:pointer; display:flex; align-items:center; gap:6px; padding:12px 14px; border-radius:8px; white-space:nowrap;
}
.main-nav a:hover{ color:var(--slate-blue); }
.main-nav .menu-item.current-menu-item > a,
.main-nav .menu-item.current_page_item > a{ color:var(--navy-deep); position:relative; }
.main-nav .menu-item.current-menu-item > a::after,
.main-nav .menu-item.current_page_item > a::after{
  content:''; position:absolute; left:14px; right:14px; bottom:6px; height:2px; background:var(--gold);
}

.menu-item-has-children > a::after{
  content:''; width:8px; height:8px; margin-left:2px; border-right:1.6px solid currentColor; border-bottom:1.6px solid currentColor;
  transform:rotate(45deg); transition:transform .2s ease; position:static;
}
.menu-item-has-children.open > a::after{ transform:rotate(-135deg); }

.sub-menu{
  list-style:none; margin:0; padding:10px;
  position:absolute; top:calc(100% + 14px); right:0; left:auto; transform:translateY(8px);
  background:#fff; border-radius:14px;
  box-shadow:var(--shadow-card); width:240px; max-width:calc(100vw - 40px); border:1px solid rgba(27,51,80,.08);
  opacity:0; visibility:hidden; transition:opacity .2s ease, transform .2s ease; z-index:50;
  display:flex; flex-direction:column; gap:2px;
}
.sub-menu::before{
  content:''; position:absolute; top:-6px; right:24px; transform:rotate(45deg);
  width:12px; height:12px; background:#fff; border-left:1px solid rgba(27,51,80,.08); border-top:1px solid rgba(27,51,80,.08);
}
.menu-item-has-children.open .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.sub-menu li a{ display:flex; align-items:center; padding:10px 12px; border-radius:9px; font-size:.86rem; font-weight:600; color:var(--ink); }
.sub-menu li a:hover{ background:var(--sky-mist); color:var(--slate-blue); }

.header-cta{ display:flex; gap:12px; flex-shrink:0; }
.nav-toggle{ display:none; width:38px; height:38px; align-items:center; justify-content:center; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; }
.nav-toggle span{ width:22px; height:2px; background:var(--navy-deep); border-radius:2px; transition:all .25s ease; }
.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:980px){
  .main-nav{
    display:none; position:absolute; top:100%; left:0; right:0; background:var(--off-white);
    border-top:1px solid rgba(27,51,80,.08); box-shadow:var(--shadow-card); max-height:calc(100vh - 66px); overflow-y:auto;
  }
  .site-header.nav-open .main-nav{ display:block; }
  .main-nav .menu{ flex-direction:column; align-items:stretch; gap:0; padding:10px 20px 20px; }
  .main-nav .menu > li.menu-item{ width:100%; }
  .main-nav a{ width:100%; padding:13px 6px; border-radius:0; border-bottom:1px solid rgba(27,51,80,.06); justify-content:space-between; }
  .sub-menu{
    position:static; box-shadow:none; border:none; opacity:1; visibility:visible; transform:none;
    width:auto; max-width:none;
    max-height:0; overflow:hidden; padding:0; transition:max-height .3s ease;
  }
  .sub-menu::before{ display:none; }
  .menu-item-has-children.open .sub-menu{ max-height:520px; padding:8px 0 14px; }
  .sub-menu li a{ padding:10px 6px; }
  .header-cta{ display:none; }
  .site-header.nav-open .header-cta{ display:flex; flex-direction:column; gap:10px; padding:16px 20px 22px; }
  .nav-toggle{ display:inline-flex; }
}

/* ============ HERO SLIDER ============ */
.hero-slider{ position:relative; overflow:hidden; background:var(--navy-deep); }
.slides{ position:relative; height:min(640px, 88vh); min-height:460px; }
.slide{
  position:absolute; inset:0; opacity:0; visibility:hidden; transition:opacity .7s ease;
  background-size:cover; background-position:center;
}
.slide::before{ content:''; position:absolute; inset:0; background:linear-gradient(100deg, rgba(20,40,64,.92) 0%, rgba(20,40,64,.68) 45%, rgba(20,40,64,.3) 100%); }
.slide.is-active{ opacity:1; visibility:visible; z-index:1; }
.slide-inner{ position:relative; z-index:2; height:100%; display:flex; align-items:center; }
.slide-content{ max-width:600px; }
.slide-content .eyebrow{ color:var(--gold-soft); }
.slide-content h1{ color:#fff; font-size:clamp(2.1rem, 4vw, 3.3rem); margin-bottom:18px; }
.slide-content p{ color:rgba(255,255,255,.85); font-size:1.05rem; max-width:500px; margin-bottom:28px; }
.slide-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.slider-arrows{ position:absolute; z-index:3; top:50%; left:0; right:0; transform:translateY(-50%); display:flex; justify-content:space-between; padding:0 24px; pointer-events:none; }
.slider-arrow{
  pointer-events:all; width:44px; height:44px; border-radius:50%; border:1.5px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.08); color:#fff; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s ease;
}
.slider-arrow:hover{ background:rgba(255,255,255,.2); border-color:#fff; }

.slider-dots{ position:absolute; z-index:3; bottom:26px; left:0; right:0; display:flex; justify-content:center; gap:10px; }
.slider-dot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.4); border:none; cursor:pointer; padding:0; transition:all .2s ease; }
.slider-dot.is-active{ background:var(--gold); width:26px; border-radius:5px; }

.hero-watermark{ position:absolute; right:-30px; bottom:70px; width:240px; opacity:.1; pointer-events:none; z-index:2; }
.hero-trust{ background:var(--navy-mid); }
.hero-trust ul{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px 32px; padding:18px 0; }
.hero-trust li{ color:rgba(255,255,255,.8); font-size:.84rem; font-weight:500; position:relative; padding-left:20px; }
.hero-trust li::before{ content:'✓'; position:absolute; left:0; color:var(--gold-soft); font-weight:700; }

@media (max-width:640px){
  .slides{ height:560px; }
  .slider-arrows{ display:none; }
}

/* ============ INTRO ============ */
.intro{ padding:100px 0; }
.intro-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:start; }
.intro-copy h2{ font-size:clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom:20px; }
.intro-copy p{ margin-bottom:22px; font-size:1.02rem; }
.check-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; margin:8px 0 26px; }
.check-list li{ font-weight:600; color:var(--navy-deep); font-size:.94rem; padding-left:24px; position:relative; }
.check-list li::before{ content:''; position:absolute; left:0; top:5px; width:14px; height:14px; border-radius:50%; background:var(--sky-mist); border:1.5px solid var(--slate-blue); }
.intro-panel{ position:sticky; top:110px; }
.panel-card{ background:var(--navy-deep); border-radius:14px; padding:44px 36px; box-shadow:var(--shadow-card); }
.panel-kicker{ color:var(--gold-soft); text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; font-weight:700; margin-bottom:10px; }
.panel-line{ color:#fff; font-family:var(--font-display); font-size:1.3rem; line-height:1.4; }
.panel-divider{ height:1px; background:rgba(255,255,255,.16); margin:28px 0; }

/* ============ BRANCHES ============ */
.branches{ background:var(--navy-deep); padding:100px 0; }
.section-head{ max-width:600px; margin-bottom:56px; }
.section-head h2{ color:#c99a45; font-size:clamp(1.8rem, 3vw, 2.5rem); }
.branch-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
.branch-card{ background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:12px; padding:32px 28px; transition:all .25s ease; }
.branch-card:hover{ background:rgba(255,255,255,.08); border-color:var(--gold); transform:translateY(-4px); }
.branch-mark{ display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-soft); border:1px solid rgba(230,197,136,.4); border-radius:999px; padding:4px 12px; margin-bottom:18px; }
.branch-card h3{ color:#fff; font-size:1.2rem; margin-bottom:10px; }
.branch-card p{ color:rgba(255,255,255,.68); font-size:.92rem; }

/* ============ TESTIMONIAL ============ */
/* .testimonial{ padding:100px 0; background:var(--sky-mist); }
.testimonial-grid{ display:grid; grid-template-columns:1.3fr .7fr; gap:70px; align-items:center; }
.testimonial-author{ display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.testimonial-author img{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.testimonial-copy blockquote{ font-family:var(--font-display); font-size:1.5rem; line-height:1.5; color:var(--navy-deep); margin:0 0 20px; font-weight:500; font-style:italic; }
.testimonial-name{ font-weight:600; color:var(--slate-blue); }
.testimonial-name small{ display:block; font-weight:500; color:var(--ink-soft); }
.testimonial-stats{ display:flex; flex-direction:column; gap:28px; }
.stat span{ display:block; font-family:var(--font-display); font-size:2.4rem; color:var(--navy-deep); font-weight:600; }
.stat p{ font-size:.88rem; } */
.testimonial-section{ padding:100px 0; background:#f4f8fc; } .testimonial-grid{ max-width:1200px; margin:0 auto; padding:0 20px; display:grid; grid-template-columns:2fr 1fr; gap:70px; align-items:center; } .testimonial-slider{ width:100%; } .testimonial-slider .swiper{ overflow:hidden; border-radius:24px; } .testimonial-slider video, .testimonial-slider img{ width:100%; height:500px; object-fit:cover; border-radius:24px; display:block; } .slide-title{ margin-top:20px; font-size:24px; line-height:1.4; font-weight:600; color:#1f3b5b; } .testimonial-stats{ display:flex; flex-direction:column; justify-content:center; gap:40px; } .stat-item h2{ font-size:58px; font-weight:700; color:#1f3b5b; line-height:1; margin:0; } .stat-item p{ margin-top:8px; color:#6b7a90; font-size:16px; } .swiper-pagination{ position:relative !important; margin-top:25px; } .swiper-pagination-bullet{ width:10px; height:10px; } @media(max-width:991px){ .testimonial-grid{ grid-template-columns:1fr; gap:50px; } .testimonial-slider video, .testimonial-slider img{ height:350px; } .testimonial-stats{ flex-direction:row; flex-wrap:wrap; gap:25px; } .stat-item{ flex:1 1 150px; } .stat-item h2{ font-size:42px; } .slide-title{ font-size:20px; } }
.testimonialSwiper{overflow:hidden;}.swiper-wrapper{display:flex;}.swiper-slide{flex-shrink:0;width:100%;}
/* ============ PARTNERS / LOGO SLIDER ============ */
.partners{ padding:70px 0; }
.partners-head{ margin-bottom:34px; text-align:center; }
.partners-head h4{ text-transform:uppercase; letter-spacing:.12em; font-size:.78rem; font-weight:700; color:var(--ink-soft); margin:0; }
.logo-track-wrap{
  overflow:hidden; width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track{ display:flex; align-items:center; gap:64px; width:max-content; animation:logo-scroll 26s linear infinite; }
.partners:hover .logo-track{ animation-play-state:paused; }
.logo-track img{ height:38px; width:auto; opacity:.7;  transition:all .2s ease; flex-shrink:0; }
.logo-track img:hover{ opacity:1; filter:grayscale(0%); }
@keyframes logo-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ============ CTA ============ */
.cta-band{ background:var(--gold); padding:64px 0; }
.cta-band-inner{ display:flex; justify-content:space-between; align-items:center; gap:2f4px; flex-wrap:wrap; }
.cta-band h2{ color:var(--navy-deep); font-size:clamp(1.5rem, 2.6vw, 2rem); }
.cta-band .eyebrow-light{ color:var(--navy-deep); opacity:.7; }
.cta-band .btn-solid{ background:var(--navy-deep); color:#fff; }
.cta-band .btn-solid:hover{ background:#0f2237; }

/* ============ CONTACT FORM ============ */
.contact-section{ background:#51799d; padding:96px 0; position:relative; overflow:hidden; }
.contact-section::before{
  content:''; position:absolute; top:-120px; right:-120px; width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,154,69,.18), transparent 70%);
}
.contact-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1fr 1.15fr; gap:56px; align-items:start; }
.contact-copy h2{ color:#fff; font-size:clamp(1.8rem, 3vw, 2.4rem); margin-bottom:16px; }
.contact-copy p{ color:rgba(255,255,255,.72); max-width:420px; margin-bottom:28px; }
.contact-points{ display:flex; flex-direction:column; gap:16px; }
.contact-points li{ display:flex; align-items:flex-start; gap:12px; color:rgba(255,255,255,.85); font-size:.95rem; }
.contact-points .cp-dot{ flex-shrink:0; width:22px; height:22px; border-radius:50%; background:rgba(201,154,69,.18); color:var(--gold-soft); display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:700; margin-top:1px; }
.contact-card{ background:var(--off-white); border-radius:16px; padding:40px; box-shadow:var(--shadow-card); } .contact-card h3{ font-size:1.3rem; margin-bottom:6px; } .contact-card > p{ margin-bottom:24px; font-size:.92rem; } .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; } .form-field{ margin-bottom:20px; display:flex; flex-direction:column; } .form-field label{ font-size:.82rem; font-weight:600; color:var(--navy-deep); margin-bottom:8px; } .form-field input, .form-field select, .form-field textarea{ width:100%; font-family:inherit; font-size:.92rem; color:var(--ink); padding:12px 14px; border-radius:8px; border:1.5px solid rgba(27,51,80,.15); background:#fff; outline:none; transition:border-color .2s ease; box-sizing:border-box; } .form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--slate-blue); } .form-field textarea{ resize:vertical; min-height:110px; } .form-consent{ margin:20px 0; } .form-consent .wpcf7-list-item{ margin:0 !important; display:block; } .form-consent .wpcf7-list-item label{ display:flex !important; align-items:flex-start; gap:10px; font-size:.8rem; color:var(--ink-soft); font-weight:400; line-height:1.6; cursor:pointer; } .form-consent input[type="checkbox"]{ width:18px; height:18px; margin-top:2px; flex-shrink:0; } .contact-card .btn, .wpcf7-submit{ width:100%; } .form-note{  font-size:.78rem; color:var(--ink-soft); text-align:center; } @media (max-width:768px){ .form-row{ grid-template-columns:1fr; gap:16px; } .contact-card{ padding:24px; } }

/* ============ FOOTER ============ */
.site-footer{ background:var(--navy-deep); padding:76px 0 0; position:relative; overflow:hidden; }
.footer-watermark{ position:absolute; right:-20px; bottom:-20px; width:220px; opacity:.06; pointer-events:none; }
.footer-grid{ position:relative; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand-row{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand-row img{ height:100px; width:auto; }
.footer-brand p{ color:rgba(255,255,255,.6); font-size:.88rem; }
.footer-col h4{ color:#fff; font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ color:rgba(255,255,255,.65); font-size:.9rem; }
.footer-col a:hover{ color:var(--gold-soft); }
.footer-contact li{ color:rgba(255,255,255,.65); font-size:.9rem; }
.footer-bottom{ position:relative; display:flex; justify-content:space-between; padding:22px 32px; font-size:.8rem; color:rgba(255,255,255,.5); flex-wrap:wrap; gap:10px; }
.footer-menu{ display:flex; gap:16px; flex-wrap:wrap; }
.footer-menu a:hover{ color:var(--gold-soft); }

/* ============ SCROLL REVEAL (progressive enhancement) ============ */
.js-anim .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.js-anim .reveal.in-view{ opacity:1; transform:translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width:640px){
  .header-inner{ padding:12px 20px; }
  .wrap{ padding:0 20px; }
  .intro-grid, .testimonial-grid{ grid-template-columns:1fr; }
  .intro-panel{ position:static; }
  .branch-grid{ grid-template-columns:1fr; }
  .check-list{ grid-template-columns:1fr; }
  .cta-band-inner{ flex-direction:column; align-items:flex-start; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ padding:22px 20px; }
  .contact-grid{ grid-template-columns:1fr; gap:36px; }
  .contact-card{ padding:28px; }
  .form-row{ grid-template-columns:1fr; }
}
@media (min-width:641px) and (max-width:980px){
  .intro-grid, .testimonial-grid{ grid-template-columns:1fr; }
  .intro-panel{ position:static; }
  .branch-grid{ grid-template-columns:repeat(2, 1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
}

/* ============ WP core alignment helpers ============ */
.alignwide{ max-width:calc(var(--wrap) + 200px); margin-left:auto; margin-right:auto; }
.alignfull{ max-width:none; }

/* ========================================= PAGE HERO ========================================= */ .page-hero{ background:var(--navy-deep); padding:84px 0 64px; position:relative; overflow:hidden; } .page-hero::before{ content:''; position:absolute; top:-130px; right:-130px; width:380px; height:380px; border-radius:50%; background:radial-gradient(circle, rgba(201,154,69,.18), transparent 70%); } .page-hero .hero-watermark{ position:absolute; right:-30px; bottom:-30px; width:220px; opacity:.08; pointer-events:none; } .page-hero .wrap{ position:relative; z-index:2; } .page-hero h1{ color:#fff; font-size:clamp(2.2rem,4vw,3.2rem); max-width:680px; margin-bottom:16px; line-height:1.2; } .page-hero .lede{ color:rgba(255,255,255,.78); font-size:1.05rem; max-width:560px; line-height:1.7; } /* ========================================= CONTACT CHANNELS ========================================= */ .channels{ padding:90px 0; background:#fff; } .channels .section-head{ max-width:650px; margin:0 auto 50px; text-align:center; } .channels h2{ font-size:clamp(1.8rem,2.8vw,2.4rem); } .channel-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; } .channel-card{ background:#fff; border:1px solid rgba(27,51,80,.08); border-radius:14px; padding:35px 28px; transition:.3s ease; height:100%; } .channel-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); border-color:rgba(201,154,69,.45); } .channel-icon{ width:50px; height:50px; border-radius:12px; background:var(--sky-mist); color:var(--slate-blue); display:flex; align-items:center; justify-content:center; margin-bottom:20px; } .channel-card h3{ margin-bottom:10px; font-size:1.2rem; } .channel-card p{ font-size:15px; line-height:1.7; margin-bottom:10px; } .channel-card .channel-strong{ color:var(--navy-deep); font-weight:700; } .channel-card .text-link{ display:inline-block; margin-top:12px; }
.channel-icon img { width: 33px; height: 30px; }
/* ========================================= TABLET ========================================= */ @media (max-width:991px){ .page-hero{ padding:70px 0 55px; } .page-hero h1{ max-width:100%; } .page-hero .lede{ max-width:100%; } .page-hero .hero-watermark{ width:170px; } .channels{ padding:70px 0; } .channel-grid{ grid-template-columns:repeat(2,1fr); gap:20px; } .channel-card{ padding:28px 22px; } } /* ========================================= MOBILE ========================================= */ @media (max-width:767px){ .page-hero{ padding:60px 0 45px; text-align:center; } .page-hero h1{ font-size:2rem; max-width:100%; } .page-hero .lede{ font-size:16px; max-width:100%; margin:0 auto; } .page-hero .hero-watermark{ width:130px; right:-15px; bottom:-15px; } .channels{ padding:60px 0; } .channels .section-head{ margin-bottom:35px; } .channel-grid{ grid-template-columns:1fr; gap:18px; } .channel-card{ padding:24px 20px; text-align:center; } .channel-icon{ margin:0 auto 18px; } .channel-card h3{ font-size:1.1rem; } .channel-card p{ font-size:15px; } } 
/* ========================================= SMALL MOBILE ========================================= */ @media (max-width:480px){ .page-hero{ padding:50px 0 40px; } .page-hero h1{ font-size:1.7rem; } .page-hero .lede{ font-size:14px; } .page-hero .hero-watermark{ width:100px; } .channels{ padding:45px 0; } .channel-grid{ gap:15px; } .channel-card{ padding:20px 18px; border-radius:10px; } .channel-icon{ width:42px; height:42px; margin-bottom:15px; } .channel-card h3{ font-size:1rem; } .channel-card p{ font-size:14px; } } /* ========================================= EXTRA SMALL DEVICES ========================================= */ @media (max-width:360px){ .page-hero h1{ font-size:1.5rem; } .page-hero .lede{ font-size:13px; } .channel-card{ padding:18px 15px; } .channel-card p{ font-size:13px; } .channel-icon{ width:38px; height:38px; } }
/* ============ THANK YOU PAGE ============ */
.thanks{ background:#51799d; padding:110px 0 96px; position:relative; overflow:hidden; text-align:center; }
.thanks::before{
  content:''; position:absolute; top:-140px; right:-140px; width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,154,69,.18), transparent 70%);
}
.thanks .hero-watermark{ position:absolute; left:-40px; bottom:-40px; width:240px; opacity:.07; pointer-events:none; }
.thanks .wrap{ position:relative; z-index:1; }
.thanks-check{
  width:78px; height:78px; border-radius:50%; margin:0 auto 28px;
  background:rgba(201,154,69,.14); border:2px solid var(--gold); color:var(--gold-soft);
  display:flex; align-items:center; justify-content:center;
}
.thanks h1{ color:#fff; font-size:clamp(2rem, 3.6vw, 2.9rem); margin-bottom:16px; }
.thanks .lede{ color:rgba(255,255,255,.78); font-size:1.05rem; max-width:540px; margin:0 auto 36px; }
.thanks-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.thanks-note{ margin-top:26px; font-size:.88rem; color:rgba(255,255,255,.6); }
.thanks-note strong{ color:var(--gold-soft); font-weight:600; }
@media (max-width:640px){
  .thanks{ padding:84px 0 72px; }
}
/* ============ 404 PAGE ============ */
.notfound{background:#51799d;padding:110px 0 104px;position:relative;overflow:hidden;text-align:center}.notfound::before{content:'';position:absolute;top:-140px;left:-140px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(201,154,69,.15),transparent 70%)}.notfound .hero-watermark{position:absolute;left:50%;top:50%;transform:translate(-50%,-52%);width:min(460px,80vw);opacity:.05;pointer-events:none}.notfound .wrap{position:relative;z-index:1}.nf-code{font-family:var(--font-display);font-weight:700;line-height:1;font-size:clamp(6.5rem,17vw,11.5rem);color:#fff;letter-spacing:.02em}.nf-code span{color:var(--gold);opacity:.55}.notfound h1{color:#fff;font-size:clamp(1.8rem,3vw,2.5rem);margin:6px 0 16px}.notfound .lede{color:rgba(255,255,255,.75);max-width:480px;margin:0 auto 36px;font-size:1.02rem}.nf-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}@media (max-width:640px){.notfound{padding:80px 0 76px}}



/* ============ ABOUT PAGE ============ */
.story{ padding:96px 0; }
.story-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:start; }
.story-copy h2{ font-size:clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom:20px; }
.story-copy p{ margin-bottom:22px; font-size:1.02rem; }
.story-panel{ position:sticky; top:110px; }
.panel-card{ background:var(--navy-deep); border-radius:14px; padding:44px 36px; box-shadow:var(--shadow-card); }
.panel-kicker{ color:var(--gold-soft); text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; font-weight:700; margin-bottom:10px; }
.panel-line{ color:#fff; font-family:var(--font-display); font-size:1.3rem; line-height:1.4; }
.panel-divider{ height:1px; background:rgba(255,255,255,.16); margin:28px 0; }

.roots{ background:var(--sky-mist); padding:96px 0; }
.roots .section-head{ max-width:600px; margin-bottom:54px; }
.roots h2{ font-size:clamp(1.8rem, 3vw, 2.4rem); }
.roots-line{ position:relative; padding-left:28px; border-left:2px solid rgba(27,51,80,.18); display:flex; flex-direction:column; gap:36px; max-width:660px; }
.root-item{ position:relative; }
.root-item::before{
  content:''; position:absolute; left:-36px; top:5px; width:12px; height:12px; border-radius:50%;
  background:var(--gold); box-shadow:0 0 0 4px var(--sky-mist), 0 0 0 6px rgba(201,154,69,.35);
}
.root-year{ display:block; font-family:var(--font-display); font-weight:600; font-size:1.1rem; color:var(--navy-deep); margin-bottom:5px; }
.root-item p{ font-size:.95rem; }

.values{ background:var(--navy-deep); padding:100px 0; }
.values .section-head{ max-width:600px; margin-bottom:56px; }
.values h2{ color:#fff; font-size:clamp(1.8rem, 3vw, 2.5rem); }
.value-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
.value-card{ background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:12px; padding:32px 28px; transition:all .25s ease; }
.value-card:hover{ background:rgba(255,255,255,.08); border-color:var(--gold); transform:translateY(-4px); }
.value-mark{ display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-soft); border:1px solid rgba(230,197,136,.4); border-radius:999px; padding:4px 12px; margin-bottom:18px; }
.value-card h3{ color:#fff; font-size:1.2rem; margin-bottom:10px; }
.value-card p{ color:rgba(255,255,255,.68); font-size:.92rem; }

.team{ padding:100px 0; }
.team .section-head{ max-width:600px; margin-bottom:52px; }
.team h2{ font-size:clamp(1.8rem, 3vw, 2.4rem); }
.team-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.team-card{ background:#fff; border:1px solid rgba(27,51,80,.08); border-radius:12px; overflow:hidden; transition:all .25s ease; }
.team-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); }
.team-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; }
.team-meta{ padding:18px 20px 24px; }
.team-meta h3{ font-size:1.05rem; margin-bottom:3px; }
.team-role{ display:block; font-size:.76rem; font-weight:700; color:var(--slate-blue); text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; }
.team-meta p{ font-size:.88rem; }

.stories{ padding:100px 0; background:var(--sky-mist); }
.stories-grid{ display:grid; grid-template-columns:1.3fr .7fr; gap:70px; align-items:center; }
.stories blockquote{ font-family:var(--font-display); font-size:1.5rem; line-height:1.5; color:var(--navy-deep); margin:0 0 20px; font-weight:500; font-style:italic; }
.stories-author{ display:flex; align-items:center; gap:14px; margin-bottom:8px; }
.stories-author img{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.stories-name{ font-weight:600; color:var(--slate-blue); }
.stories-name small{ display:block; font-weight:500; color:var(--ink-soft); }
.stories-stats{ display:flex; flex-direction:column; gap:28px; }
.stat span{ display:block; font-family:var(--font-display); font-size:2.4rem; color:var(--navy-deep); font-weight:600; }
.stat p{ font-size:.88rem; }

@media (max-width:980px){
  .story-grid, .stories-grid{ grid-template-columns:1fr; gap:44px; }
  .story-panel{ position:static; }
  .value-grid{ grid-template-columns:repeat(2, 1fr); }
  .team-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:640px){
  .story, .roots, .values, .team, .stories{ padding:72px 0; }
  .value-grid, .team-grid{ grid-template-columns:1fr; }
}

/* ============ MOBILE BOTTOM NAV ============ */
.mobile-bottom-nav{ display:none; }
@media (max-width:640px){
  body{ padding-bottom:64px; }

  .mobile-bottom-nav{
    display:flex !important; position:fixed !important; left:0 !important; right:0 !important;
    bottom:0 !important; top:auto !important; transform:none !important; z-index:9999 !important;
    width:100% !important; margin:0 !important; visibility:visible !important; opacity:1 !important;
    background:#fff; border-top:1px solid rgba(27,51,80,.1);
    box-shadow:0 -10px 26px -14px rgba(27,51,80,.35);
    padding:6px 2px calc(6px + env(safe-area-inset-bottom));
  }
  .mbn-item{
    flex:1 1 0 !important; display:flex !important; flex-direction:column; align-items:center; justify-content:center;
    gap:3px; padding:6px 2px 4px; color:var(--ink-soft); font-size:.64rem; font-weight:600;
    letter-spacing:.01em; border-radius:10px; transition:color .15s ease;
    min-width:0; flex-shrink:0 !important; visibility:visible !important; opacity:1 !important;
  }
  .mbn-item svg{ width:21px; height:21px; stroke:currentColor; }
  .mbn-item.active{ color:var(--navy-deep); }
  .mbn-item.active .mbn-icon-wrap{ background:var(--sky-mist); }
  .mbn-icon-wrap{ display:flex; align-items:center; justify-content:center; width:34px; height:26px; border-radius:8px; }
  .mbn-item.mbn-cta .mbn-icon-wrap{ background:var(--gold); color:var(--navy-deep); }
  .mbn-item.mbn-cta{ color:var(--navy-deep); }

}

@keyframes mbnCallPulse{
  0%{ box-shadow:0 0 0 0 rgba(201,154,69,.55), 0 12px 26px -10px rgba(27,51,80,.5); }
  70%{ box-shadow:0 0 0 13px rgba(201,154,69,0), 0 12px 26px -10px rgba(27,51,80,.5); }
  100%{ box-shadow:0 0 0 0 rgba(201,154,69,0), 0 12px 26px -10px rgba(27,51,80,.5); }
}

/* ---------- Service Sub Pages ---------- */
/* ============ 1. PHOTO BANNER ============ */
.media-hero{ position:relative; background:var(--navy-deep); overflow:hidden; }
.media-hero-image{
  position:relative; height:min(480px, 62vh); min-height:320px;
  background-size:cover; background-position:center;
}
.media-hero-image::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(20,40,64,.15) 0%, rgba(20,40,64,.55) 55%, rgba(20,40,64,.92) 100%);
}
.media-hero-title{ position:absolute; inset:0; z-index:2; display:flex; align-items:center; }
.media-hero-title .wrap{ width:100%; display:flex; justify-content:flex-end; }
.media-hero-title h1{
  color:var(--gold-soft); font-style:italic; font-weight:500; text-align:right;
  font-size:clamp(1.8rem, 4vw, 3rem); max-width:420px;
}
.hero-trust{ background:var(--navy-mid); }
.hero-trust ul{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px 32px; padding:18px 0; }
.hero-trust li{ color:rgba(255,255,255,.8); font-size:.84rem; font-weight:500; position:relative; padding-left:20px; }
.hero-trust li::before{ content:'✓'; position:absolute; left:0; color:var(--gold-soft); font-weight:700; }

/* ============ 2. WHY / INTRO SECTION (with image) ============ */
.why{ padding:96px 0; }
.why-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:start; }
.why-image{ border-radius:16px; overflow:hidden; box-shadow:var(--shadow-card); position:sticky; top:110px; }
.why-image img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.why-copy h2{ font-size:clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom:20px; }
.why-copy > p{ margin-bottom:18px; font-size:1.02rem; }
.why-questions{ display:flex; flex-direction:column; gap:14px; margin-bottom:22px; }
.why-questions p{ font-size:1.02rem; color:var(--ink-soft); }
.why-answer{ font-weight:600; color:var(--navy-deep) !important; margin-bottom:22px !important; }
.why-columns{ display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:36px; padding-top:36px; border-top:1px solid rgba(27,51,80,.1); }
.why-columns h3{ font-size:1.05rem; margin-bottom:16px; }
.check-list{ display:flex; flex-direction:column; gap:12px; margin:0; }
.check-list li{ font-weight:600; color:var(--navy-deep); font-size:.94rem; padding-left:24px; position:relative; }
.check-list li::before{ content:''; position:absolute; left:0; top:5px; width:14px; height:14px; border-radius:50%; background:var(--sky-mist); border:1.5px solid var(--slate-blue); }
.why-tip{ background:var(--navy-deep); border-radius:14px; padding:26px 30px; margin-top:32px; }
.why-tip p{ color:rgba(255,255,255,.85); font-size:.92rem; margin:0; }
.why-tip strong{ display:block; color:var(--gold-soft); font-family:var(--font-display); font-size:1.1rem; margin-bottom:6px; }

/* ============ 3. QUOTE BAND ============ */
.quote-band{ background:var(--navy-deep); padding:80px 0; text-align:center; position:relative; overflow:hidden; }
.quote-band::before{
  content:''; position:absolute; top:-140px; left:50%; transform:translateX(-50%); width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,154,69,.16), transparent 70%);
}
.quote-band blockquote{
  position:relative; z-index:1; margin:0 auto; max-width:720px;
  font-family:var(--font-display); font-style:italic; font-weight:500;
  font-size:clamp(1.5rem, 3vw, 2.2rem); color:var(--gold-soft); line-height:1.4;
}

/* ============ 4. CONTACT / FORM SECTION ============ */
.contact-section{ background:#51799d; padding:96px 0; position:relative; overflow:hidden; }
.contact-section::before{
  content:''; position:absolute; top:-120px; right:-120px; width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,154,69,.18), transparent 70%);
}
.contact-grid{ position:relative; z-index:1; display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start; }
.contact-copy h2{ color:#fff; font-size:clamp(1.8rem, 3vw, 2.4rem); margin-bottom:16px; }
.contact-copy > p{ color:rgba(255,255,255,.72); max-width:420px; margin-bottom:24px; }
.contact-image{ border-radius:16px; overflow:hidden; box-shadow:var(--shadow-card); position:relative; }
.contact-image img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; }
.contact-image-caption{
  position:absolute; left:16px; right:16px; bottom:16px; background:rgba(27,51,80,.82);
  backdrop-filter:blur(6px); border-radius:12px; padding:14px 16px;
}
.contact-image-caption p{ color:#fff; font-size:.84rem; margin:0; }
.contact-card{ background:var(--off-white); border-radius:16px; padding:40px; box-shadow:var(--shadow-card); }
.contact-card h3{ font-size:1.3rem; margin-bottom:6px; }
.contact-card > p{ margin-bottom:24px; font-size:.92rem; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field{ margin-bottom:18px; display:flex; flex-direction:column; gap:7px; }
.form-field label{ font-size:.82rem; font-weight:600; color:var(--navy-deep); }
.form-field input, .form-field select, .form-field textarea{
  font-family:inherit; font-size:.92rem; color:var(--ink); padding:12px 14px; border-radius:8px;
  border:1.5px solid rgba(27,51,80,.15); background:#fff; outline:none; transition:border-color .2s ease;
  width:100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--slate-blue); }
.form-field textarea{ resize:vertical; min-height:88px; }
.form-consent{ display:flex; align-items:flex-start; gap:10px; margin-bottom:22px; }
.form-consent input{ margin-top:4px; width:auto; flex-shrink:0; }
.form-consent label{ font-size:.8rem; color:var(--ink-soft); font-weight:400; }
.contact-card .btn{ width:100%; }
.form-note{ margin-top:16px; font-size:.78rem; color:var(--ink-soft); text-align:center; }

/* ==================================================================
   MOBILE RESPONSIVE
   ================================================================== */

/* ---------- Tablet / small laptop (≤ 1024px) ---------- */
@media (max-width:1024px){
  .why-grid{ grid-template-columns:.9fr 1.1fr; gap:44px; }
  .contact-grid{ grid-template-columns:.9fr 1.1fr; gap:40px; }
}

/* ---------- Tablet / large mobile (≤ 900px) ---------- */
@media (max-width:900px){
  .why{ padding:64px 0; }
  .why-grid{ grid-template-columns:1fr; gap:32px; }
  .why-image{ position:static; max-width:420px; margin:0 auto; }
  .why-image img{ aspect-ratio:16/10; }

  .contact-section{ padding:64px 0; }
  .contact-grid{ grid-template-columns:1fr; gap:32px; }
  .contact-image{ max-width:480px; margin:0 auto; }

  .quote-band{ padding:56px 0; }
}

/* ---------- Mobile (≤ 640px) ---------- */
@media (max-width:640px){
  .wrap{ padding-left:20px; padding-right:20px; }

  /* Banner */
  .media-hero-image{ height:min(360px, 55vh); min-height:260px; }
  .media-hero-title .wrap{ justify-content:flex-start; }
  .media-hero-title h1{ text-align:left; max-width:100%; font-size:clamp(1.6rem, 7vw, 2.2rem); }
  .hero-trust ul{ gap:10px 18px; padding:14px 0; justify-content:flex-start; }
  .hero-trust li{ font-size:.78rem; padding-left:18px; }

  /* Why / intro */
  .why{ padding:52px 0; }
  .why-copy h2{ font-size:1.5rem; margin-bottom:16px; }
  .why-copy > p{ font-size:.96rem; margin-bottom:14px; }
  .why-questions{ gap:10px; margin-bottom:18px; }
  .why-questions p{ font-size:.96rem; }
  .why-columns{ grid-template-columns:1fr; gap:26px; margin-top:28px; padding-top:28px; }
  .why-tip{ padding:20px 22px; margin-top:24px; }

  /* Quote band */
  .quote-band{ padding:44px 0; }
  .quote-band blockquote{ font-size:1.35rem; }

  /* Contact / form */
  .contact-section{ padding:52px 0; }
  .contact-copy h2{ font-size:1.5rem; }
  .contact-card{ padding:26px 20px; }
  .contact-card h3{ font-size:1.15rem; }
  .form-row{ grid-template-columns:1fr; gap:0; }
  .contact-image-caption{ left:12px; right:12px; bottom:12px; padding:12px 14px; }
  .contact-image-caption p{ font-size:.8rem; }
}

/* ============ SERVICES PAGE ============ */
.intro-strip{ padding:72px 0 20px; }
.intro-strip .wrap{ max-width:760px; }
.intro-strip h2{ font-size:clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom:16px; }
.intro-strip p{ font-size:1.02rem; }

.services-grid-section{ padding:56px 0 100px; }
.services-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.service-card{
  background:#fff; border:1px solid rgba(27,51,80,.08); border-radius:14px; padding:36px 30px;
  transition:all .25s ease; display:flex; flex-direction:column; gap:16px;
}
.service-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-card); border-color:transparent; }
.service-icon{
  width:52px; height:52px; border-radius:12px; background:var(--sky-mist); color:var(--slate-blue);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600; font-size:1.2rem;
  transition:all .25s ease;
}
.service-card:hover .service-icon{ background:var(--navy-deep); color:var(--gold-soft); }
.service-card h3{ font-size:1.2rem; }
.service-card p{ font-size:.92rem; flex-grow:1; }
.service-card .text-link{ font-size:.9rem; }
.service-card.wide{ grid-column:span 1; }

@media (max-width:980px){
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:640px){
  .services-grid{ grid-template-columns:1fr; }
  .intro-strip{ padding:56px 0 8px; }
  .services-grid-section{ padding:40px 0 72px; }
}
