/* ==========================================================
   Chennai Lal Packers & Movers — style.css (optimized)

   NOTE: the hero section (background image, hero text/buttons,
   and the quote form) has been split out into hero.css. This
   file covers everything else: nav/header, services, process,
   why-us, testimonials, cta, faq, locations, footer. Both files
   need to be linked in index.html.

   Changes made for performance (Lighthouse mobile+desktop):
   1. Removed @import for Google Fonts (moved to <link> + preconnect
      in HTML head — @import blocks CSS in a serial waterfall).
   2. Removed ~350 lines of DEAD CSS that had no matching elements
      in the HTML: .hero-glass-card, .float-badge, .moving-card,
      .card-icon/.card-content/.card-text/.card-sub, .progress-bar/
      .progress-fill, @keyframes floatCard, .hero-visual, .hero-stats/
      .stat-val/.stat-label, .quote-section/.quote-header/.quote-tag/
      .quote-desc/.quote-contact-info/.quote-info-item, .logo/.logo span
      (old), .nav-cta, .site. Unused CSS = wasted download + parse time
      on every visit, which directly hurts the Lighthouse score.
   3. Removed a broken/duplicate bare `nav{...}` tag-selector rule that
      referenced an undefined variable (--navy) and a backdrop-filter
      that could never be visible (it sat behind an opaque background).
   4. Merged duplicate .nav-links / .dropdown-menu declarations into
      single rules (same visual result, less CSS to parse).
   5. Consolidated 3 separate `body{...}` blocks into one.
   ========================================================== */

*{box-sizing:border-box;margin:0;padding:0}

:root{
  --purple:#2B0A57;
  --gold:#F4C430;
  --gold-dark:#E6B800;
  --black:#111111;
  --white:#ffffff;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:'DM Sans',sans-serif;
  background:#fff;
  color:var(--black);
  font-size:18px;
  line-height:1.8;
  font-weight:400;
  overflow-x:hidden;
  margin:0;
  padding-top:85px; /* same as navbar height */
}

.site{width:100%}

/* =========================
   NAV / HEADER
========================= */

.dropdown{position:relative;}

.dropdown-menu{
  display:none;
  position:absolute;
  top:55px;
  left:0;
  min-width:230px;
  background:#fff;
  border-radius:14px;
  padding:10px 0;
  list-style:none;
  z-index:999;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.dropdown-menu.show{
  display:block;
  animation:dropdownShow .3s ease;
}

@keyframes dropdownShow{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

.dropdown-menu li{list-style:none;}

.dropdown-menu li a{
  display:block;
  padding:12px 18px;
  color:var(--purple);
  font-size:14px;
}

.dropdown-menu li a:hover{
  background:var(--gold);
  color:var(--purple);
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:85px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  background:var(--purple);
  z-index:999999;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
  transition:all .35s ease;
}

.logo-area{display:flex;align-items:center;gap:12px;}
.logo-img{width:55px;height:55px;object-fit:contain;}
.logo-text{color:#fff;font-size:24px;font-weight:800;line-height:1.1;}
.logo-text span{display:block;font-size:13px;letter-spacing:1px;color:var(--gold);}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

.nav-links li{position:relative;}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  padding:32px 0;
  display:block;
  transition:.3s;
  position:relative;
}

.nav-links a:hover{color:var(--gold);}

.nav-links a.active{color:var(--gold);}

.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:18px;
  width:100%;
  height:3px;
  background:var(--gold);
  border-radius:50px;
}

.dropdown-btn{
  background:transparent;
  border:none;
  outline:none;
  box-shadow:none;
  appearance:none;
  -webkit-appearance:none;
  color:#fff;
  font-size:15px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  transition:.3s;
  padding:0;
}

.dropdown-btn:hover{color:var(--gold);}
.dropdown-btn:focus,
.dropdown-btn:active{outline:none;border:none;box-shadow:none;}

.call-btn{
  background:var(--gold);
  color:var(--purple);
  padding:12px 22px;
  border-radius:50px;
  font-weight:800;
  text-decoration:none;
  transition:.35s;
}

.call-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 0 20px rgba(244,196,48,.4);
}

.mobile-toggle{display:none;font-size:32px;color:var(--gold);cursor:pointer;}

@media(max-width:1100px){
  .call-btn{display:none;}
}

@media(max-width:900px){
  .navbar{padding:0 20px;}
  .mobile-toggle{display:block;}

  .nav-links{
    display:none;
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    background:var(--purple);
    flex-direction:column;
    align-items:center;
    gap:0;
    padding:20px 0;
  }

  .nav-links.active{display:flex;}
  .nav-links li{width:100%;}
  .nav-links a{display:block;padding:15px 25px;width:100%;}

  .dropdown-menu{
    position:static;
    width:100%;
    margin-top:0;
    display:none;
    background:#f9f9f9;
    border-radius:0;
    box-shadow:none;
  }

  .dropdown-menu.show{display:block;}
  .dropdown-menu li a{color:#ffffff;padding-left:45px;}
  .dropdown-menu li a:hover{background:rgba(255,255,255,.94);color:#106B2D;}

  .dropdown-btn{width:100%;text-align:left;padding:15px 25px;}
  .logo-text{font-size:18px;}
  .logo-img{width:45px;height:45px;}
}

/* =========================
   HERO SECTION + QUOTE FORM
   → moved to hero.css (linked separately in index.html,
     right after this file)
========================= */

/* =========================
   SERVICES
========================= */

.services{
  padding:20px 50px;
  background:#fff;
  position:relative;
  overflow:hidden;
}

.services-heading{text-align:center;max-width:900px;margin:0 auto 70px;}

.section-label{
  font-size:13px;
  letter-spacing:3px;
  font-weight:800;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:5px;
}

.section-label span{color:var(--purple);}

.section-title{
  font-family:'Playfair Display',serif;
  font-size:42px;
  font-weight:900;
  line-height:1.2;
  color:var(--purple);
  margin-bottom:15px;
}

.section-title span{color:var(--gold);}

.section-sub{
  color:#000;
  font-size:18px;
  line-height:1.8;
  max-width:800px;
  margin:auto;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
  width:100%;
}

.svc-card{
  background:#fff;
  border:2px solid rgba(243,187,21,.86);
  border-radius:24px;
  padding:35px;
  text-align:center;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.svc-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(43,10,87,.12), 0 0 25px rgba(244,196,48,.20);
}

.svc-icon{
  width:75px;
  height:75px;
  margin:0 auto 25px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:var(--gold);
  background:linear-gradient(135deg,var(--purple),#4B148A);
}

.svc-name{color:var(--purple);font-size:22px;font-weight:800;margin-bottom:15px;}
.svc-desc{color:#000;font-size:15px;line-height:1.8;margin-bottom:20px;}
.svc-link{color:var(--gold);text-decoration:none;font-weight:700;}
.svc-link:hover{color:var(--purple);}

.reveal{opacity:0;transform:translateY(60px);transition:.8s;}
.reveal.active{opacity:1;transform:translateY(0);}

@media(max-width:992px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .section-title{font-size:42px;}
}

@media(max-width:768px){
  .services{padding:60px 20px;}
  .services-grid{grid-template-columns:1fr;}
  .section-title{font-size:34px;}
  .section-sub{font-size:15px;}
  .svc-card{padding:28px;}
}

/* =========================
   PROCESS
========================= */

.process-section{
  padding:20px 50px;
  background:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.process-section::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(244,196,48,.08);
  border-radius:50%;
  top:-150px;
  right:-150px;
}

.process-section::after{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(43,10,87,.05);
  border-radius:50%;
  bottom:-150px;
  left:-150px;
}

.process-section .section-label{font-size:14px;font-weight:800;letter-spacing:3px;margin-bottom:15px;color:var(--gold);}
.process-section .section-label span{color:var(--purple);}

.process-section .section-title{
  font-family:'Playfair Display',serif;
  font-size:58px;
  line-height:1.1;
  color:var(--purple);
  margin-bottom:20px;
}

.process-section .section-title span{color:var(--gold);}

.process-section .section-sub{
  max-width:750px;
  margin:auto;
  color:#000;
  font-size:18px;
  line-height:1.8;
  margin-bottom:10px;
}

.process-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  position:relative;
}

.process-card{
  background:#fff;
  border-radius:24px;
  padding:35px 25px;
  border:1px solid rgba(244,196,48,.15);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.4s ease;
  position:relative;
}

.process-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(43,10,87,.12), 0 0 30px rgba(244,196,48,.18);
  border-color:var(--gold);
}

.step-num{
  width:80px;
  height:80px;
  margin:0 auto 25px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--purple),#4B148A);
  color:var(--gold);
  font-size:28px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(43,10,87,.25);
}

.process-card h3{color:var(--purple);font-size:22px;margin-bottom:15px;}
.process-card p{color:#000;line-height:1.8;font-size:15px;}

@media(max-width:992px){
  .process-timeline{grid-template-columns:repeat(2,1fr);}
  .process-section .section-title{font-size:42px;}
}

@media(max-width:768px){
  .process-section{padding:70px 20px;}
  .process-timeline{grid-template-columns:1fr;}
  .process-section .section-title{font-size:34px;}
  .process-section .section-sub{font-size:15px;}
}

/* =========================
   WHY CHOOSE US
========================= */

.why-section{
  padding:20px 60px;
  background:#fff;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  overflow:hidden;
}

.why-section .section-label{color:var(--gold);font-weight:800;letter-spacing:3px;margin-bottom:15px;text-transform:uppercase;}
.why-section .section-label span{color:var(--purple);}

.why-section .section-title{
  font-family:'Playfair Display',serif;
  font-size:58px;
  line-height:1.1;
  color:var(--purple);
  margin-bottom:20px;
}

.why-section .section-title span{color:var(--gold);}

.why-section .section-sub{color:#000;font-size:17px;line-height:1.9;margin-bottom:35px;}

.why-features{display:flex;flex-direction:column;gap:2px;}

.why-feat{
  display:flex;
  gap:18px;
  padding:20px;
  border-radius:18px;
  background:#fff;
  border:2px solid rgba(244,195,48,.94);
  transition:.4s;
}

.why-feat:hover{
  transform:translateX(10px);
  box-shadow:0 15px 35px rgba(43,10,87,.10), 0 0 25px rgba(244,196,48,.18);
}

.feat-check{
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--purple);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.feat-text strong{display:block;color:var(--purple);font-size:18px;margin-bottom:5px;}
.feat-text span{color:#000;line-height:1.7;}

.why-right{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:650px;
  width:100%;
}

.img-big{
  width:100%;
  max-width:650px;
  border-radius:35px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  transition:.4s;
}

.img-big img{width:100%;height:600px;object-fit:cover;display:block;}

.img-small{
  position:absolute;
  width:420px;
  right:-20px;
  bottom:30px;
  border-radius:25px;
  overflow:hidden;
  border:8px solid #fff;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  transition:.4s;
}

.img-small img{width:100%;height:280px;object-fit:cover;display:block;}

.img-big:hover,
.img-small:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(43,10,87,.15), 0 0 30px rgba(244,196,48,.25);
}

@media(max-width:992px){
  .why-section{grid-template-columns:1fr;gap:40px;}
  .why-right{min-height:550px;margin-top:20px;}
  .img-big{max-width:100%;}
  .img-big img{height:500px;}
  .img-small{width:350px;right:20px;bottom:20px;}
  .img-small img{height:220px;}
}

@media(max-width:768px){
  .why-section{padding:60px 20px;gap:30px;}
  .why-right{min-height:auto;display:block;text-align:center;}
  .img-big{width:100%;max-width:100%;border-radius:25px;}
  .img-big img{height:300px;border-radius:25px;}
  .img-small{position:relative;width:85%;margin:-50px auto 0;right:auto;bottom:auto;border-width:6px;}
  .img-small img{height:180px;}
}

@media(max-width:480px){
  .img-big img{height:250px;}
  .img-small{width:90%;margin:-40px auto 0;}
  .img-small img{height:150px;}
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section{padding:20px 60px;background:#fff;text-align:center;overflow:hidden;}

.testimonials-section .section-label{color:var(--gold);font-size:14px;font-weight:800;letter-spacing:3px;margin-bottom:15px;}
.testimonials-section .section-label span{color:var(--purple);}

.testimonials-section .section-title{
  font-family:'Playfair Display',serif;
  font-size:58px;
  line-height:1.1;
  color:var(--purple);
  margin-bottom:0;
}

.testimonials-section .section-title span{color:var(--gold);}

.testimonials-section .section-sub{max-width:750px;margin:auto;color:#000;font-size:18px;line-height:1.8;margin-bottom:0;}

.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}

.testi-card{
  background:#fff;
  padding:35px;
  border-radius:25px;
  position:relative;
  text-align:left;
  border:1px solid rgba(244,196,48,.15);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.4s ease;
}

.testi-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(43,10,87,.12), 0 0 30px rgba(244,196,48,.18);
  border-color:var(--gold);
}

.testi-tag{
  position:absolute;
  top:20px;
  right:20px;
  background:var(--gold);
  color:var(--purple);
  padding:8px 12px;
  border-radius:30px;
  font-size:11px;
  font-weight:800;
}

.stars{color:var(--gold);font-size:18px;margin-bottom:20px;}
.testi-text{color:#000;line-height:1.9;font-size:15px;margin-bottom:25px;}
.testi-author{display:flex;align-items:center;gap:15px;}

.author-avatar{
  width:55px;
  height:55px;
  border-radius:50%;
  background:var(--purple);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

.author-name{color:var(--purple);font-weight:700;font-size:16px;}
.author-city{color:#000;font-size:13px;}

@media(max-width:992px){
  .testi-grid{grid-template-columns:1fr;}
  .testimonials-section{padding:80px 30px;}
  .testimonials-section .section-title{font-size:42px;}
}

@media(max-width:768px){
  .testimonials-section{padding:60px 20px;}
  .testimonials-section .section-title{font-size:34px;}
  .testimonials-section .section-sub{font-size:15px;}
  .testi-card{padding:25px;}
}

/* =========================
   CTA
========================= */

.premium-cta{
  position:relative;
  margin:100px auto;
  max-width:1300px;
  padding:70px 60px;
  border-radius:35px;
  overflow:hidden;
  background:#fff;
  border:5px solid rgb(226,174,15);
  box-shadow:0 15px 50px rgba(0,0,0,.06);
  opacity:0;
  transform:translateY(60px);
  transition:all .8s ease;
}

.premium-cta.active{opacity:1;transform:translateY(0);}

.cta-glow{
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:rgba(244,196,48,.08);
  top:-180px;
  right:-180px;
}

.cta-content{display:flex;justify-content:space-between;align-items:center;gap:40px;position:relative;z-index:2;}

.cta-label{font-size:14px;font-weight:800;letter-spacing:3px;color:var(--gold);margin-bottom:15px;}
.cta-label span{color:var(--purple);}

.cta-text h2{
  font-family:'Playfair Display',serif;
  font-size:60px;
  line-height:1.1;
  color:var(--purple);
  margin-bottom:20px;
}

.cta-text h2 span{color:var(--gold);}
.cta-text p{color:#000;font-size:17px;line-height:1.9;max-width:650px;}

.cta-right{display:flex;flex-direction:column;align-items:flex-end;gap:25px;}
.cta-contact{display:flex;align-items:center;gap:15px;}

.phone-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:var(--purple);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 10px 25px rgba(43,10,87,.18);
}

.cta-sub{color:#000;font-size:13px;margin-bottom:4px;}
.cta-phone{color:var(--purple);font-size:28px;font-weight:800;font-family:'Playfair Display',serif;}

.cta-btn{
  text-decoration:none;
  background:var(--gold);
  color:var(--purple);
  padding:18px 35px;
  border-radius:14px;
  font-weight:800;
  transition:.4s;
}

.cta-btn:hover{
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(244,196,48,.35), 0 0 40px rgba(244,196,48,.20);
}

.premium-cta:hover{
  box-shadow:0 25px 60px rgba(43,10,87,.08), 0 0 30px rgba(244,196,48,.12);
}

@media(max-width:992px){
  .cta-content{flex-direction:column;text-align:center;}
  .cta-right{align-items:center;}
  .cta-text h2{font-size:46px;}
}

@media(max-width:768px){
  .premium-cta{padding:50px 25px;}
  .cta-text h2{font-size:34px;}
  .cta-phone{font-size:22px;}
  .cta-text p{font-size:15px;}
}

/* =========================
   FAQ
========================= */

.faq-section{
  padding:10px 0 0;
  border-top:1px solid rgba(244,196,48,.15);
  border-bottom:1px solid rgba(244,196,48,.15);
}

.faq-heading{text-align:center;max-width:800px;margin:0 auto 40px;}

.faq-wrapper{max-width:1150px;margin:auto;}

.faq-item{
  background:#fff;
  border:1px solid rgba(244,196,48,.25);
  border-radius:18px;
  margin-bottom:15px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,.04);
  transition:.35s;
}

.faq-item:hover{
  border-color:var(--gold);
  box-shadow:0 15px 30px rgba(43,10,87,.08), 0 0 20px rgba(244,196,48,.12);
}

.faq-question{
  width:100%;
  padding:22px 28px;
  background:#fff;
  border:none;
  cursor:pointer;
  color:var(--purple);
  font-size:20px;
  font-weight:700;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question span{color:var(--gold);font-size:28px;}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 28px;
  color:#000;
  line-height:1.9;
  transition:.4s ease;
}

.faq-item.active .faq-answer{max-height:250px;padding:0 28px 25px;}

/* =========================
   LOCATIONS
========================= */

.location-section{
  padding:60px 50px 80px;
  background:linear-gradient(180deg,#fff,rgba(244,196,48,.08));
  text-align:center;
  border-top:1px solid rgba(244,196,48,.15);
}

.location-badge{
  display:inline-block;
  background:var(--gold);
  color:var(--purple);
  padding:10px 24px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:20px;
  box-shadow:0 5px 15px rgba(244,196,48,.25);
}

.location-title{
  font-family:'Playfair Display',serif;
  font-size:56px;
  color:var(--purple);
  margin-bottom:15px;
}

.location-title span{color:var(--gold);}

.location-sub{color:#000;max-width:800px;margin:auto auto 40px;line-height:1.8;}

.location-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;max-width:1200px;margin:auto;}

.location-grid a{
  text-decoration:none;
  background:#fff;
  color:var(--purple);
  border:1px solid rgba(244,196,48,.35);
  border-radius:50px;
  padding:13px 24px;
  font-weight:700;
  transition:.35s;
  box-shadow:0 4px 10px rgba(0,0,0,.04);
}

.location-grid a:hover{
  background:var(--purple);
  color:var(--gold);
  border-color:var(--purple);
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(43,10,87,.15);
}

@media(max-width:768px){
  .faq-section{padding:50px 20px 30px;}
  .location-section{padding:40px 20px 60px;}
  .section-title,
  .location-title{font-size:34px;}
  .faq-question{font-size:16px;padding:18px;}
  .faq-answer{font-size:14px;}
  .location-grid{gap:10px;}
  .location-grid a{padding:10px 16px;font-size:14px;}
}

/* =========================
   FOOTER
========================= */

.footer-main{
  background:var(--purple);
  padding:10px 60px 0;
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.2fr 1.4fr;
  gap:40px;
  position:relative;
  overflow:hidden;
  align-items:flex-start;
}

.footer-main::before{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:rgba(244,196,48,.08);
  top:-220px;
  right:-150px;
  pointer-events:none;
}

.footer-brand{position:relative;z-index:2;}
.footer-logo{width:220px;max-width:100%;margin-bottom:20px;}
.footer-company-name{color:#ffffff;font-size:28px;font-weight:700;margin-bottom:15px;line-height:1.3;}
.footer-desc{color:rgba(255,255,255,.82);line-height:1.9;font-size:15px;max-width:420px;}

.footer-column{display:flex;flex-direction:column;}

.footer-column h4{color:var(--gold);font-size:22px;font-weight:700;margin-bottom:22px;position:relative;}

.footer-column h4::after{
  content:'';
  display:block;
  width:45px;
  height:3px;
  background:var(--gold);
  margin-top:8px;
  border-radius:10px;
}

.footer-column a{
  color:#ffffff;
  text-decoration:none;
  margin-bottom:13px;
  line-height:1.8;
  transition:.35s ease;
  width:fit-content;
  font-size:15px;
}

.footer-column a:hover{color:var(--gold);transform:translateX(6px);}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
  color:#ffffff;
  line-height:1.8;
  font-size:15px;
}

.footer-contact-item span:first-child{color:var(--gold);flex-shrink:0;margin-top:2px;}

.footer-social{display:flex;gap:14px;margin-top:25px;flex-wrap:wrap;}

.footer-social a{
  width:45px;
  height:45px;
  border-radius:50%;
  background:rgba(244,196,48,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  text-decoration:none;
  transition:.35s ease;
  font-size:18px;
}

.footer-social a svg{width:18px;height:18px;fill:currentColor;}

.footer-social a:hover{
  background:var(--gold);
  color:var(--purple);
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(244,196,48,.45);
}

.footer-bottom{
  grid-column:1/-1;
  margin-top:30px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.footer-copyright{color:rgba(255,255,255,.75);font-size:14px;line-height:1.8;}

@media(max-width:1200px){
  .footer-main{grid-template-columns:1.5fr 1fr 1fr 1fr;gap:35px;}
}

@media(max-width:991px){
  .footer-main{grid-template-columns:repeat(2,1fr);gap:40px;}
  .footer-brand{grid-column:1/-1;}
}

@media(max-width:768px){
  .footer-main{grid-template-columns:1fr;padding:50px 25px 20px;gap:35px;}
  .footer-brand{grid-column:auto;}
  .footer-company-name{font-size:24px;}
  .footer-column h4{font-size:20px;}
  .footer-bottom{text-align:center;}
  .footer-social{justify-content:flex-start;}
  .footer-logo{width:180px;}
}





























/* =========================
   HERO SECTION
========================= */

:root{
  --purple:#2B0A57;
  --yellow:#F4C430;
  --yellow-dark:#E6B800;
  --black:#111111;
  --white:#ffffff;
}

/* HERO */
.hero{
  position:relative;

  min-height:75px;

  display:grid;
  grid-template-columns:1fr 520px;

  gap:70px;

  align-items:center;

  padding:0px 60px;

  overflow:hidden;

  background:
  url("images/herobackground.jpeg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
  90deg,
  rgba(255,255,255,.93) 10%,
 

  );

  z-index:1;
}

.hero-left,
.hero-right{

  position:relative;
  z-index:2;
}

/* LEFT */

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:rgba(244,196,48,.15);

  border:1px solid rgba(244,196,48,.35);

  color:#ffffff;

  padding:10px 18px;

  border-radius:50px;

  font-size:12px;
  font-weight:700;

  margin-bottom:25px;
}

.hero-badge i{
  color:#ffffff;
}

.hero h1{
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

  font-size:50px;

  line-height:1.05;

  color:#ffffff;

  font-weight:900;

  margin-bottom:20px;
}

.hero h1 em{
  color:#F4C430;
  font-style:normal;
}

.hero-sub{
  max-width:650px;
  color:#fffefe;
  font-size:18px;
  line-height:1.8;
  margin-bottom:35px;
}

/* BUTTONS */

.hero-btns{
  display:flex;
  gap:15px;
}

.btn-primary{
  background:#F4C430;
  color:#2B0A57;

  padding:15px 30px;

  border-radius:12px;

  text-decoration:none;

  font-weight:800;

  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-4px);

  box-shadow:
  0 0 25px rgba(244,196,48,.4);
}

.btn-outline{
  border:2px solid #2B0A57;

  color:#2B0A57;

  padding:15px 30px;

  border-radius:12px;

  text-decoration:none;

  font-weight:800;

  transition:.3s;
}

.btn-outline:hover{
  background:#2B0A57;
  color:#fff;
}

/* STATS */

.hero-stats{
  display:flex;

  gap:50px;

  margin-top:4px;

  padding-top:5px;

  
}

.stat-val{
  font-size:34px;
  font-weight:900;
  color:#2B0A57;
}

.stat-label{
  color:#000;
  font-size:13px;
}

/* RIGHT GLASS CARD */

.hero-glass-card{
  position:relative;

  backdrop-filter:blur(20px);

  background:
  rgba(255,255,255,.20);

  border:1px solid rgba(255,255,255,.4);

  border-radius:30px;

  padding:40px;

  box-shadow:
  0 25px 60px rgba(0,0,0,.15);
}

.hero-glass-card h3{
  color:#2B0A57;
  font-size:30px;
  font-weight:900;
  margin-bottom:25px;
}

.float-badge{
  position:absolute;

  top:-15px;
  right:-15px;

  background:#F4C430;

  color:#2B0A57;

  padding:12px 18px;

  border-radius:14px;

  font-weight:800;
}

.moving-card{
  display:flex;
  align-items:center;
  gap:15px;

  background:
  rgba(255,255,255,.6);

  padding:18px;

  border-radius:14px;

  margin-bottom:14px;

  transition:.3s;
}

.moving-card i{
  color:#2B0A57;
  font-size:24px;
}

.moving-card span{
  color:#000;
  font-weight:600;
}

.moving-card:hover{
  transform:translateX(8px);

  box-shadow:
  0 0 25px rgba(244,196,48,.25);
}

/* MOBILE */

@media(max-width:992px){

.hero{
  grid-template-columns:1fr;
  padding:60px 30px;
}

.hero h1{
  font-size:52px;
}

}

@media(max-width:768px){

.hero{
  padding:40px 20px;
}

.hero h1{
  font-size:38px;
}

.hero-btns{
  flex-direction:column;
}

.hero-stats{
  gap:20px;
  flex-wrap:wrap;
}

.hero-glass-card{
  padding:25px;
}

}




.hero-visual{

  width:100%;
  max-width:780px;

  background:#ffffffd8;

  backdrop-filter:blur(12px);

  border:1px solid #e8e8e8;

  border-radius:32px;

  padding:36px;

  position:relative;

  box-shadow:
  0 20px 60px rgba(0,0,0,.08);

  animation:floatCard 5s ease-in-out infinite;
}

.float-badge{

  position:absolute;

  top:-18px;
  right:-18px;

  background:#F4C430;

  color:#2B0A57;

  padding:16px 18px;

  border-radius:16px;

  font-size:14px;

  font-weight:800;

  text-align:center;

  box-shadow:
  0 10px 25px rgba(244,196,48,.35);
}

.moving-card{

  background:#f8f8f8;

  border:1px solid #ececec;

  border-radius:20px;

  padding:20px;

  display:flex;

  align-items:center;

  gap:18px;

  margin-bottom:18px;

  transition:.35s;
}

.moving-card:last-child{
  margin-bottom:0;
}

.moving-card:hover{

  transform:translateY(-6px);

  box-shadow:
  0 15px 30px rgba(43,10,87,.10),
  0 0 20px rgba(244,196,48,.18);
}

.card-icon{

  width:56px;
  height:56px;

  border-radius:14px;

  background:#2B0A57;

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;

  flex-shrink:0;
}

.card-icon.office{
  background:#234567;
}

.card-icon.goods{
  background:#106B2D;
}

.card-content{
  width:100%;
}

.card-text{

  color:#2B0A57;

  font-size:18px;

  font-weight:800;

  margin-bottom:5px;
}

.card-sub{

  color:#666;

  font-size:14px;

  margin-bottom:10px;
}

.progress-bar{

  width:100%;

  height:8px;

  background:#ddd;

  border-radius:50px;

  overflow:hidden;
}

.progress-fill{

  height:100%;

  background:#F4C430;

  border-radius:50px;
}

.office-fill{
  background:#7FB4E2;
}

.goods-fill{
  background:#3FC277;
}

@keyframes floatCard{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }

}










.quote-section{

  max-width:1280px;

  margin:50px auto;

  padding:40px 50px;

  background:
  rgba(255,255,255,.88);

  backdrop-filter:blur(18px);

  -webkit-backdrop-filter:blur(18px);

  border-radius:30px;

  display:grid;

  grid-template-columns:1fr 1.05fr;

  gap:45px;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 20px 60px rgba(43,10,87,.08);
}

/* TOP PURPLE-YELLOW LINE */

.quote-section::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:5px;

  background:
  linear-gradient(
  90deg,
  #2B0A57,
  #F4C430);
}

/* SOFT GOLD CIRCLE */

.quote-section::after{

  content:"";

  position:absolute;

  width:320px;
  height:320px;

  border-radius:50%;

  background:
  rgba(244,196,48,.06);

  top:-130px;
  right:-130px;
}

/* ====================================
   LEFT CONTENT
==================================== */

.quote-header{

  display:flex;

  flex-direction:column;

  justify-content:center;

  position:relative;

  z-index:2;
}

.quote-tag{

  display:inline-block;

  width:fit-content;

  padding:10px 18px;

  border-radius:50px;

  background:
  rgba(244,196,48,.12);

  color:#2B0A57;

  font-size:11px;

  font-weight:800;

  margin-bottom:20px;
}

.quote-header h2{

  font-family:'Playfair Display',serif;

  font-size:62px;

  line-height:.95;

  color:#2B0A57;

  font-weight:900;

  margin-bottom:18px;
}

.quote-header h2 span{

  color:#C79B11;
}

.quote-header p{

  max-width:460px;

  font-size:16px;

  line-height:1.9;

  color:#000;
}

/* ====================================
   GLASS FORM CARD
==================================== */

.quote-form{

  background:
  rgb(196, 187, 187);

  backdrop-filter:blur(22px);

  -webkit-backdrop-filter:blur(22px);

  border:1px solid
  rgba(255,255,255,.6);

  border-radius:24px;

  padding:22px;

  position:relative;

  z-index:2;

  box-shadow:
  0 12px 35px rgba(0,0,0,.04);
}

/* FIELD */

.field{

  margin-bottom:2px;
}

.field label{
  display:block;

  margin-bottom:3px;

  color:#2B0A57;

  font-size:13px;

  font-weight:800;
}

/* INPUTS */

.field input,
.field select{

  width:100%;

  height:54px;

  padding:0 18px;

  border-radius:12px;

  border:1.5px solid #E7E7E7;

  background:
  rgba(255, 255, 255, 0.9);

  font-size:14px;

  transition:.3s;
}

.field input:focus,
.field select:focus{

  outline:none;

  border-color:#F4C430;

  box-shadow:
  0 0 15px rgba(244,196,48,.15);
}

/* BUTTON */

.quote-btn{

  width:100%;

  height:58px;

  border:none;

  border-radius:14px;

  background:
  linear-gradient(
  135deg,
  #D6AE1B,
  #B88D00);

  color:#2B0A57;

  font-size:18px;

  font-weight:900;

  cursor:pointer;

  margin-top:6px;

  transition:.35s;
}

.quote-btn:hover{

  transform:translateY(-3px);

  box-shadow:
  0 0 18px rgba(244,196,48,.28),
  0 0 35px rgba(244,196,48,.15);
}

/* SECTION HOVER */

.quote-section:hover{

  transform:translateY(-3px);

  transition:.4s;

  box-shadow:
  0 25px 70px rgba(43,10,87,.08);
}

/* ====================================
   TABLET
==================================== */

@media(max-width:992px){

.quote-section{

  grid-template-columns:1fr;

  padding:35px 25px;

  gap:30px;
}

.quote-header h2{

  font-size:50px;
}

}

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

@media(max-width:768px){

.quote-section{

  margin:30px 15px;

  padding:20px;

  gap:25px;
}

.quote-header{

  text-align:center;
}

.quote-tag{

  margin:0 auto 15px;
}

.quote-header h2{

  font-size:38px;
}

.quote-header p{

  font-size:15px;

  margin:auto;

  line-height:1.7;
}

.quote-form{

  padding:18px;
}

.field input,
.field select{

  height:50px;
}

.quote-btn{

  height:54px;

  font-size:16px;
}

}

.quote-desc{
  font-size:16px;
  line-height:1.8;
  color:#000;
  margin-bottom:25px;
  max-width:500px;
}

.quote-contact-info{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:10px;
}

.quote-info-item{
  display:flex;
  align-items:flex-start;
  gap:14px;

  background:rgba(255,255,255,.65);

  border:1px solid rgba(43,10,87,.08);

  border-radius:16px;

  padding:15px 18px;

  backdrop-filter:blur(10px);

  transition:.35s;
}

.quote-info-item:hover{
  transform:translateY(-3px);

  box-shadow:
  0 10px 25px rgba(43,10,87,.08),
  0 0 20px rgba(244,196,48,.10);
}

.quote-info-item span{
  font-size:24px;
  line-height:1;
}

.quote-info-item strong{
  display:block;
  color:#2B0A57;
  font-size:14px;
  margin-bottom:4px;
}

.quote-info-item p{
  margin:0;
  color:#000;
  font-size:14px;
  line-height:1.7;
}

@media(max-width:768px){

.quote-contact-info{
  margin-top:20px;
}

.quote-info-item{
  text-align:left;
}

}



