/* =============================================
   CoverWise — style.css
   Theme: Deep Teal #0D3B38 | Emerald #1A6B5A | Gold #E8A020
   Fonts: Inter + Fraunces
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,400;0,600;0,700;0,900;1,400&display=swap');

:root {
  --teal:        #0D3B38;
  --teal-mid:    #1A6B5A;
  --teal-light:  #2A9D8F;
  --gold:        #E8A020;
  --gold-dark:   #C8861A;
  --gold-light:  #FFF3DC;
  --white:       #FFFFFF;
  --off-white:   #F8FAF9;
  --light-bg:    #EEF5F3;
  --text-muted:  #5A7A74;
  --radius-card: 18px;
  --radius-btn:  50px;
  --shadow:      0 24px 64px rgba(13,59,56,0.12);
  --shadow-card: 0 8px 32px rgba(13,59,56,0.10);
  --transition:  all 0.3s ease;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;color:var(--teal);background:var(--off-white);line-height:1.75;overflow-x:hidden;}
h1,h2,h3,h4,h5{font-family:'Fraunces',serif;line-height:1.15;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;}

/* ===== UTILITIES ===== */
.section-pad{padding:100px 0;}
.section-pad-sm{padding:60px 0;}
.bg-teal-grad{background:linear-gradient(135deg,var(--teal) 0%,var(--teal-mid) 100%);}
.bg-light{background:var(--light-bg);}
.text-gold{color:var(--gold);}

.badge-pill{
  display:inline-block;
  background:rgba(232,160,32,0.14);color:var(--gold-dark);
  border:1px solid rgba(232,160,32,0.35);border-radius:50px;
  padding:6px 18px;font-size:12px;font-weight:700;letter-spacing:0.8px;
  margin-bottom:16px;text-transform:uppercase;
}
.badge-pill.light{background:rgba(232,160,32,0.10);color:var(--gold-dark);border-color:rgba(232,160,32,0.25);}
.section-label{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:12px;}
.gold-line{width:50px;height:4px;background:linear-gradient(90deg,var(--gold),var(--teal-light));border-radius:2px;margin-bottom:20px;}

/* ===== BUTTONS ===== */
.btn-gold{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);
  color:var(--teal);border:none;border-radius:var(--radius-btn);
  padding:14px 34px;font-family:'Inter',sans-serif;font-weight:700;font-size:15px;
  display:inline-block;transition:var(--transition);cursor:pointer;
  box-shadow:0 6px 24px rgba(232,160,32,0.35);
}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 14px 40px rgba(232,160,32,0.50);color:var(--teal);}
.btn-outline-w{
  background:transparent;color:var(--white);border:2px solid rgba(255,255,255,0.55);
  border-radius:var(--radius-btn);padding:12px 30px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:15px;
  display:inline-block;transition:var(--transition);
}
.btn-outline-w:hover{background:var(--white);color:var(--teal);border-color:var(--white);}
.btn-outline-t{
  background:transparent;color:var(--teal);border:2px solid var(--teal);
  border-radius:var(--radius-btn);padding:12px 30px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:15px;
  display:inline-block;transition:var(--transition);
}
.btn-outline-t:hover{background:var(--teal);color:var(--white);}

/* ===== NAVBAR ===== */
.navbar-main{
  background:rgba(255,255,255,0.97);padding:14px 0;
  position:sticky;top:0;z-index:1000;
  border-bottom:1px solid rgba(13,59,56,0.08);
  box-shadow:0 4px 24px rgba(13,59,56,0.07);
}
.navbar-main .navbar-brand{
  font-family:'Fraunces',serif;font-size:21px;font-weight:700;
  color:var(--teal);display:flex;align-items:center;gap:10px;
}
.brand-icon{
  width:38px;height:38px;
  background:linear-gradient(135deg,var(--teal-mid),var(--teal-light));
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:16px;
}
.navbar-main .nav-link{color:rgba(13,59,56,0.78)!important;font-size:14px;font-weight:500;letter-spacing:0.4px;padding:8px 14px!important;transition:var(--transition);}
.navbar-main .nav-link:hover,.navbar-main .nav-link.active{color:var(--gold)!important;}
.navbar-main .dropdown-menu{background:var(--white);border:1px solid rgba(13,59,56,0.1);border-radius:14px;padding:8px;min-width:220px;box-shadow:0 20px 40px rgba(13,59,56,0.12);}
.navbar-main .dropdown-item{color:rgba(13,59,56,0.85);border-radius:8px;padding:10px 14px;font-size:14px;transition:var(--transition);}
.navbar-main .dropdown-item:hover{background:rgba(232,160,32,0.10);color:var(--gold-dark);}
.navbar-main .dropdown-item i{width:20px;margin-right:8px;color:var(--gold);}
.navbar-main .btn-quote{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--teal);border:none;border-radius:var(--radius-btn);
  padding:9px 22px;font-size:14px;font-weight:700;transition:var(--transition);
}
.navbar-main .btn-quote:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,160,32,0.40);}
.navbar-toggler{border:1px solid rgba(13,59,56,0.22);padding:6px 10px;}

/* ===== HERO ===== */
.hero-section{
  min-height:100vh;
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-mid) 55%,var(--teal-light) 100%);
  position:relative;overflow:hidden;display:flex;align-items:center;
}
.hero-section::before{
  content:'';position:absolute;top:-180px;right:-180px;
  width:560px;height:560px;
  background:radial-gradient(circle,rgba(232,160,32,0.22) 0%,transparent 70%);
  border-radius:50%;
}
.hero-section::after{
  content:'';position:absolute;bottom:-120px;left:-120px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(42,157,143,0.25) 0%,transparent 70%);
  border-radius:50%;
}
.hero-grid-lines{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size:60px 60px;pointer-events:none;
}
.hero-left{position:relative;z-index:2;}
.hero-left h1{font-size:clamp(38px,5vw,66px);color:var(--white);font-weight:900;line-height:1.1;margin-bottom:22px;}
.hero-left h1 span{color:var(--gold);}
.hero-left p{color:rgba(255,255,255,0.78);font-size:17px;max-width:460px;margin-bottom:36px;}
.hero-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px;}
.hero-chip{
  background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.88);border-radius:50px;padding:6px 16px;font-size:13px;
  backdrop-filter:blur(6px);
}
.hero-chip i{color:var(--gold);margin-right:5px;}
.hero-right{position:relative;z-index:2;}
.hero-img-wrap{position:relative;border-radius:22px;overflow:hidden;height:500px;box-shadow:0 32px 80px rgba(0,0,0,0.35);}
.hero-img-wrap img{width:100%;height:100%;object-fit:cover;}
.hero-glass-card{
  position:absolute;bottom:30px;left:-30px;
  background:rgba(255,255,255,0.18);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.28);border-radius:16px;
  padding:20px 24px;min-width:250px;
}
.status-dot{width:8px;height:8px;background:#4ade80;border-radius:50%;display:inline-block;margin-right:6px;animation:pulse-dot 1.5s infinite;}
@keyframes pulse-dot{0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,0.4);}50%{box-shadow:0 0 0 6px rgba(74,222,128,0);}}
.card-label{font-size:11px;color:rgba(255,255,255,0.65);text-transform:uppercase;letter-spacing:1px;margin-bottom:4px;}
.card-title-sm{color:var(--white);font-size:15px;font-weight:600;font-family:'Inter',sans-serif;margin-bottom:2px;}
.card-price{color:var(--gold);font-size:22px;font-weight:700;font-family:'Fraunces',serif;}
.card-sub{color:rgba(255,255,255,0.55);font-size:12px;}

/* ===== TRUST BAR ===== */
.trust-bar{background:linear-gradient(90deg,var(--teal) 0%,var(--teal-mid) 100%);padding:18px 0;}
.trust-item{color:rgba(255,255,255,0.90);font-weight:600;font-size:13px;display:flex;align-items:center;gap:8px;}
.trust-item i{color:var(--gold);}
.trust-divider{width:1px;height:28px;background:rgba(255,255,255,0.18);margin:0 8px;}

/* ===== SERVICES LIST ===== */
.service-row{
  display:flex;align-items:center;gap:24px;
  padding:26px 30px;border-radius:var(--radius-card);
  transition:var(--transition);border:1px solid transparent;cursor:pointer;
}
.service-row:nth-child(even){background:var(--light-bg);}
.service-row:hover{
  background:var(--white);border-color:rgba(13,59,56,0.10);
  box-shadow:var(--shadow-card);transform:translateX(6px);
}
.service-num{font-family:'Fraunces',serif;font-size:36px;font-weight:900;color:var(--gold);opacity:0.55;min-width:58px;line-height:1;}
.service-icon-wrap{
  width:52px;height:52px;
  background:linear-gradient(135deg,var(--teal),var(--teal-mid));
  border-radius:12px;display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:21px;flex-shrink:0;
}
.service-row-info{flex:1;}
.service-row-info h4{font-size:17px;margin-bottom:4px;}
.service-row-info p{color:var(--text-muted);font-size:14px;margin:0;}
.service-arrow{color:var(--gold);font-size:19px;transition:var(--transition);}
.service-row:hover .service-arrow{transform:translateX(6px);}

/* ===== HOW IT WORKS ===== */
.steps-wrap{position:relative;display:flex;gap:0;}
.steps-wrap::before{
  content:'';position:absolute;top:34px;
  left:calc(12.5% + 17px);width:calc(75% - 34px);
  height:2px;background:rgba(232,160,32,0.30);z-index:0;
}
.step-item{flex:1;text-align:center;position:relative;z-index:1;}
.step-num{
  width:68px;height:68px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-size:22px;font-weight:700;
  color:var(--teal);margin:0 auto 16px;box-shadow:0 8px 28px rgba(232,160,32,0.40);
}
.step-item h5{color:var(--white);font-size:16px;margin-bottom:8px;}
.step-item p{color:rgba(255,255,255,0.68);font-size:13px;max-width:160px;margin:0 auto;}

/* ===== WHY CHOOSE US ===== */
.why-card{
  background:var(--white);border-radius:var(--radius-card);
  padding:32px 28px;box-shadow:var(--shadow-card);
  border:1px solid rgba(13,59,56,0.07);transition:var(--transition);height:100%;
}
.why-card:hover{transform:translateY(-8px);box-shadow:0 30px 70px rgba(13,59,56,0.14);border-color:var(--gold);}
.why-icon{
  width:56px;height:56px;
  background:linear-gradient(135deg,rgba(232,160,32,0.12),rgba(42,157,143,0.12));
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  color:var(--teal-mid);font-size:23px;margin-bottom:20px;transition:var(--transition);
}
.why-card:hover .why-icon{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:var(--teal);}
.why-card h4{font-size:18px;margin-bottom:10px;}
.why-card p{color:var(--text-muted);font-size:14px;margin:0;}

/* ===== TESTIMONIALS ===== */
.testi-card{
  background:var(--white);border-radius:var(--radius-card);
  padding:34px 28px;box-shadow:var(--shadow-card);
  border:1px solid rgba(13,59,56,0.07);transition:var(--transition);height:100%;
}
.testi-card:hover{transform:rotate(1deg) translateY(-6px);box-shadow:0 30px 60px rgba(13,59,56,0.14);}
.quote-mark{font-family:'Fraunces',serif;font-size:70px;color:var(--gold);line-height:0.6;margin-bottom:20px;display:block;}
.testi-text{color:var(--teal);font-size:15px;line-height:1.7;margin-bottom:22px;}
.testi-author{display:flex;align-items:center;gap:14px;}
.testi-avatar{width:48px;height:48px;border-radius:50%;object-fit:cover;border:2px solid var(--gold);}
.testi-name{font-weight:700;font-size:15px;}
.testi-stars{color:var(--gold);font-size:13px;}

/* ===== STATS ===== */
.stats-section{
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-mid) 60%,var(--teal-light) 100%);
  padding:70px 0;
}
.stat-item{text-align:center;}
.stat-num{font-family:'Fraunces',serif;font-size:clamp(36px,4vw,52px);font-weight:900;color:var(--gold);line-height:1;margin-bottom:8px;display:block;}
.stat-label{color:rgba(255,255,255,0.72);font-size:14px;}
.stat-divider{width:1px;background:rgba(255,255,255,0.15);align-self:stretch;}

/* ===== QUOTE FORM ===== */
.quote-section{position:relative;overflow:hidden;}
.quote-bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--off-white) 0%,var(--light-bg) 100%);}
.quote-form-card{
  background:var(--white);border-radius:22px;
  padding:44px 40px;box-shadow:0 30px 70px rgba(13,59,56,0.14);position:relative;z-index:2;
}
.quote-form-card h3{font-size:26px;margin-bottom:6px;}
.quote-form-card>p{color:var(--text-muted);font-size:14px;margin-bottom:28px;}
.form-label-custom{font-size:13px;font-weight:600;color:var(--teal);margin-bottom:6px;display:block;}
.form-control-custom{
  width:100%;border:1.5px solid rgba(13,59,56,0.14);border-radius:10px;
  padding:12px 16px;font-family:'Inter',sans-serif;font-size:14px;
  color:var(--teal);background:var(--light-bg);transition:var(--transition);outline:none;
}
.form-control-custom:focus{border-color:var(--teal-light);background:var(--white);box-shadow:0 0 0 3px rgba(42,157,143,0.14);}
.form-note{font-size:12px;color:var(--text-muted);margin-top:12px;}

/* ===== FINAL CTA ===== */
.final-cta{position:relative;overflow:hidden;padding:120px 0;text-align:center;}
.final-cta-bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--teal) 0%,var(--teal-mid) 60%,var(--teal-light) 100%);}
.final-cta-bg img{width:100%;height:100%;object-fit:cover;opacity:0.08;mix-blend-mode:luminosity;}
.final-cta h2{font-size:clamp(30px,4vw,50px);color:var(--white);margin-bottom:16px;}
.final-cta p{color:rgba(255,255,255,0.75);font-size:17px;margin-bottom:36px;}

/* ===== FOOTER ===== */
.footer-main{background:linear-gradient(180deg,var(--teal) 0%,#071F1D 100%);padding:80px 0 0;color:rgba(255,255,255,0.72);}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
.footer-brand-name{font-family:'Fraunces',serif;font-size:20px;font-weight:700;color:var(--white);}
.footer-desc{font-size:14px;max-width:260px;margin-bottom:24px;color:rgba(255,255,255,0.62);}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:36px;height:36px;background:rgba(255,255,255,0.10);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.72);font-size:14px;transition:var(--transition);
}
.footer-social a:hover{background:var(--gold);color:var(--teal);}
.footer-heading{color:var(--white);font-family:'Inter',sans-serif;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:20px;}
.footer-links{list-style:none;padding:0;margin:0;}
.footer-links li{margin-bottom:10px;}
.footer-links a{color:rgba(255,255,255,0.62);font-size:14px;transition:var(--transition);}
.footer-links a:hover{color:var(--gold);padding-left:4px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.10);padding:20px 0;margin-top:60px;}
.footer-bottom-text{color:rgba(255,255,255,0.45);font-size:13px;}
.text-gold{color:var(--gold);}

/* ===== PAGE HERO BANNER ===== */
.page-hero{
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-mid) 60%,var(--teal-light) 100%);
  padding:90px 0 80px;position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:60px;
  background:var(--off-white);clip-path:ellipse(55% 100% at 50% 100%);
}
.page-hero h1{color:var(--white);font-size:clamp(30px,4vw,48px);margin-bottom:10px;}
.page-hero .breadcrumb-item{color:rgba(255,255,255,0.62);font-size:14px;}
.page-hero .breadcrumb-item.active{color:var(--gold);}
.page-hero .breadcrumb-item+.breadcrumb-item::before{color:rgba(255,255,255,0.35);}
.page-hero .breadcrumb-item a{color:rgba(255,255,255,0.75);}

/* ===== ABOUT PAGE ===== */
.timeline{position:relative;padding-left:28px;}
.timeline::before{content:'';position:absolute;left:8px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--gold),rgba(232,160,32,0.08));}
.timeline-item{position:relative;margin-bottom:34px;}
.timeline-dot{position:absolute;left:-24px;top:4px;width:14px;height:14px;background:var(--gold);border-radius:50%;border:2px solid var(--white);box-shadow:0 0 0 3px rgba(232,160,32,0.28);}
.timeline-year{color:var(--gold);font-weight:700;font-size:13px;margin-bottom:4px;}
.timeline-item h5{font-size:17px;margin-bottom:6px;}
.timeline-item p{color:var(--text-muted);font-size:14px;margin:0;}

.team-card{background:var(--white);border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card);text-align:center;transition:var(--transition);border:1px solid rgba(13,59,56,0.07);}
.team-card:hover{transform:translateY(-8px);box-shadow:0 30px 70px rgba(13,59,56,0.15);}
.team-img{width:100%;height:240px;object-fit:cover;}
.team-info{padding:22px 20px;}
.team-info h5{font-size:18px;margin-bottom:4px;}
.team-info p{color:var(--gold-dark);font-size:13px;font-weight:600;margin-bottom:12px;}
.team-socials{display:flex;justify-content:center;gap:10px;}
.team-socials a{width:32px;height:32px;background:var(--light-bg);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--teal);font-size:13px;transition:var(--transition);}
.team-socials a:hover{background:var(--gold);color:var(--teal);}

/* ===== INSURANCE NAV PILLS ===== */
.ins-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;}
.ins-nav-pill{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--white);border:1.5px solid rgba(13,59,56,0.12);
  color:var(--teal);border-radius:50px;padding:9px 20px;
  font-size:13px;font-weight:600;transition:var(--transition);
}
.ins-nav-pill:hover,.ins-nav-pill.active{
  background:linear-gradient(135deg,var(--teal),var(--teal-mid));
  color:var(--white);border-color:transparent;
}
.ins-nav-pill i{color:var(--gold);font-size:13px;}
.ins-nav-pill:hover i,.ins-nav-pill.active i{color:var(--gold);}

/* ===== INSURANCE SECTION ROWS ===== */
.ins-section{padding:90px 0;}
.ins-row{border-radius:22px;overflow:hidden;box-shadow:var(--shadow);}
.ins-img-col{min-height:480px;}
.ins-section-img{width:100%;height:100%;object-fit:cover;display:block;}
.ins-content-col{background:var(--white);}
.bg-light .ins-content-col{background:var(--light-bg);}
.ins-content{padding:56px 52px;height:100%;display:flex;flex-direction:column;justify-content:center;}
.ins-icon-lg{
  width:64px;height:64px;
  background:linear-gradient(135deg,var(--teal),var(--teal-mid));
  border-radius:16px;display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:26px;margin-bottom:20px;
}
.ins-content h2{font-size:clamp(22px,2.5vw,32px);margin-bottom:14px;}
.ins-feat-list{list-style:none;padding:0;margin:20px 0 28px;}
.ins-feat-list li{
  display:flex;align-items:center;gap:10px;font-size:15px;color:var(--teal);
  padding:6px 0;border-bottom:1px solid rgba(13,59,56,0.07);
}
.ins-feat-list li:last-child{border-bottom:none;}
.ins-feat-list li i{color:var(--gold);font-size:15px;flex-shrink:0;}
.ins-price-row{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-top:auto;}

/* ===== CONTACT PAGE ===== */
.contact-info-card{
  background:var(--white);border-radius:var(--radius-card);padding:28px 22px;
  text-align:center;box-shadow:var(--shadow-card);border:1px solid rgba(13,59,56,0.07);
  transition:var(--transition);height:100%;
}
.contact-info-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(13,59,56,0.12);}
.contact-icon{
  width:54px;height:54px;
  background:linear-gradient(135deg,rgba(232,160,32,0.14),rgba(42,157,143,0.14));
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  color:var(--teal-mid);font-size:21px;margin:0 auto 14px;
}
.contact-info-card h5{font-size:16px;margin-bottom:8px;}
.contact-info-card p{color:var(--text-muted);font-size:14px;margin:0;}
.contact-info-card a{color:var(--teal);transition:var(--transition);}
.contact-info-card a:hover{color:var(--gold-dark);}

/* ===== FAQ ===== */
.faq-accordion .accordion-item{border:1px solid rgba(13,59,56,0.09);border-radius:var(--radius-card)!important;margin-bottom:12px;overflow:hidden;}
.faq-accordion .accordion-button{font-family:'Inter',sans-serif;font-weight:600;font-size:15px;color:var(--teal);background:var(--white);padding:18px 22px;}
.faq-accordion .accordion-button:not(.collapsed){background:rgba(42,157,143,0.08);color:var(--teal);box-shadow:none;}
.faq-accordion .accordion-body{font-size:14px;color:var(--text-muted);padding:16px 22px 20px;}

/* ===== LEGAL PAGES ===== */
.legal-sidebar{background:var(--light-bg);border-radius:var(--radius-card);padding:28px 24px;position:sticky;top:100px;}
.legal-sidebar h6{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--text-muted);margin-bottom:16px;}
.legal-toc{list-style:none;padding:0;margin:0;}
.legal-toc li{margin-bottom:8px;}
.legal-toc a{color:var(--teal);font-size:14px;transition:var(--transition);display:flex;align-items:center;gap:6px;}
.legal-toc a:hover{color:var(--gold-dark);}
.legal-toc a::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0;}
.legal-content h2{font-size:22px;margin-bottom:14px;margin-top:40px;padding-top:10px;}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{color:var(--text-muted);font-size:15px;margin-bottom:16px;}
.legal-content ul{color:var(--text-muted);font-size:15px;padding-left:20px;margin-bottom:16px;}
.legal-content ul li{margin-bottom:6px;}
.legal-divider{border:none;border-top:1px solid var(--gold);opacity:0.22;margin:30px 0;}

/* ===== FLASH MESSAGES ===== */
.flash-msg{border-radius:12px;padding:16px 22px;margin-bottom:20px;font-size:14px;font-weight:500;display:flex;align-items:center;gap:10px;}
.flash-success{background:rgba(74,222,128,0.10);border:1px solid rgba(74,222,128,0.30);color:#166534;}
.flash-error{background:rgba(239,68,68,0.10);border:1px solid rgba(239,68,68,0.30);color:#991b1b;}

/* ===== CTA SWITCHER BANNER ===== */
.cta-banner{position:relative;height:580px;overflow:hidden;}
.cta-slide{position:absolute;inset:0;opacity:0;transition:opacity 0.8s ease;pointer-events:none;}
.cta-slide.active{opacity:1;pointer-events:auto;}
.cta-slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.04);transition:transform 6s ease;}
.cta-slide.active .cta-slide-bg{transform:scale(1);}
.cta-slide-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(13,59,56,0.88) 0%,rgba(13,59,56,0.60) 55%,rgba(13,59,56,0.20) 100%);
}
.cta-slide-inner{position:relative;z-index:2;height:100%;display:flex;align-items:center;}
.cta-label{
  display:inline-flex;align-items:center;
  background:rgba(232,160,32,0.20);border:1px solid rgba(232,160,32,0.45);
  color:var(--gold);border-radius:50px;padding:6px 18px;
  font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:18px;
}
.cta-slide h2{font-size:clamp(28px,3.5vw,48px);color:var(--white);font-weight:900;line-height:1.15;margin-bottom:24px;}
.cta-bullets{list-style:none;padding:0;margin:0 0 8px;}
.cta-bullets li{color:rgba(255,255,255,0.88);font-size:15px;display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.cta-bullets li i{
  width:22px;height:22px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--teal);font-size:10px;flex-shrink:0;
}
.cta-tabs{
  position:absolute;bottom:0;left:0;right:0;z-index:10;
  display:flex;align-items:stretch;
  background:rgba(13,59,56,0.85);backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,0.10);
}
.cta-tab{
  flex:1;padding:18px 24px;background:transparent;border:none;
  border-right:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.60);font-family:'Inter',sans-serif;
  font-size:15px;font-weight:600;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:all 0.3s ease;position:relative;
}
.cta-tab:last-of-type{border-right:none;}
.cta-tab.active{color:var(--gold);background:rgba(232,160,32,0.10);}
.cta-tab:hover:not(.active){color:var(--white);background:rgba(255,255,255,0.06);}
.cta-progress{position:absolute;bottom:0;left:0;right:0;height:3px;background:rgba(255,255,255,0.10);}
.cta-progress-bar{height:100%;background:linear-gradient(90deg,var(--gold),var(--teal-light));width:0%;transition:width linear;}

/* ===== BUNDLE / EARLY BIRD ===== */
.bundle-countdown{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:12px;}
.countdown-block{
  background:rgba(255,255,255,0.10);border:1px solid rgba(255,255,255,0.18);
  border-radius:10px;padding:10px 18px;text-align:center;min-width:72px;
}
.countdown-block span{display:block;font-family:'Fraunces',serif;font-size:30px;font-weight:700;color:var(--gold);line-height:1;}
.countdown-block small{display:block;font-size:11px;color:rgba(255,255,255,0.55);letter-spacing:1px;text-transform:uppercase;margin-top:4px;}
.countdown-sep{font-size:28px;font-weight:700;color:var(--gold);line-height:1;}
.bundle-card{
  background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius-card);padding:34px 28px;text-align:center;
  position:relative;transition:var(--transition);height:100%;
  backdrop-filter:blur(8px);
}
.bundle-card:hover{transform:translateY(-8px);border-color:rgba(232,160,32,0.45);box-shadow:0 25px 60px rgba(0,0,0,0.25);}
.bundle-card--featured{border-color:var(--gold);box-shadow:0 0 0 1px var(--gold),0 20px 60px rgba(232,160,32,0.20);}
.bundle-badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.80);border-radius:50px;padding:4px 16px;
  font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;white-space:nowrap;
}
.bundle-badge--gold{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:var(--teal);border-color:var(--gold);}
.bundle-icons{font-size:26px;color:var(--gold);margin:20px 0 16px;display:flex;align-items:center;justify-content:center;gap:10px;}
.bundle-plus{font-size:14px;color:rgba(255,255,255,0.35);}
.bundle-card h4{color:var(--white);font-size:18px;margin-bottom:10px;}
.bundle-card p{font-size:14px;margin-bottom:0;color:rgba(255,255,255,0.65);}
.bundle-saving{margin-top:18px;font-size:15px;color:rgba(255,255,255,0.72);}
.bundle-saving strong{color:var(--gold);font-size:22px;font-family:'Fraunces',serif;}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}
.anim-fade-up{animation:fadeUp 0.7s ease forwards;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
.anim-float{animation:float 4s ease-in-out infinite;}

/* ===== RESPONSIVE ===== */
@media(max-width:991px){
  .hero-left h1{font-size:38px;}
  .hero-img-wrap{height:360px;}
  .hero-glass-card{left:0;}
  .steps-wrap{flex-direction:column;gap:30px;}
  .steps-wrap::before{display:none;}
  .ins-row--reverse .ins-img-col{order:2;}
  .ins-row--reverse .ins-content-col{order:1;}
  .ins-img-col{min-height:300px;}
  .ins-content{padding:36px 28px;}
  .legal-sidebar{position:static;margin-bottom:30px;}
}
@media(max-width:767px){
  .section-pad{padding:60px 0;}
  .section-pad-sm{padding:40px 0;}
  .navbar-main .navbar-brand{font-size:16px;}
  .brand-icon{width:30px;height:30px;font-size:13px;}
  .navbar-main .btn-quote{padding:7px 14px;font-size:12px;}
  .hero-section{min-height:auto;padding:60px 0 40px;}
  .hero-img-wrap{height:240px;margin-top:24px;}
  .hero-glass-card{display:none;}
  .hero-left p{font-size:15px;}
  .trust-divider{display:none;}
  .service-row{padding:16px 14px;gap:12px;}
  .service-num{font-size:24px;min-width:36px;}
  .service-icon-wrap{width:40px;height:40px;font-size:16px;}
  .cta-banner{height:auto;min-height:520px;}
  .quote-form-card{padding:28px 20px;}
  .ins-content{padding:28px 20px;}
}

/* ===== ABOUT FEATURES LIST ===== */
.about-features-list{list-style:none;padding:0;margin:0;}
.about-features-list li{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 0;border-bottom:1px solid rgba(13,59,56,0.07);
}
.about-features-list li:last-child{border-bottom:none;}
.about-feat-icon{
  width:42px;height:42px;flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  color:var(--teal);font-size:17px;
}

/* ===== PRODUCTS ICON GRID ===== */
.products-icon-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
}
.prod-icon-badge{
  background:var(--white);border:1.5px solid rgba(13,59,56,0.10);
  border-radius:14px;padding:16px;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;color:var(--teal-mid);transition:var(--transition);
}
.prod-icon-badge:hover{
  background:linear-gradient(135deg,var(--teal),var(--teal-mid));
  color:var(--gold);border-color:transparent;
  transform:translateY(-3px);box-shadow:var(--shadow-card);
}
