:root{
  --bg:#070b12;
  --dark:#0b1018;
  --card:#111821;
  --gold:#f5c542;
  --gold2:#ffd86a;
  --text:#ffffff;
  --muted:#b8c0cc;
  --border:rgba(255,255,255,.13);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1320px,90%);
  margin:auto;
}

/* TOP STRIP */

.top-strip{
  background:#070b12;
  border-bottom:1px solid var(--border);
  height:54px;
  display:flex;
  align-items:center;
}

.strip-inner{
  display:flex;
  align-items:center;
  gap:55px;
  color:#d9dee7;
  font-size:15px;
}

.strip-inner i{
  color:var(--gold);
  margin-right:9px;
}

.socials{
  margin-left:auto;
  display:flex;
  gap:22px;
  font-size:18px;
}

/* NAVBAR */

.navbar{
  height:96px;
  background:rgba(9,14,22,.96);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(18px);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo-box{
  width:58px;
  height:58px;
  border-radius:17px;
  display:grid;
  place-items:center;
  font-size:29px;
  color:#0b0f16;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow:0 0 28px rgba(245,197,66,.32);
}

.brand h3{
  font-size:27px;
  line-height:1;
  font-weight:800;
}

.brand b{
  color:var(--gold);
}

.brand p{
  margin-top:7px;
  color:#c8cdd5;
  font-size:14px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:38px;
}

.nav-menu a{
  font-size:16px;
  font-weight:700;
  color:#f1f5f9;
  transition:.3s;
}

.nav-menu a.active,
.nav-menu a:hover{
  color:var(--gold);
}

.nav-menu a.active{
  position:relative;
}

.nav-menu a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-25px;
  height:3px;
  border-radius:10px;
  background:var(--gold);
}

.call-btn{
  padding:18px 38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#0b0f16;
  font-weight:800;
  font-size:17px;
  box-shadow:0 16px 36px rgba(245,197,66,.22);
}

.call-btn i{
  margin-right:10px;
}

/* DROPDOWN */

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:34px;
  left:-20px;
  width:260px;
  padding:12px;
  border-radius:18px;
  background:#101720;
  border:1px solid var(--border);
  box-shadow:0 25px 80px rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:.3s;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  display:block;
  padding:13px 14px;
  border-radius:12px;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:rgba(255,255,255,.07);
}

/* HERO */

.hero{
  min-height:calc(100vh - 150px);
  padding:70px 0 58px;
  background:
    radial-gradient(circle at 24% 35%, rgba(44,98,155,.18), transparent 28%),
    radial-gradient(circle at 85% 24%, rgba(245,197,66,.13), transparent 24%),
    linear-gradient(135deg,#08111d,#060910 65%);
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:64px 64px;
  opacity:.65;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  top:60px;
  width:440px;
  height:520px;
  background:url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  opacity:.045;
  mask-image:linear-gradient(to right,black,transparent);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
}

.badge{
  display:inline-flex;
  padding:12px 18px;
  border:1px solid rgba(245,197,66,.45);
  border-radius:999px;
  color:var(--gold);
  background:rgba(245,197,66,.05);
  font-size:13px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:32px;
}

.hero h1{
  font-size:45px;
  line-height:1.08;
  letter-spacing:-2px;
  font-weight:400;
  max-width:900px;
}

.hero h1 span{
  color:var(--gold2);
  font-weight:500;
}

.hero p{
  margin-top:24px;
  max-width:650px;
  color:#c6ccd6;
  font-size:17px;
  line-height:1.8;
}

.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn,
.outline-btn{
  height:54px;
  padding:0 29px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  font-size:16px;
  font-weight:800;
}

.primary-btn{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#090d14;
  box-shadow:0 18px 42px rgba(245,197,66,.22);
}

.outline-btn{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:white;
}

.outline-btn i{
  color:var(--gold);
}

.trust-pills{
  margin-top:28px;
  display:flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  overflow:hidden;
  width:max-content;
  background:rgba(255,255,255,.03);
}

.trust-pills span{
  padding:13px 19px;
  font-size:13px;
  color:#eef2f7;
  border-right:1px solid rgba(255,255,255,.12);
}

.trust-pills span:last-child{
  border-right:0;
}

.trust-pills i{
  color:var(--gold);
  margin-right:8px;
}

/* RIGHT REPAIR CARD */

.repair-card{
  min-height:410px;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 30px 100px rgba(0,0,0,.45);
  overflow:hidden;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  position:relative;
}

.card-content{
  padding:34px 0 34px 34px;
  z-index:2;
}

.card-icon{
  width:68px;
  height:68px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#081019;
  font-size:31px;
  margin-bottom:24px;
}

.card-content h2{
  font-size:28px;
  font-weight:800;
}

.card-content p{
  margin-top:10px;
  font-size:15px;
  color:#c9d0da;
}

.steps{
  margin-top:24px;
  display:grid;
  gap:12px;
}

.steps div{
  height:58px;
  padding:0 18px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.steps b{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(245,197,66,.13);
  color:var(--gold);
}

.steps span{
  font-size:14px;
  font-weight:700;
}

.card-image{
  background:url("https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?q=80&w=900&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  clip-path:ellipse(85% 75% at 100% 50%);
  opacity:.88;
}

.card-image::before{
  content:"";
  position:absolute;
  right:150px;
  top:60px;
  height:300px;
  width:4px;
  background:linear-gradient(var(--gold),var(--gold2));
  border-radius:10px;
  transform:rotate(14deg);
}

/* STATS */

.stats-box{
  position:relative;
  z-index:3;
  margin-top:64px;
  padding:24px 50px;
  border-radius:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 25px 80px rgba(0,0,0,.35);
}

.stats-box div{
  display:grid;
  grid-template-columns:58px 1fr;
  column-gap:18px;
  align-items:center;
  padding:0 18px;
  border-right:1px solid rgba(255,255,255,.14);
}

.stats-box div:last-child{
  border-right:0;
}

.stats-box i{
  width:58px;
  height:58px;
  border-radius:15px;
  display:grid;
  place-items:center;
  font-size:28px;
  color:var(--gold);
  background:rgba(255,255,255,.05);
}

.stats-box h3{
  font-size:25px;
  line-height:1;
}

.stats-box p{
  margin-top:8px;
  color:#aeb6c1;
  font-size:13px;
}

/* WHATSAPP */

.whatsapp-float{
  position:fixed;
  right:28px;
  bottom:28px;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#25d366;
  color:white;
  font-size:30px;
  z-index:999;
  box-shadow:0 20px 45px rgba(37,211,102,.35);
}

/* MOBILE */

.menu-btn{
  display:none;
  border:0;
  background:transparent;
  color:white;
  font-size:26px;
}

@media(max-width:1050px){
  .top-strip{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .call-btn{
    display:none;
  }

  .nav-menu{
    position:absolute;
    top:96px;
    left:5%;
    right:5%;
    background:#0b1018;
    border:1px solid var(--border);
    border-radius:18px;
    padding:20px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-menu.show{
    display:flex;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .stats-box{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-pills{
    width:100%;
    flex-direction:column;
    border-radius:18px;
  }

  .trust-pills span{
    width:100%;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
}

@media(max-width:600px){
  .container{
    width:92%;
  }

  .navbar{
    height:82px;
  }

  .logo-box{
    width:48px;
    height:48px;
  }

  .brand h3{
    font-size:21px;
  }

  .brand p{
    font-size:12px;
  }

  .hero{
    padding:45px 0;
  }

  .hero h1{
    font-size:36px;
    line-height:1.2;
  }

  .hero p{
    font-size:15px;
  }

  .primary-btn,
  .outline-btn{
    width:100%;
  }

  .repair-card{
    grid-template-columns:1fr;
  }

  .card-image{
    height:220px;
    clip-path:none;
  }

  .stats-box{
    grid-template-columns:1fr;
    padding:22px;
  }

  .stats-box div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
    padding:15px 0;
  }

  .stats-box div:last-child{
    border-bottom:0;
  }
}


/* PREMIUM HOME SECTIONS */

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 54px;
}

.section-head span,
.mini-title{
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.section-head h2,
.diagnosis-content h2,
.split-box h2{
  margin-top:14px;
  font-size:44px;
  line-height:1.15;
}

.section-head p,
.diagnosis-content p,
.split-box p{
  margin-top:15px;
  color:var(--muted);
  line-height:1.8;
}

/* SERVICE IMAGE GRID */

.premium-services{
  padding:100px 0;
  background:#070b12;
}

.premium-service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.premium-service-card{
  min-height:420px;
  position:relative;
  overflow:hidden;
  border-radius:26px;
  border:1px solid var(--border);
  background:#111821;
}



.premium-service-card img{
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
  opacity:.45;
  transition:.5s;
}

.premium-service-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,#070b12 5%,rgba(7,11,18,.78) 45%,rgba(7,11,18,.12));
}

.premium-service-card div{
  position:absolute;
  left:26px;
  right:26px;
  bottom:28px;
  z-index:2;
}

.premium-service-card i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:15px;
  color:#071018;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  font-size:25px;
  margin-bottom:18px;
}

.premium-service-card h3{
  font-size:26px;
  margin-bottom:12px;
}

.premium-service-card p{
  color:#d2d8e2;
  line-height:1.7;
  margin-bottom:18px;
}

.premium-service-card span{
  color:var(--gold);
  font-weight:800;
}

.premium-service-card:hover img{
  transform:scale(1.08);
  opacity:.62;
}

/* DIAGNOSIS */

.diagnosis-section{
  padding:100px 0;
  background:
    radial-gradient(circle at 85% 35%,rgba(245,197,66,.10),transparent 30%),
    #0a1018;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.diagnosis-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.diagnosis-image{
  height:560px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 35px 90px rgba(0,0,0,.38);
}

.diagnosis-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.86;
}

.diagnosis-points{
  margin:30px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.diagnosis-points div{
  padding:18px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--border);
  display:flex;
  gap:12px;
  align-items:center;
}

.diagnosis-points i{
  color:var(--gold);
  font-size:20px;
}

/* PROCESS */

.repair-process-pro{
  padding:100px 0;
  background:#070b12;
}

.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  position:relative;
}

.timeline div{
  padding:34px;
  border-radius:24px;
  background:linear-gradient(145deg,#121a25,#080d14);
  border:1px solid var(--border);
}

.timeline b{
  font-size:42px;
  color:rgba(245,197,66,.45);
}

.timeline h3{
  margin-top:18px;
  font-size:22px;
}

.timeline p{
  margin-top:10px;
  color:var(--muted);
  line-height:1.7;
}

/* CTA */

.split-cta{
  padding:80px 0;
  background:#070b12;
}

.split-box{
  padding:55px;
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(245,197,66,.18),rgba(255,255,255,.04)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  border:1px solid rgba(245,197,66,.30);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  position:relative;
}

.split-box::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(7,11,18,.74);
}

.split-box > *{
  position:relative;
  z-index:2;
}

.split-box span{
  color:var(--gold);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* TESTIMONIALS */

.testimonials-pro{
  padding:100px 0;
  background:#070b12;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.testimonial-grid div{
  padding:34px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid var(--border);
}

.testimonial-grid p{
  color:#d2d8e2;
  line-height:1.8;
  font-size:16px;
}

.testimonial-grid h4{
  margin-top:22px;
  font-size:18px;
}

.testimonial-grid span{
  margin-top:10px;
  display:block;
  color:var(--gold);
  letter-spacing:3px;
}

/* FOOTER */

.footer-main{
  padding-top:75px;
  background:#05080d;
  border-top:1px solid var(--border);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-main h3{
  font-size:28px;
}

.footer-main h3 span,
.footer-main h4{
  color:var(--gold);
}

.footer-main p,
.footer-main a{
  display:block;
  color:var(--muted);
  margin-top:12px;
  line-height:1.7;
}

.footer-bottom{
  margin-top:55px;
  padding:22px;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--border);
}

/* RESPONSIVE */

@media(max-width:1050px){
  .premium-service-grid,
  .diagnosis-grid,
  .timeline,
  .testimonial-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .premium-service-card.large{
    grid-column:span 1;
  }

  .split-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .premium-service-grid,
  .diagnosis-grid,
  .diagnosis-points,
  .timeline,
  .testimonial-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .diagnosis-image{
    height:360px;
  }

  .section-head h2,
  .diagnosis-content h2,
  .split-box h2{
    font-size:32px;
  }

  .premium-service-card{
    min-height:360px;
  }

  .split-box{
    padding:34px;
  }
}

/* NEW PREMIUM FOOTER */

.new-footer{
  position:relative;
  margin-top:100px;
  padding-top:90px;
  background:
    radial-gradient(circle at top right, rgba(245,197,66,.10), transparent 25%),
    linear-gradient(180deg,#070b12,#04070c);
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-glow{
  position:absolute;
  width:500px;
  height:500px;
  right:-180px;
  top:-120px;
  background:rgba(245,197,66,.10);
  filter:blur(120px);
  border-radius:50%;
}

.footer-cta{
  position:relative;
  z-index:2;
  margin-bottom:80px;
  padding:45px 50px;
  border-radius:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  background:
    linear-gradient(135deg,rgba(245,197,66,.12),rgba(255,255,255,.03));
  border:1px solid rgba(245,197,66,.22);
  backdrop-filter:blur(14px);
}

.footer-cta span{
  color:var(--gold);
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
}

.footer-cta h2{
  margin-top:12px;
  font-size:42px;
  line-height:1.15;
}

.footer-cta a{
  min-width:190px;
  height:58px;
  padding:0 28px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-weight:800;
  box-shadow:0 20px 45px rgba(245,197,66,.22);
}

.footer-main-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
}

.footer-brand-box{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-icon{
  width:74px;
  height:74px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:34px;
  color:#071018;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow:0 0 35px rgba(245,197,66,.24);
}

.footer-brand-box h2{
  font-size:38px;
}

.footer-brand-box h2 span{
  color:var(--gold);
}

.footer-brand-box p{
  margin-top:6px;
  color:#c7d0dc;
}

.footer-desc{
  margin-top:28px;
  max-width:540px;
  color:#bfc8d4;
  line-height:1.9;
  font-size:16px;
}

.footer-social-icons{
  display:flex;
  gap:14px;
  margin-top:32px;
}

.footer-social-icons a{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:19px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:white;
  transition:.3s;
}

.footer-social-icons a:hover{
  transform:translateY(-6px);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
}

.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-links-grid h3{
  margin-bottom:24px;
  color:var(--gold);
  font-size:19px;
}

.footer-links-grid a,
.footer-links-grid p{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:#c7d0dc;
  line-height:1.7;
  transition:.3s;
}

.footer-links-grid a:hover{
  color:var(--gold);
  transform:translateX(5px);
}

.footer-links-grid i{
  color:var(--gold);
}

.footer-bottom-new{
  position:relative;
  z-index:2;
  margin-top:70px;
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-bottom-new p{
  color:#9ca8b7;
}

.footer-bottom-new div{
  display:flex;
  gap:30px;
}

.footer-bottom-new a{
  color:#c7d0dc;
  transition:.3s;
}

.footer-bottom-new a:hover{
  color:var(--gold);
}

/* RESPONSIVE */

@media(max-width:1050px){

  .footer-main-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .footer-links-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-cta{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:600px){

  .footer-cta{
    padding:34px;
  }

  .footer-cta h2{
    font-size:32px;
  }

  .footer-brand-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-brand-box h2{
    font-size:30px;
  }

  .footer-links-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom-new{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-bottom-new div{
    flex-wrap:wrap;
    gap:18px;
  }

}

/* CLEAN FOOTER FIX */

.footer-links-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr 1.3fr;
  gap:55px;
}

.footer-links-grid > div{
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
}

.footer-links-grid h3{
  margin-bottom:24px;
  padding-bottom:0;
  border-bottom:0;
  font-size:20px;
}

.footer-links-grid a,
.footer-links-grid p{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:0;
  margin-bottom:18px;
  font-size:16px;
  line-height:1.6;
}

.footer-links-grid a::before{
  content:"";
  display:none;
}

.footer-links-grid i{
  width:20px;
  min-width:20px;
  margin-top:3px;
}

.footer-links-grid p{
  white-space:nowrap;
}

.footer-links-grid{
  grid-template-columns:1fr 1.2fr 1.6fr;
}

.footer-links-grid p{
  white-space: nowrap;
}

/* COVERAGE MAP SECTION */

.coverage-section{
  padding:100px 0;
  background:
    radial-gradient(circle at 75% 35%,rgba(245,197,66,.12),transparent 30%),
    #0a1018;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.coverage-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.coverage-content h2{
  margin-top:14px;
  font-size:44px;
  line-height:1.15;
}

.coverage-content p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.8;
  max-width:560px;
}

.coverage-list{
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.coverage-list span{
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#e6edf7;
  font-size:14px;
  font-weight:700;
}

.coverage-map{
  padding:18px;
  border-radius:30px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.map-bg{
  height:470px;
  border-radius:24px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(7,11,18,.65),rgba(7,11,18,.75)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.map-bg::before{
  content:"Delhi NCR Doorstep Coverage";
  position:absolute;
  left:26px;
  top:24px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(245,197,66,.12);
  border:1px solid rgba(245,197,66,.35);
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.pin{
  position:absolute;
  padding:9px 13px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:13px;
  font-weight:900;
  box-shadow:0 15px 35px rgba(245,197,66,.30);
}

.pin::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;
  transform:translateX(-50%);
  width:13px;
  height:13px;
  background:var(--gold);
  clip-path:polygon(50% 100%,0 0,100% 0);
}

.pin.delhi{left:44%;top:42%;}
.pin.noida{left:58%;top:52%;}
.pin.gurugram{left:28%;top:64%;}
.pin.ghaziabad{left:63%;top:35%;}
.pin.faridabad{left:52%;top:72%;}

@media(max-width:900px){
  .coverage-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .coverage-content h2{
    font-size:32px;
  }

  .map-bg{
    height:380px;
  }

  .pin{
    font-size:11px;
    padding:8px 10px;
  }
}

/* HERO SLIDER */

.hero-slider{
  position:relative;
}

.hero-slider .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}

.hero-slider .slide.active{
  opacity:.22;
}

.hero-slider::before{
  z-index:1;
}

.hero-slider::after{
  display:none;
}

.hero-slider .hero-grid,
.hero-slider .stats-box{
  position:relative;
  z-index:3;
}

.slider-controls{
  margin-top:28px;
  display:flex;
  gap:12px;
}

.slider-dot{
  width:38px;
  height:6px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.22);
  cursor:pointer;
  transition:.3s;
}

.slider-dot.active{
  width:64px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}


/* FIX HERO SLIDER */

.hero-slider{
  position:relative;
  overflow:hidden;
}

.hero-slider .slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease, visibility 1s ease;
  z-index:0;
}

.hero-slider .slide.active{
  opacity:.28;
  visibility:visible;
}

.hero-slider::before{
  z-index:1;
}

.hero-slider .hero-grid,
.hero-slider .stats-box{
  position:relative;
  z-index:3;
}

.slider-dot{
  cursor:pointer;
}


/* ABOUT PAGE */

.inner-hero{
  padding:110px 0;
  background:
    linear-gradient(rgba(7,11,18,.78),rgba(7,11,18,.88)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1400&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--border);
}

.inner-hero h1{
  margin-top:18px;
  max-width:850px;
  font-size:54px;
  line-height:1.1;
  letter-spacing:-2px;
}

.inner-hero p{
  margin-top:20px;
  max-width:760px;
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
}

.about-main{
  padding:100px 0;
  background:#070b12;
}

.about-main-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image{
  height:560px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-content h2{
  margin-top:14px;
  font-size:44px;
  line-height:1.15;
  letter-spacing:-1px;
}

.about-content p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.85;
}

.about-feature-list{
  margin-top:28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.about-feature-list div{
  padding:17px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--border);
  color:#e5edf7;
  font-weight:700;
}

.about-feature-list i{
  color:var(--gold);
  margin-right:10px;
}

.about-values{
  padding:100px 0;
  background:#0a1018;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.value-grid div{
  padding:32px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid var(--border);
}

.value-grid i{
  font-size:34px;
  color:var(--gold);
  margin-bottom:20px;
}

.value-grid h3{
  font-size:22px;
  margin-bottom:12px;
}

.value-grid p{
  color:var(--muted);
  line-height:1.75;
}

.about-mission{
  padding:90px 0;
  background:#070b12;
}

.mission-box{
  padding:55px;
  border-radius:30px;
  background:
    radial-gradient(circle at 85% 30%,rgba(245,197,66,.16),transparent 30%),
    linear-gradient(135deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.25);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
}

.mission-box h2{
  margin-top:14px;
  font-size:42px;
  line-height:1.15;
  max-width:760px;
}

.mission-box p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
  max-width:760px;
}

@media(max-width:900px){
  .about-main-grid,
  .value-grid{
    grid-template-columns:1fr 1fr;
  }

  .mission-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .inner-hero h1{
    font-size:36px;
  }

  .about-main-grid,
  .about-feature-list,
  .value-grid{
    grid-template-columns:1fr;
  }

  .about-image{
    height:360px;
  }

  .about-content h2,
  .mission-box h2{
    font-size:32px;
  }

  .mission-box{
    padding:34px;
  }
}

/* UPDATED ABOUT PAGE PREMIUM */

.about-story-pro{
  padding:110px 0;
  background:#070b12;
}

.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.story-left h2{
  margin-top:14px;
  font-size:48px;
  line-height:1.12;
  letter-spacing:-1.5px;
}

.story-left p{
  margin-top:20px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.story-signature{
  margin-top:34px;
  padding:24px;
  border-left:4px solid var(--gold);
  background:rgba(255,255,255,.045);
  border-radius:0 18px 18px 0;
}

.story-signature h4{
  font-size:22px;
}

.story-signature span{
  display:block;
  margin-top:6px;
  color:var(--gold);
  font-weight:700;
}

.story-right{
  position:relative;
}

.story-image-main{
  height:600px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 35px 90px rgba(0,0,0,.38);
}

.story-image-main img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-floating-card{
  position:absolute;
  left:-36px;
  bottom:42px;
  max-width:280px;
  padding:24px;
  border-radius:22px;
  background:rgba(10,16,24,.92);
  border:1px solid rgba(245,197,66,.28);
  box-shadow:0 25px 70px rgba(0,0,0,.42);
  backdrop-filter:blur(14px);
}

.story-floating-card i{
  font-size:34px;
  color:var(--gold);
  margin-bottom:14px;
}

.story-floating-card p{
  margin-top:8px;
  color:var(--muted);
  line-height:1.6;
}

/* LAB CARDS */

.about-lab-section{
  padding:80px 0;
  background:#0a1018;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.lab-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.lab-card{
  padding:34px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid var(--border);
  min-height:240px;
  transition:.3s;
}

.lab-card.featured,
.lab-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.4);
}

.lab-card i{
  font-size:34px;
  color:var(--gold);
  margin-bottom:22px;
}

.lab-card h3{
  font-size:22px;
  margin-bottom:12px;
}

.lab-card p{
  color:var(--muted);
  line-height:1.75;
}

/* DIFFERENCE */

.difference-section{
  padding:110px 0;
  background:
    radial-gradient(circle at 80% 30%,rgba(245,197,66,.10),transparent 28%),
    #070b12;
}

.difference-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.difference-content h2{
  margin-top:14px;
  font-size:46px;
  line-height:1.15;
}

.difference-content p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.85;
}

.difference-list{
  margin-top:28px;
  display:grid;
  gap:16px;
}

.difference-list div{
  color:#e8eef7;
  font-weight:700;
}

.difference-list i{
  color:var(--gold);
  margin-right:10px;
}

.comparison-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.compare-card{
  padding:34px;
  border-radius:26px;
  border:1px solid var(--border);
}

.compare-card h3{
  margin-bottom:24px;
  font-size:22px;
}

.compare-card p{
  padding:15px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#cdd5df;
}

.compare-card p:last-child{
  border-bottom:0;
}

.compare-card.dull{
  background:rgba(255,255,255,.04);
  opacity:.82;
}

.compare-card.premium{
  background:
    linear-gradient(145deg,rgba(245,197,66,.13),rgba(255,255,255,.04));
  border-color:rgba(245,197,66,.28);
}

.compare-card.premium h3{
  color:var(--gold);
}

/* NUMBERS */

.about-numbers{
  padding:50px 0;
  background:#0a1018;
  border-block:1px solid var(--border);
}

.number-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.number-grid div{
  padding:28px;
  border-radius:20px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  text-align:center;
}

.number-grid h3{
  font-size:34px;
  color:var(--gold);
}

.number-grid p{
  margin-top:8px;
  color:var(--muted);
}

@media(max-width:900px){
  .story-grid,
  .difference-grid,
  .comparison-box,
  .lab-grid,
  .number-grid{
    grid-template-columns:1fr 1fr;
  }

  .story-floating-card{
    left:24px;
  }
}

@media(max-width:600px){
  .story-grid,
  .difference-grid,
  .comparison-box,
  .lab-grid,
  .number-grid{
    grid-template-columns:1fr;
  }

  .story-left h2,
  .difference-content h2{
    font-size:34px;
  }

  .story-image-main{
    height:380px;
  }

  .story-floating-card{
    position:relative;
    left:0;
    bottom:0;
    margin-top:18px;
    max-width:100%;
  }
}

/* ABOUT GALLERY */

.about-gallery-strip{
  padding:20px 0 100px;
  background:#070b12;
}

.gallery-strip-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .7fr;
  gap:22px;
}

.gallery-box{
  height:330px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#111821;
}

.gallery-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.gallery-box:hover img{
  transform:scale(1.06);
}

@media(max-width:700px){
  .gallery-strip-grid{
    grid-template-columns:1fr;
  }

  .gallery-box{
    height:280px;
  }
}

/* ABOUT SERVICE HIGHLIGHT */

.about-service-highlight{
  padding:110px 0;
  background:
    radial-gradient(circle at 80% 20%,rgba(245,197,66,.10),transparent 28%),
    #070b12;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.highlight-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:start;
}

.highlight-heading{
  position:sticky;
  top:120px;
}

.highlight-heading .mini-title{
  color:var(--gold);
}

.highlight-heading h2{
  margin-top:18px;
  font-size:58px;
  line-height:1.05;
  letter-spacing:-2.5px;
  max-width:520px;
  color:white;
}

.highlight-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}

.highlight-text-card{
  padding:20px 10px;
}

.highlight-text-card h3,
.highlight-box h3{
  font-size:25px;
  line-height:1.12;
  margin-bottom:18px;
  color:white;
}

.highlight-text-card p{
  color:#bfc8d4;
  font-size:16px;
  line-height:1.8;
}

.highlight-box{
  min-height:240px;
  padding:34px;
  border-radius:30px;
  color:white;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
  backdrop-filter:blur(12px);
}

.highlight-box.sage{
  background:
    linear-gradient(145deg,rgba(164,180,120,.85),rgba(126,143,88,.85));
}

.highlight-box.gold{
  background:
    linear-gradient(145deg,rgba(245,197,66,.95),rgba(214,161,13,.95));
  color:#071018;
}

.highlight-box.gold h3,
.highlight-box.gold p{
  color:#071018;
}

.highlight-box p{
  color:#eef2f7;
  font-size:16px;
  line-height:1.75;
}

@media(max-width:900px){

  .highlight-grid{
    grid-template-columns:1fr;
  }

  .highlight-heading{
    position:static;
  }

  .highlight-heading h2{
    font-size:42px;
    max-width:100%;
  }

}

@media(max-width:600px){

  .about-service-highlight{
    padding:80px 0;
  }

  .highlight-features{
    grid-template-columns:1fr;
  }

  .highlight-heading h2{
    font-size:34px;
  }

}


/* CONTACT PAGE */

.contact-hero{
  padding:120px 0 90px;
  background:
    radial-gradient(circle at 75% 30%,rgba(245,197,66,.10),transparent 28%),
    #070b12;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-hero h1{
  margin-top:16px;
  font-size:64px;
  line-height:1.05;
  letter-spacing:-2.5px;
  max-width:850px;
}

.contact-hero p{
  margin-top:20px;
  max-width:760px;
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
}

.contact-main-section{
  padding:100px 0;
  background:#0a1018;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
}

.contact-info-side{
  display:grid;
  gap:22px;
}

.contact-card-premium{
  padding:30px;
  border-radius:28px;
  background:
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  gap:22px;
  align-items:flex-start;
}

.contact-icon{
  min-width:64px;
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:28px;
}

.contact-card-premium span{
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
}

.contact-card-premium h3{
  margin-top:10px;
  font-size:21px;
  line-height:1.5;
}

.contact-form-box{
  padding:45px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right,rgba(245,197,66,.12),transparent 28%),
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.18);
}

.contact-form-box h2{
  margin-top:14px;
  font-size:42px;
}

.premium-contact-form{
  margin-top:35px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.input-group{
  margin-bottom:24px;
}

.input-group label{
  display:block;
  margin-bottom:12px;
  font-size:14px;
  color:#d7dee7;
  font-weight:700;
}

.input-group input,
.input-group textarea,
.input-group select{
  width:100%;
  padding:18px 20px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:#0d141d;
  color:white;
  outline:none;
  font-size:15px;
}

.input-group textarea{
  height:150px;
  resize:none;
}

.map-section{
  padding:100px 0;
  background:#070b12;
}

.map-head{
  margin-bottom:40px;
}

.map-head h2{
  margin-top:14px;
  font-size:46px;
}

.map-box{
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
}

.map-box iframe{
  width:100%;
  height:520px;
  border:0;
  filter:grayscale(1) invert(.92);
}

@media(max-width:900px){

  .contact-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .contact-hero h1{
    font-size:38px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-form-box{
    padding:30px;
  }

  .map-head h2{
    font-size:34px;
  }

}

/* PREMIUM CONTACT UPDATED */

.contact-premium-section{
  padding:110px 0;
  background:
    radial-gradient(circle at 80% 20%,rgba(245,197,66,.12),transparent 28%),
    #070b12;
}

.contact-premium-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:50px;
  align-items:start;
}

.contact-left-premium h2{
  margin-top:16px;
  font-size:52px;
  line-height:1.08;
  letter-spacing:-2px;
}

.contact-left-premium p{
  margin-top:20px;
  color:var(--muted);
  line-height:1.85;
  max-width:620px;
}

.premium-contact-list{
  margin-top:34px;
  display:grid;
  gap:18px;
}

.premium-contact-item{
  padding:24px;
  border-radius:22px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.premium-contact-item:hover{
  transform:translateY(-6px);
  border-color:rgba(245,197,66,.35);
}

.premium-contact-item i{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:23px;
}

.premium-contact-item span{
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.premium-contact-item h3{
  margin-top:8px;
  font-size:18px;
  line-height:1.55;
}

.contact-form-luxury{
  padding:44px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right,rgba(245,197,66,.16),transparent 32%),
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.24);
  box-shadow:0 35px 100px rgba(0,0,0,.35);
}

.form-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 15px;
  border-radius:999px;
  background:rgba(245,197,66,.10);
  border:1px solid rgba(245,197,66,.30);
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
}

.contact-form-luxury h2{
  margin-top:22px;
  font-size:38px;
}

.map-section-premium{
  padding:100px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
}

.map-title-row{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:40px;
}

.map-title-row h2{
  margin-top:14px;
  font-size:46px;
  line-height:1.15;
}

.premium-map-box{
  padding:14px;
  border-radius:32px;
  background:linear-gradient(145deg,rgba(245,197,66,.18),rgba(255,255,255,.04));
  border:1px solid rgba(245,197,66,.25);
  box-shadow:0 35px 100px rgba(0,0,0,.35);
}

.premium-map-box iframe{
  width:100%;
  height:560px;
  border:0;
  border-radius:24px;
  filter:grayscale(.2) contrast(1.05);
}

@media(max-width:900px){
  .contact-premium-grid{
    grid-template-columns:1fr;
  }

  .map-title-row{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .contact-left-premium h2,
  .map-title-row h2{
    font-size:34px;
  }

  .contact-form-luxury{
    padding:30px;
  }

  .premium-map-box iframe{
    height:380px;
  }
}

.contact-hero-banner{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  background:url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.contact-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(7,11,18,.96),rgba(7,11,18,.70));
}

.contact-banner-content{
  position:relative;
  z-index:2;
}

.contact-banner-content h1{
  margin-top:18px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-2.5px;
  max-width:900px;
}

.contact-banner-content p{
  margin-top:22px;
  max-width:720px;
  color:#c8d0db;
  font-size:18px;
  line-height:1.8;
}

.contact-banner-content .hero-buttons{
  margin-top:34px;
}

@media(max-width:700px){
  .contact-banner-content h1{
    font-size:38px;
  }
}


/* SERVICES PAGE */

.service-hero{
  padding:120px 0 90px;
  background:
    linear-gradient(90deg,rgba(7,11,18,.96),rgba(7,11,18,.72)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.service-hero h1{
  margin-top:18px;
  max-width:930px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-2.5px;
}

.service-hero p{
  margin-top:22px;
  max-width:760px;
  color:#c8d0db;
  font-size:18px;
  line-height:1.85;
}

.services-page-section{
  padding:110px 0;
  background:#070b12;
}

.services-page-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.service-page-card{
  position:relative;
  min-height:430px;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.service-page-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.48;
  transition:.5s;
}

.service-page-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,#070b12 5%,rgba(7,11,18,.68) 55%,rgba(7,11,18,.20));
}

.service-page-card:hover img{
  transform:scale(1.08);
  opacity:.62;
}

.service-page-content{
  position:absolute;
  left:34px;
  right:34px;
  bottom:34px;
  z-index:2;
}

.service-page-content i{
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#071018;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  font-size:28px;
  margin-bottom:20px;
}

.service-page-content h3{
  font-size:30px;
  margin-bottom:14px;
}

.service-page-content p{
  color:#d2d8e2;
  line-height:1.75;
  max-width:520px;
  margin-bottom:18px;
}

.service-page-content span{
  color:var(--gold);
  font-weight:800;
}

.service-process-luxury{
  padding:100px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

@media(max-width:800px){
  .services-page-grid{
    grid-template-columns:1fr;
  }

  .service-hero h1{
    font-size:40px;
  }

  .service-page-card{
    min-height:380px;
  }
}

/* SERVICE DETAIL PAGES */

.service-detail-hero{
  padding:120px 0 100px;
  background:
    linear-gradient(90deg,rgba(7,11,18,.96),rgba(7,11,18,.74)),
    url("https://images.unsplash.com/photo-1588872657578-7efd1f1555ed?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.service-detail-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.service-detail-hero h1{
  margin-top:18px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-2.5px;
  max-width:900px;
}

.service-detail-hero p{
  margin-top:22px;
  max-width:760px;
  color:#c8d0db;
  font-size:18px;
  line-height:1.85;
}

.service-detail-card{
  padding:38px;
  border-radius:32px;
  background:
    radial-gradient(circle at top right,rgba(245,197,66,.16),transparent 30%),
    linear-gradient(145deg,rgba(17,24,33,.92),rgba(8,13,20,.92));
  border:1px solid rgba(245,197,66,.24);
  box-shadow:0 35px 90px rgba(0,0,0,.38);
}

.service-detail-card i{
  width:72px;
  height:72px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:34px;
  color:#071018;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  margin-bottom:24px;
}

.service-detail-card h3{
  font-size:28px;
  margin-bottom:18px;
}

.service-detail-card ul{
  list-style:none;
}

.service-detail-card li{
  padding:15px 0;
  color:#d4dbe6;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.service-detail-card li:last-child{
  border-bottom:0;
}

.service-issues-section{
  padding:105px 0;
  background:#070b12;
}

.issue-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.issue-grid div{
  padding:32px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.08);
  transition:.3s;
}

.issue-grid div:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.35);
}

.issue-grid i{
  font-size:34px;
  color:var(--gold);
  margin-bottom:20px;
}

.issue-grid h3{
  font-size:22px;
  margin-bottom:12px;
}

.issue-grid p{
  color:var(--muted);
  line-height:1.75;
}

.service-image-text{
  padding:105px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.service-image-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.service-image-box{
  height:560px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.service-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-text-box h2{
  margin-top:16px;
  font-size:46px;
  line-height:1.12;
}

.service-text-box p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.85;
}

.service-check-list{
  margin-top:28px;
  display:grid;
  gap:16px;
}

.service-check-list div{
  color:#e6edf7;
  font-weight:700;
}

.service-check-list i{
  color:var(--gold);
  margin-right:10px;
}

.service-faq-section{
  padding:105px 0;
  background:#070b12;
}

.faq-detail-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:60px;
}

.faq-detail-grid h2{
  margin-top:14px;
  font-size:44px;
  line-height:1.15;
}

.faq-detail-grid p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
}

@media(max-width:900px){
  .service-detail-grid,
  .service-image-grid,
  .faq-detail-grid{
    grid-template-columns:1fr;
  }

  .issue-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .service-detail-hero h1{
    font-size:38px;
  }

  .issue-grid{
    grid-template-columns:1fr;
  }

  .service-image-box{
    height:360px;
  }

  .service-text-box h2,
  .faq-detail-grid h2{
    font-size:32px;
  }
}

/* LAPTOP PAGE PREMIUM REBUILD */

.laptop-luxury-overview{
  padding:110px 0;
  background:#070b12;
}

.laptop-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.laptop-overview-text h2{
  margin-top:16px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-2px;
}

.laptop-overview-text p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.luxury-checks{
  margin-top:30px;
  display:grid;
  gap:16px;
}

.luxury-checks div{
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#e7edf6;
  font-weight:700;
}

.luxury-checks i{
  color:var(--gold);
  margin-right:10px;
}

.laptop-overview-image{
  position:relative;
  height:560px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 95px rgba(0,0,0,.38);
}

.laptop-overview-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-badge{
  position:absolute;
  left:28px;
  bottom:28px;
  padding:22px 26px;
  border-radius:22px;
  background:rgba(7,11,18,.86);
  border:1px solid rgba(245,197,66,.28);
  backdrop-filter:blur(14px);
}

.image-badge b{
  display:block;
  color:var(--gold);
  font-size:34px;
}

.image-badge span{
  color:#d8dee8;
  font-weight:700;
}

/* PROBLEMS */

.laptop-problems-premium{
  padding:110px 0;
  background:
    radial-gradient(circle at 80% 20%,rgba(245,197,66,.10),transparent 28%),
    #0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.problem-luxury-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.problem-luxury-card{
  padding:34px;
  min-height:250px;
  border-radius:26px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.problem-luxury-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.38);
}

.problem-luxury-card span{
  color:rgba(245,197,66,.45);
  font-size:42px;
  font-weight:800;
}

.problem-luxury-card h3{
  margin-top:20px;
  font-size:23px;
  line-height:1.2;
}

.problem-luxury-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.75;
}

/* REPAIR STANDARD */

.repair-standard-section{
  padding:110px 0;
  background:#070b12;
}

.repair-standard-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:22px;
}

.standard-card{
  min-height:280px;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  overflow:hidden;
}

.standard-card.dark{
  grid-row:span 2;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.standard-card.dark h2{
  margin-top:16px;
  font-size:36px;
  line-height:1.08;
  letter-spacing:-1.8px;
}

.standard-card.dark p{
  margin-top:20px;
  color:var(--muted);
  line-height:1.8;
}

.standard-card h3{
  color:rgba(245,197,66,.45);
  font-size:42px;
}

.standard-card h4{
  margin-top:18px;
  font-size:24px;
}

.standard-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.75;
}

.standard-card.gold{
  background:linear-gradient(145deg,var(--gold),var(--gold2));
  color:#071018;
}

.standard-card.gold h3,
.standard-card.gold p{
  color:#071018;
}

.standard-card.image-card{
  padding:0;
}

.standard-card.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CTA */

.laptop-service-cta{
  padding:90px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.laptop-cta-inner{
  padding:55px;
  border-radius:32px;
  background:
    linear-gradient(90deg,rgba(7,11,18,.92),rgba(7,11,18,.72)),
    url("images/images-01.jpeg");
  background-size:cover;
  background-position:center;
  border:1px solid rgba(245,197,66,.25);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
}

.laptop-cta-inner h2{
  margin-top:14px;
  font-size:44px;
  line-height:1.1;
}

.laptop-cta-inner p{
  margin-top:14px;
  color:#d1d7e1;
  line-height:1.8;
}

.laptop-cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

@media(max-width:900px){
  .laptop-overview-grid,
  .faq-detail-grid{
    grid-template-columns:1fr;
  }

  .problem-luxury-grid{
    grid-template-columns:1fr 1fr;
  }

  .repair-standard-grid{
    grid-template-columns:1fr 1fr;
  }

  .standard-card.dark{
    grid-row:auto;
    grid-column:span 2;
  }

  .laptop-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .laptop-overview-text h2,
  .standard-card.dark h2,
  .laptop-cta-inner h2{
    font-size:32px;
  }

  .laptop-overview-image{
    height:360px;
  }

  .problem-luxury-grid,
  .repair-standard-grid{
    grid-template-columns:1fr;
  }

  .standard-card.dark{
    grid-column:auto;
  }

  .laptop-cta-inner{
    padding:34px;
  }
}

.repair-standard-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.standard-card{
  min-height:260px;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  position:relative;
}

.standard-card.dark{
  grid-row:span 2;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.standard-card.dark h2{
  margin-top:18px;
  font-size:52px;
  line-height:1.02;
  letter-spacing:-2px;
}

.standard-card.dark p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.85;
  max-width:420px;
}

.standard-card h3{
  font-size:58px;
  color:rgba(245,197,66,.45);
  line-height:1;
}

.standard-card h4{
  margin-top:24px;
  font-size:28px;
}

.standard-card p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
}

.standard-card.gold{
  background:linear-gradient(145deg,var(--gold),#f3c63f);
  color:#071018;
}

.standard-card.gold h3,
.standard-card.gold h4,
.standard-card.gold p{
  color:#071018;
}

.standard-card.image-card{
  padding:0;
  min-height:260px;
}

.standard-card.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.standard-card.image-card:hover img{
  transform:scale(1.06);
}

/* FIX LAST BOX ALIGNMENT */

.repair-standard-grid .standard-card:last-child{
  grid-column:2 / span 2;
}

@media(max-width:900px){

  .repair-standard-grid{
    grid-template-columns:1fr 1fr;
  }

  .standard-card.dark{
    grid-column:span 2;
    grid-row:auto;
  }

  .repair-standard-grid .standard-card:last-child{
    grid-column:auto;
  }

}

@media(max-width:600px){

  .repair-standard-grid{
    grid-template-columns:1fr;
  }

  .standard-card.dark{
    grid-column:auto;
  }

  .standard-card.dark h2{
    font-size:36px;
  }

  .repair-standard-grid .standard-card:last-child{
    grid-column:auto;
  }

}


/* REPAIR STANDARD LEFT CARD FIX */

.standard-card.dark{
  padding:42px;
  justify-content:center;
}

.standard-card.dark h2{
  font-size:44px;
  line-height:1.08;
  letter-spacing:-1.5px;
  max-width:420px;
}

.standard-card.dark p{
  max-width:430px;
  font-size:16px;
  line-height:1.75;
}

.repair-mini-stats{
  margin-top:34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.repair-mini-stats div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
}

.repair-mini-stats h3{
  font-size:34px !important;
  line-height:1;
  color:var(--gold) !important;
  margin:0 0 8px;
}

.repair-mini-stats span{
  display:block;
  color:#d8dee8;
  font-size:14px;
  font-weight:700;
}

/* STOP STANDARD H3 CSS BREAKING MINI STATS */

.standard-card.dark .repair-mini-stats h3{
  color:var(--gold) !important;
}

/* BETTER RESPONSIVE */

@media(max-width:600px){
  .repair-mini-stats{
    grid-template-columns:1fr;
  }

  .standard-card.dark h2{
    font-size:34px;
  }
}


/* FAQ SECTION FIX */

.service-faq-section{
  padding:110px 0;
  background:#070b12;
  border-top:1px solid rgba(255,255,255,.06);
}

.faq-detail-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:flex-start;
}

.faq-detail-grid h2{
  margin-top:16px;
  font-size:52px;
  line-height:1.08;
  letter-spacing:-2px;
  max-width:520px;
}

.faq-detail-grid p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.85;
  max-width:500px;
}

/* FAQ BOX */

.faq-box{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-box details{
  padding:24px 28px;
  border-radius:22px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.08);
  transition:.3s;
}

.faq-box details[open]{
  border-color:rgba(245,197,66,.28);
}

.faq-box summary{
  cursor:pointer;
  list-style:none;
  font-size:19px;
  font-weight:700;
  color:white;
  position:relative;
  padding-right:30px;
}

.faq-box summary::-webkit-details-marker{
  display:none;
}

.faq-box summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:var(--gold);
  font-size:24px;
  font-weight:700;
}

.faq-box details[open] summary::after{
  content:"−";
}

.faq-box details p{
  margin-top:18px;
  color:#cdd4de;
  line-height:1.8;
  font-size:15px;
  max-width:none;
}

/* MOBILE */

@media(max-width:900px){

  .faq-detail-grid{
    grid-template-columns:1fr;
  }

  .faq-detail-grid h2{
    font-size:38px;
    max-width:100%;
  }

}

/* BRAND REPAIR SECTION */

.brand-repair-section{
  padding:110px 0;
  background:
    radial-gradient(circle at 82% 20%,rgba(245,197,66,.10),transparent 28%),
    #070b12;
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.brand-repair-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.brand-repair-card{
  padding:34px;
  min-height:285px;
  border-radius:26px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.brand-repair-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.38);
  box-shadow:0 30px 80px rgba(0,0,0,.30);
}

.brand-repair-card i{
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:25px;
  margin-bottom:22px;
}

.brand-repair-card h3{
  font-size:23px;
  margin-bottom:14px;
}

.brand-repair-card p{
  color:var(--muted);
  line-height:1.75;
  margin-bottom:22px;
}

.brand-repair-card a{
  color:var(--gold);
  font-weight:800;
}

@media(max-width:900px){
  .brand-repair-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .brand-repair-grid{
    grid-template-columns:1fr;
  }
}


/* MACBOOK PAGE */

.macbook-hero{
  background:
    linear-gradient(90deg,rgba(7,11,18,.96),rgba(7,11,18,.70)),
    url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.mac-premium-overview{
  padding:110px 0;
  background:#070b12;
}

.mac-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.mac-overview-content h2{
  margin-top:16px;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-2px;
}

.mac-overview-content p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.mac-highlight-list{
  margin-top:30px;
  display:grid;
  gap:16px;
}

.mac-highlight-list div{
  padding:17px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#e7edf6;
  font-weight:700;
}

.mac-highlight-list i{
  color:var(--gold);
  margin-right:10px;
}

.mac-overview-image{
  height:560px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 95px rgba(0,0,0,.38);
}

.mac-overview-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mac-service-list-section{
  padding:110px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.mac-service-category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.mac-category-card{
  padding:34px;
  border-radius:28px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  min-height:430px;
  transition:.3s;
}

.mac-category-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.35);
}

.mac-category-card i{
  width:60px;
  height:60px;
  border-radius:17px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:26px;
  margin-bottom:22px;
}

.mac-category-card h3{
  font-size:23px;
  margin-bottom:18px;
}

.mac-category-card ul{
  list-style:none;
}

.mac-category-card li{
  padding:11px 0;
  color:#cdd5df;
  border-bottom:1px solid rgba(255,255,255,.07);
  line-height:1.5;
}

.mac-category-card li:last-child{
  border-bottom:0;
}

.mac-symptom-section{
  padding:110px 0;
  background:#070b12;
}

.symptom-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:start;
}

.symptom-heading h2{
  margin-top:16px;
  font-size:35px;
  line-height:1.08;
  letter-spacing:-2px;
}

.symptom-list{
  display:grid;
  gap:16px;
}

.symptom-list div{
  padding:22px 24px;
  border-radius:20px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  color:#e8eef7;
  font-weight:700;
}

.symptom-list span{
  color:var(--gold);
  margin-right:14px;
  font-size:22px;
  font-weight:800;
}

.mac-model-section{
  padding:90px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.mac-model-box{
  padding:55px;
  border-radius:34px;
  background:
    radial-gradient(circle at 85% 30%,rgba(245,197,66,.16),transparent 30%),
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.24);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
}

.mac-model-box h2{
  margin-top:14px;
  font-size:34px;
  line-height:1.12;
  max-width:800px;
}

.mac-model-box p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
  max-width:850px;
}

@media(max-width:900px){
  .mac-overview-grid,
  .symptom-grid{
    grid-template-columns:1fr;
  }

  .mac-service-category-grid{
    grid-template-columns:1fr 1fr;
  }

  .mac-model-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .mac-overview-content h2,
  .symptom-heading h2,
  .mac-model-box h2{
    font-size:34px;
  }

  .mac-overview-image{
    height:360px;
  }

  .mac-service-category-grid{
    grid-template-columns:1fr;
  }

  .mac-model-box{
    padding:34px;
  }
}


/* MACBOOK AIR M2 SECTION */

.macbook-air-section{
  padding:110px 0;
  background:
    radial-gradient(circle at 82% 25%,rgba(245,197,66,.10),transparent 30%),
    #070b12;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.macbook-air-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:60px;
  align-items:center;
}

.macbook-air-content h2{
  margin-top:16px;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-2px;
}

.macbook-air-content p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.macbook-air-points{
  margin:32px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.macbook-air-points div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  gap:12px;
}

.macbook-air-points i{
  color:var(--gold);
  font-size:20px;
}

.macbook-air-points span{
  color:#e7edf6;
  font-weight:700;
  line-height:1.5;
}

.macbook-air-panel{
  padding:38px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right,rgba(245,197,66,.15),transparent 32%),
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.22);
  box-shadow:0 35px 95px rgba(0,0,0,.35);
}

.air-panel-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:30px;
}

.air-panel-top i{
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:30px;
}

.air-panel-top h3{
  font-size:28px;
  line-height:1.2;
}

.air-service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.air-service-list span{
  padding:14px 15px;
  border-radius:14px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#d8dee8;
  font-size:14px;
  line-height:1.45;
  transition:.3s;
}

.air-service-list span:hover{
  border-color:rgba(245,197,66,.35);
  color:white;
}

@media(max-width:900px){
  .macbook-air-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .macbook-air-content h2{
    font-size:34px;
  }

  .macbook-air-points,
  .air-service-list{
    grid-template-columns:1fr;
  }

  .macbook-air-panel{
    padding:28px;
  }
}


/* LED LCD TV PAGE */

.tv-hero{
  background:
    linear-gradient(90deg,rgba(7,11,18,.96),rgba(7,11,18,.70)),
    url("https://images.unsplash.com/photo-1593305841991-05c297ba4575?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.tv-overview-section{
  padding:110px 0;
  background:#070b12;
}

.tv-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.tv-overview-image{
  position:relative;
  height:560px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 95px rgba(0,0,0,.38);
}

.tv-overview-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tv-image-label{
  position:absolute;
  left:28px;
  bottom:28px;
  padding:22px 26px;
  border-radius:22px;
  background:rgba(7,11,18,.86);
  border:1px solid rgba(245,197,66,.28);
  backdrop-filter:blur(14px);
}

.tv-image-label b{
  display:block;
  color:var(--gold);
  font-size:32px;
}

.tv-image-label span{
  color:#d8dee8;
  font-weight:700;
}

.tv-overview-content h2{
  margin-top:16px;
  font-size:32px;
  line-height:1.08;
  letter-spacing:-2px;
}

.tv-overview-content p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.tv-check-list{
  margin-top:30px;
  display:grid;
  gap:16px;
}

.tv-check-list div{
  padding:17px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#e7edf6;
  font-weight:700;
}

.tv-check-list i{
  color:var(--gold);
  margin-right:10px;
}

.tv-problems-section{
  padding:110px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.tv-problem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.tv-problem-card{
  padding:34px;
  min-height:250px;
  border-radius:26px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.tv-problem-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.38);
}

.tv-problem-card span{
  color:rgba(245,197,66,.45);
  font-size:42px;
  font-weight:800;
}

.tv-problem-card h3{
  margin-top:20px;
  font-size:23px;
  line-height:1.2;
}

.tv-problem-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.75;
}

.tv-brand-section{
  padding:100px 0;
  background:#070b12;
}

.tv-brand-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.tv-brand-grid div{
  padding:24px;
  border-radius:20px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:20px;
  font-weight:800;
  transition:.3s;
}

.tv-brand-grid div:hover{
  color:#071018;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.tv-service-process{
  padding:105px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.tv-process-box{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:60px;
  align-items:start;
}

.tv-process-heading h2{
  margin-top:16px;
  font-size:50px;
  line-height:1.08;
  letter-spacing:-2px;
}

.tv-process-heading p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.8;
}

.tv-process-steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.tv-process-steps div{
  padding:30px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
}

.tv-process-steps b{
  color:rgba(245,197,66,.45);
  font-size:40px;
}

.tv-process-steps h3{
  margin-top:18px;
  font-size:22px;
}

.tv-process-steps p{
  margin-top:12px;
  color:var(--muted);
  line-height:1.75;
}

@media(max-width:900px){
  .tv-overview-grid,
  .tv-process-box{
    grid-template-columns:1fr;
  }

  .tv-problem-grid,
  .tv-brand-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .tv-overview-content h2,
  .tv-process-heading h2{
    font-size:34px;
  }

  .tv-overview-image{
    height:360px;
  }

  .tv-problem-grid,
  .tv-brand-grid,
  .tv-process-steps{
    grid-template-columns:1fr;
  }
}


/* EXTRA LED LCD TV SECTIONS */

.tv-panel-section{
  padding:110px 0;
  background:
    radial-gradient(circle at 82% 30%,rgba(245,197,66,.10),transparent 30%),
    #0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.tv-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.tv-panel-content h2{
  margin-top:16px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-2px;
}

.tv-panel-content p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.tv-panel-points{
  margin-top:30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.tv-panel-points div{
  padding:18px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#e7edf6;
  font-weight:700;
}

.tv-panel-points i{
  color:var(--gold);
  margin-right:10px;
}

.tv-panel-visual{
  min-height:470px;
  border-radius:34px;
  padding:34px;
  background:
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.20);
  box-shadow:0 35px 95px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
}

.screen-frame{
  width:100%;
  max-width:520px;
  height:300px;
  border:12px solid #1c2633;
  border-radius:28px;
  background:
    radial-gradient(circle at center,rgba(245,197,66,.30),transparent 35%),
    linear-gradient(135deg,#0b1220,#02040a);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.screen-frame::after{
  content:"";
  position:absolute;
  bottom:-45px;
  width:150px;
  height:12px;
  border-radius:999px;
  background:#1c2633;
}

.screen-glow{
  position:absolute;
  inset:40px;
  background:rgba(245,197,66,.16);
  filter:blur(45px);
}

.screen-frame h3{
  position:relative;
  z-index:2;
  font-size:34px;
}

.screen-frame p{
  position:relative;
  z-index:2;
  margin-top:12px;
  color:#d8dee8;
}

/* TV SIZE */

.tv-size-section{
  padding:100px 0;
  background:#070b12;
}

.tv-size-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.tv-size-grid div{
  padding:34px;
  border-radius:26px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  text-align:center;
  transition:.3s;
}

.tv-size-grid div:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.35);
}

.tv-size-grid h3{
  font-size:30px;
  color:var(--gold);
}

.tv-size-grid p{
  margin-top:10px;
  color:var(--muted);
}

/* WARNING */

.tv-warning-section{
  padding:110px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.warning-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
}

.warning-grid h2{
  margin-top:16px;
  font-size:50px;
  line-height:1.08;
  letter-spacing:-2px;
}

.warning-list{
  display:grid;
  gap:16px;
}

.warning-list div{
  padding:22px 24px;
  border-radius:20px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  color:#e8eef7;
  font-weight:700;
}

.warning-list span{
  color:var(--gold);
  margin-right:14px;
  font-size:22px;
  font-weight:800;
}

@media(max-width:900px){
  .tv-panel-grid,
  .warning-grid{
    grid-template-columns:1fr;
  }

  .tv-size-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .tv-panel-content h2,
  .warning-grid h2{
    font-size:34px;
  }

  .tv-panel-points,
  .tv-size-grid{
    grid-template-columns:1fr;
  }

  .tv-panel-visual{
    min-height:360px;
  }
}


/* PREMIUM TV WARNING SECTION */

.premium-tv-warning{
  padding:110px 0;
  background:
    radial-gradient(circle at 18% 25%,rgba(245,197,66,.10),transparent 28%),
    #070b12;
}

.warning-premium-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:55px;
  align-items:stretch;
}

.warning-left-card{
  padding:45px;
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(7,11,18,.88),rgba(7,11,18,.72)),
    url("https://images.unsplash.com/photo-1593305841991-05c297ba4575?q=80&w=1200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  border:1px solid rgba(245,197,66,.22);
  box-shadow:0 35px 90px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:520px;
}

.warning-left-card h2{
  margin-top:18px;
  font-size:48px;
  line-height:1.08;
  letter-spacing:-2px;
}

.warning-left-card p{
  margin-top:22px;
  color:#d0d7e2;
  line-height:1.85;
  max-width:520px;
}

.warning-mini-box{
  margin-top:40px;
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  gap:18px;
  backdrop-filter:blur(12px);
}

.warning-mini-box i{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:23px;
}

.warning-mini-box h3{
  font-size:20px;
}

.warning-mini-box span{
  display:block;
  margin-top:5px;
  color:#d8dee8;
  font-weight:700;
}

.warning-right-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.warning-premium-card{
  padding:28px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.warning-premium-card:hover{
  transform:translateY(-7px);
  border-color:rgba(245,197,66,.35);
}

.warning-premium-card span{
  color:var(--gold);
  font-size:34px;
  font-weight:900;
}

.warning-premium-card h3{
  margin-top:18px;
  font-size:22px;
}

.warning-premium-card p{
  margin-top:12px;
  color:var(--muted);
  line-height:1.7;
}

@media(max-width:900px){
  .warning-premium-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .warning-right-grid{
    grid-template-columns:1fr;
  }

  .warning-left-card{
    padding:32px;
    min-height:420px;
  }

  .warning-left-card h2{
    font-size:34px;
  }
}


/* PRINTER PAGE */

.printer-hero{
  background:
    linear-gradient(90deg,rgba(7,11,18,.96),rgba(7,11,18,.70)),
    url("https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?q=80&w=1600&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.printer-overview-section,
.printer-brand-section{
  padding:110px 0;
  background:#070b12;
}

.printer-overview-grid,
.printer-office-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.printer-overview-content h2,
.printer-office-card h2{
  margin-top:16px;
  font-size:52px;
  line-height:1.08;
  letter-spacing:-2px;
}

.printer-overview-content p,
.printer-office-card p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.printer-check-list,
.office-points{
  margin-top:30px;
  display:grid;
  gap:16px;
}

.printer-check-list div,
.office-points div{
  padding:17px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#e7edf6;
  font-weight:700;
}

.printer-check-list i,
.office-points i{
  color:var(--gold);
  margin-right:10px;
}

.printer-overview-image{
  position:relative;
  height:560px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 95px rgba(0,0,0,.38);
}

.printer-overview-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.printer-image-label{
  position:absolute;
  left:28px;
  bottom:28px;
  padding:22px 26px;
  border-radius:22px;
  background:rgba(7,11,18,.86);
  border:1px solid rgba(245,197,66,.28);
}

.printer-image-label b{
  display:block;
  color:var(--gold);
  font-size:32px;
}

.printer-problems-section,
.printer-office-section,
.printer-process-section{
  padding:110px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.printer-problem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.printer-problem-card{
  padding:34px;
  min-height:250px;
  border-radius:26px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.printer-problem-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.38);
}

.printer-problem-card span{
  color:rgba(245,197,66,.45);
  font-size:42px;
  font-weight:800;
}

.printer-problem-card h3{
  margin-top:20px;
  font-size:23px;
}

.printer-problem-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.75;
}

.printer-brand-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.printer-brand-grid div{
  padding:26px;
  border-radius:20px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:22px;
  font-weight:800;
  transition:.3s;
}

.printer-brand-grid div:hover{
  color:#071018;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
}

.printer-office-visual{
  min-height:470px;
  border-radius:34px;
  padding:34px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.20);
  box-shadow:0 35px 95px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
}

.printer-device{
  width:100%;
  max-width:520px;
  min-height:300px;
  border-radius:30px;
  background:
    radial-gradient(circle at center,rgba(245,197,66,.22),transparent 38%),
    #070b12;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  border:1px solid rgba(245,197,66,.20);
}

.printer-device i{
  font-size:64px;
  color:var(--gold);
  margin-bottom:20px;
}

.printer-device h3{
  font-size:32px;
}

.printer-device p{
  margin-top:12px;
  color:var(--muted);
}

.printer-process-box{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:60px;
}

.printer-process-heading h2{
  margin-top:16px;
  font-size:50px;
  line-height:1.08;
}

.printer-process-heading p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.8;
}

.printer-process-steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.printer-process-steps div{
  padding:30px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
}

.printer-process-steps b{
  color:rgba(245,197,66,.45);
  font-size:40px;
}

.printer-process-steps h3{
  margin-top:18px;
  font-size:22px;
}

.printer-process-steps p{
  margin-top:12px;
  color:var(--muted);
  line-height:1.75;
}

@media(max-width:900px){
  .printer-overview-grid,
  .printer-office-grid,
  .printer-process-box{
    grid-template-columns:1fr;
  }

  .printer-problem-grid,
  .printer-brand-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .printer-overview-content h2,
  .printer-office-card h2,
  .printer-process-heading h2{
    font-size:34px;
  }

  .printer-overview-image{
    height:360px;
  }

  .printer-problem-grid,
  .printer-brand-grid,
  .printer-process-steps{
    grid-template-columns:1fr;
  }
}


/* PRINTER PAGE LUXURY REBUILD */

.printer-luxury-intro{
  padding:110px 0;
  background:#070b12;
}

.printer-luxury-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.printer-luxury-left h2{
  margin-top:16px;
  font-size:54px;
  line-height:1.05;
  letter-spacing:-2px;
}

.printer-luxury-left p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
}

.printer-luxury-points{
  margin-top:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.printer-luxury-points div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:#e7edf6;
  font-weight:700;
}

.printer-luxury-points i{
  color:var(--gold);
  margin-right:10px;
}

/* PRINTER DASHBOARD */

.printer-dashboard-card{
  padding:38px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right,rgba(245,197,66,.18),transparent 30%),
    linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.24);
  box-shadow:0 35px 95px rgba(0,0,0,.35);
}

.printer-status-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
}

.printer-status-top span{
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
}

.printer-status-top h3{
  margin-top:8px;
  font-size:32px;
}

.printer-status-top i{
  width:72px;
  height:72px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:34px;
}

.printer-status-list{
  display:grid;
  gap:14px;
}

.printer-status-list div{
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  color:#dce4ef;
}

.printer-status-list b{
  color:var(--gold);
}

.printer-meter{
  margin:30px 0 18px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}

.printer-meter span{
  display:block;
  width:88%;
  height:100%;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
}

.printer-dashboard-card p{
  color:var(--muted);
  line-height:1.8;
}

/* SOLUTIONS */

.printer-solutions-section{
  padding:110px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.printer-solution-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
}

.printer-solution-card{
  padding:34px;
  min-height:280px;
  border-radius:28px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  transition:.3s;
}

.printer-solution-card.large{
  grid-row:span 2;
}

.printer-solution-card:hover{
  transform:translateY(-8px);
  border-color:rgba(245,197,66,.35);
}

.printer-solution-card i{
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:25px;
  margin-bottom:24px;
}

.printer-solution-card h3{
  font-size:25px;
  line-height:1.2;
}

.printer-solution-card p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
}

/* OFFICE */

.printer-office-premium{
  padding:110px 0;
  background:#070b12;
}

.office-premium-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:stretch;
}

.office-premium-card{
  padding:48px;
  border-radius:34px;
  background:
    linear-gradient(90deg,rgba(7,11,18,.94),rgba(7,11,18,.70)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1400&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
  border:1px solid rgba(245,197,66,.22);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.office-premium-card h2{
  margin-top:16px;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-2px;
}

.office-premium-card p{
  margin-top:20px;
  color:#d1d8e2;
  line-height:1.85;
}

.office-support-row{
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.office-support-row div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
}

.office-support-row h3{
  color:var(--gold);
  font-size:28px;
}

.office-support-row p{
  margin-top:8px;
  font-size:14px;
}

.office-mini-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.office-mini-cards div{
  padding:28px;
  border-radius:24px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
}

.office-mini-cards i{
  color:var(--gold);
  font-size:30px;
  margin-bottom:18px;
}

.office-mini-cards h3{
  font-size:22px;
}

.office-mini-cards p{
  margin-top:12px;
  color:var(--muted);
  line-height:1.75;
}

/* BRANDS */

.printer-brand-premium{
  padding:100px 0;
  background:#0a1018;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.brand-premium-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 44px;
}

.brand-premium-head h2{
  margin-top:14px;
  font-size:44px;
  line-height:1.15;
}

.printer-logo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.printer-logo-grid div{
  padding:30px;
  border-radius:22px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  text-align:center;
  font-size:24px;
  font-weight:900;
  transition:.3s;
}

.printer-logo-grid div:hover{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
}

/* PROCESS */

.printer-process-premium{
  padding:110px 0;
  background:#070b12;
}

.printer-process-premium-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:start;
}

.printer-process-premium-grid h2{
  margin-top:16px;
  font-size:50px;
  line-height:1.08;
}

.printer-process-premium-grid p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.8;
}

.printer-flow-line{
  display:grid;
  gap:18px;
}

.printer-flow-line div{
  padding:26px;
  border-radius:22px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(255,255,255,.09);
  display:grid;
  grid-template-columns:80px 1fr;
  align-items:center;
  column-gap:20px;
}

.printer-flow-line b{
  grid-row:span 2;
  color:rgba(245,197,66,.55);
  font-size:42px;
}

.printer-flow-line h3{
  font-size:22px;
}

.printer-flow-line p{
  margin-top:6px;
}

@media(max-width:900px){
  .printer-luxury-grid,
  .office-premium-grid,
  .printer-process-premium-grid{
    grid-template-columns:1fr;
  }

  .printer-solution-grid{
    grid-template-columns:1fr 1fr;
  }

  .printer-solution-card.large{
    grid-row:auto;
  }
}

@media(max-width:600px){
  .printer-luxury-left h2,
  .office-premium-card h2,
  .printer-process-premium-grid h2{
    font-size:34px;
  }

  .printer-luxury-points,
  .office-support-row,
  .office-mini-cards,
  .printer-logo-grid,
  .printer-solution-grid{
    grid-template-columns:1fr;
  }

  .printer-flow-line div{
    grid-template-columns:1fr;
  }
}


/* ================================
   FINAL MOBILE RESPONSIVE FIX
================================ */

html, body{
  max-width:100%;
  overflow-x:hidden;
}

img, iframe{
  max-width:100%;
}

/* Tablet */
@media(max-width:1024px){

  .container{
    width:92%;
  }

  .top-strip{
    display:none;
  }

  .navbar{
    height:82px;
  }

  .nav-menu{
    position:absolute;
    top:82px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    padding:24px;
    background:#0b1018;
    border:1px solid rgba(255,255,255,.10);
    border-radius:22px;
    z-index:9999;
  }

  .nav-menu.show{
    display:flex;
  }

  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    width:100%;
    margin-top:10px;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }

  .menu-btn{
    display:block;
  }

  .call-btn{
    display:none;
  }

  .hero-grid,
  .service-detail-grid,
  .contact-premium-grid,
  .contact-grid,
  .about-main-grid,
  .story-grid,
  .difference-grid,
  .coverage-grid,
  .laptop-overview-grid,
  .mac-overview-grid,
  .macbook-air-grid,
  .tv-overview-grid,
  .tv-panel-grid,
  .printer-luxury-grid,
  .office-premium-grid{
    grid-template-columns:1fr !important;
  }

  .stats-box,
  .premium-service-grid,
  .services-page-grid,
  .issue-grid,
  .problem-luxury-grid,
  .brand-repair-grid,
  .mac-service-category-grid,
  .tv-problem-grid,
  .tv-brand-grid,
  .printer-solution-grid,
  .printer-logo-grid,
  .footer-main-grid,
  .footer-links-grid{
    grid-template-columns:1fr 1fr !important;
  }

  .footer-main-grid{
    gap:50px;
  }
}

/* Mobile */
@media(max-width:600px){

  section{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .container{
    width:90%;
  }

  .brand h3{
    font-size:20px;
  }

  .brand p{
    font-size:11px;
  }

  .logo-box{
    width:46px;
    height:46px;
    font-size:22px;
  }

  .hero,
  .service-detail-hero,
  .contact-hero-banner,
  .service-hero{
    min-height:auto;
    padding:70px 0 !important;
  }

  .hero h1,
  .service-detail-hero h1,
  .contact-banner-content h1,
  .service-hero h1,
  .inner-hero h1{
    font-size:34px !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
  }

  h2,
  .section-head h2,
  .laptop-overview-text h2,
  .mac-overview-content h2,
  .macbook-air-content h2,
  .tv-overview-content h2,
  .tv-panel-content h2,
  .printer-luxury-left h2,
  .office-premium-card h2,
  .contact-left-premium h2{
    font-size:30px !important;
    line-height:1.18 !important;
    letter-spacing:-.8px !important;
  }

  p{
    font-size:15px !important;
  }

  .hero-buttons,
  .laptop-cta-actions,
  .cta-actions{
    flex-direction:column;
    width:100%;
  }

  .primary-btn,
  .outline-btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .trust-pills{
    width:100%;
    flex-direction:column;
    border-radius:18px;
  }

  .trust-pills span{
    width:100%;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.10);
  }

  .stats-box,
  .premium-service-grid,
  .services-page-grid,
  .issue-grid,
  .problem-luxury-grid,
  .brand-repair-grid,
  .mac-service-category-grid,
  .macbook-air-points,
  .air-service-list,
  .tv-problem-grid,
  .tv-brand-grid,
  .tv-panel-points,
  .tv-size-grid,
  .printer-solution-grid,
  .printer-logo-grid,
  .printer-luxury-points,
  .office-support-row,
  .office-mini-cards,
  .footer-main-grid,
  .footer-links-grid,
  .review-grid,
  .testimonial-grid,
  .number-grid,
  .lab-grid,
  .value-grid{
    grid-template-columns:1fr !important;
  }

  .stats-box{
    padding:20px !important;
  }

  .stats-box div{
    border-right:0 !important;
    border-bottom:1px solid rgba(255,255,255,.10);
    padding:18px 0 !important;
  }

  .stats-box div:last-child{
    border-bottom:0;
  }

  .repair-card{
    grid-template-columns:1fr !important;
  }

  .card-content{
    padding:28px !important;
  }

  .card-image{
    min-height:220px;
    clip-path:none !important;
  }

  .premium-service-card,
  .service-page-card{
    min-height:340px !important;
  }

  .diagnosis-image,
  .about-image,
  .story-image-main,
  .laptop-overview-image,
  .mac-overview-image,
  .tv-overview-image,
  .printer-overview-image,
  .service-image-box{
    height:340px !important;
  }

  .contact-form-luxury,
  .contact-form-box,
  .macbook-air-panel,
  .footer-cta,
  .mission-box,
  .split-box,
  .laptop-cta-inner,
  .office-premium-card{
    padding:28px !important;
  }

  .form-grid{
    grid-template-columns:1fr !important;
  }

  .repair-standard-grid{
    grid-template-columns:1fr !important;
  }

  .standard-card,
  .standard-card.dark{
    grid-column:auto !important;
    grid-row:auto !important;
    min-height:auto !important;
  }

  .faq-detail-grid,
  .printer-process-premium-grid,
  .tv-process-box,
  .warning-premium-grid{
    grid-template-columns:1fr !important;
    gap:35px !important;
  }

  .map-box iframe,
  .premium-map-box iframe{
    height:360px !important;
  }

  .footer-bottom-new,
  .footer-cta,
  .final-box,
  .mac-model-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-bottom-new div{
    flex-wrap:wrap;
    gap:14px;
  }

  .whatsapp-float{
    width:54px;
    height:54px;
    right:18px;
    bottom:18px;
    font-size:28px;
  }
}


/* ================================
   FINAL MOBILE MENU FIX
================================ */

@media(max-width:1024px){

  .navbar{
    position:sticky;
    top:0;
    z-index:99999;
  }

  .nav-inner{
    height:82px;
  }

  .menu-btn{
    display:flex !important;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    background:rgba(255,255,255,.05);
    color:white;
    font-size:22px;
    z-index:100001;
  }

  .nav-menu{
    position:fixed !important;
    top:82px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:calc(100vh - 82px);
    display:none !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:0 !important;
    padding:26px 24px !important;
    background:#070b12 !important;
    border-top:1px solid rgba(255,255,255,.10);
    border-radius:0 !important;
    z-index:100000 !important;
    overflow-y:auto;
  }

  .nav-menu.show{
    display:flex !important;
  }

  .nav-menu > a,
  .dropdown > a{
    width:100%;
    padding:16px 0;
    font-size:18px !important;
    font-weight:800 !important;
    color:white !important;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .nav-menu a.active{
    color:var(--gold) !important;
  }

  .nav-menu a.active::after{
    display:none !important;
  }

  .dropdown{
    width:100%;
  }

  .dropdown-menu{
    position:static !important;
    width:100% !important;
    display:none !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    margin:0 !important;
    padding:8px 0 12px 16px !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
  }

  .dropdown.open .dropdown-menu{
    display:block !important;
  }

  .dropdown-menu a{
    width:100%;
    padding:13px 0 !important;
    font-size:15px !important;
    color:#cfd7e3 !important;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

}

@media(max-width:1024px){

  .dropdown.open .dropdown-menu{
    display:block !important;
    padding-left:18px !important;
    margin-top:8px !important;
    margin-bottom:10px !important;
  }

  .dropdown.open .dropdown-menu a{
    display:block !important;
    color:#cbd5e1 !important;
    font-size:15px !important;
    font-weight:700 !important;
    padding:12px 0 !important;
  }

  .dropdown.open > a i{
    transform:rotate(180deg);
  }

  .dropdown > a i{
    transition:.3s;
  }
}


/* ================================
   FINAL CLEAN MOBILE NAV UI FIX
================================ */

@media(max-width:1024px){

  .navbar{
    height:74px !important;
    background:#070b12 !important;
  }

  .nav-inner{
    height:74px !important;
    width:100% !important;
    padding:0 14px !important;
  }

  .brand{
    gap:12px !important;
  }

  .logo-box{
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    border-radius:14px !important;
    font-size:22px !important;
  }

  .brand h3{
    font-size:20px !important;
    line-height:1.1 !important;
  }

  .brand p{
    font-size:13px !important;
    margin-top:4px !important;
  }

  .menu-btn{
    width:46px !important;
    height:46px !important;
    border-radius:14px !important;
    background:#121722 !important;
    border:1px solid rgba(255,255,255,.14) !important;
    color:#fff !important;
    font-size:22px !important;
  }

  .nav-menu{
    position:fixed !important;
    top:74px !important;
    left:0 !important;
    right:0 !important;
    height:auto !important;
    max-height:calc(100vh - 74px) !important;
    padding:22px 18px 26px !important;
    background:#070b12 !important;
    border-top:1px solid rgba(255,255,255,.10) !important;
    border-bottom:1px solid rgba(255,255,255,.10) !important;
    border-radius:0 !important;
    box-shadow:0 30px 80px rgba(0,0,0,.45) !important;
    overflow-y:auto !important;
  }

  .nav-menu > a,
  .dropdown > a{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    width:100% !important;
    padding:14px 0 !important;
    font-size:17px !important;
    line-height:1.2 !important;
    font-weight:800 !important;
    color:#ffffff !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
  }

  .nav-menu > a.active,
  .dropdown > a.active{
    color:var(--gold) !important;
  }

  .nav-menu a.active::after{
    display:none !important;
  }

  .dropdown{
    width:100% !important;
  }

  .dropdown-menu{
    position:static !important;
    display:none !important;
    width:100% !important;
    padding:10px 0 8px 14px !important;
    margin:0 !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
  }

  .dropdown.open .dropdown-menu{
    display:block !important;
  }

  .dropdown-menu a{
    display:block !important;
    padding:11px 0 !important;
    font-size:15px !important;
    font-weight:700 !important;
    color:#cbd5e1 !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
  }

  .dropdown-menu a:last-child{
    border-bottom:0 !important;
  }

  .dropdown > a i{
    color:var(--gold) !important;
    transition:.25s;
  }

  .dropdown.open > a i{
    transform:rotate(180deg);
  }
}

/* ================================
   FINAL MOBILE HERO TYPOGRAPHY FIX
================================ */

@media(max-width:600px){

  .hero-grid{
    gap:35px !important;
    padding:55px 0 35px !important;
  }

  .hero-left{
    width:100% !important;
  }

  .badge{
    max-width:100% !important;
    white-space:normal !important;
    line-height:1.35 !important;
    font-size:12px !important;
    padding:10px 16px !important;
  }

  .hero h1{
    margin-top:24px !important;
    font-size:35px !important;
    line-height:1.16 !important;
    letter-spacing:-1.2px !important;
    max-width:100% !important;
  }

  .hero h1 span{
    display:inline !important;
  }

  .hero p{
    margin-top:22px !important;
    font-size:16px !important;
    line-height:1.75 !important;
  }

  .hero-buttons{
    margin-top:28px !important;
    gap:14px !important;
  }

  .primary-btn,
  .outline-btn{
    min-height:54px !important;
    font-size:15px !important;
    padding:14px 18px !important;
  }

}

/* MOBILE HERO TEXT FIX ONLY */

@media(max-width:600px){

  .hero h1 br{
    display:none !important;
  }

  .hero h1{
    font-size:30px !important;
    line-height:1.2 !important;
    letter-spacing:-1px !important;
  }

  .hero h1 span{
    display:inline !important;
    font-size:30px !important;
  }

}

/* REMOVE YELLOW LINE FROM HERO CARD */

.card-image::before{
  display:none !important;
}

.repair-card::before,
.repair-card::after{
  display:none !important;
}

/* ================================
   PREMIUM LOADER + ANIMATIONS
================================ */

.preloader{
  position:fixed;
  inset:0;
  z-index:999999;
  background:
    radial-gradient(circle at 50% 35%,rgba(245,197,66,.12),transparent 28%),
    #070b12;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}

.preloader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-card{
  width:min(380px,88%);
  padding:38px 32px;
  border-radius:28px;
  background:linear-gradient(145deg,#111821,#080d14);
  border:1px solid rgba(245,197,66,.24);
  text-align:center;
  box-shadow:0 35px 100px rgba(0,0,0,.45);
}

.loader-icon{
  width:78px;
  height:78px;
  margin:0 auto 22px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#071018;
  font-size:36px;
  animation:loaderPulse 1.4s infinite ease-in-out;
}

.loader-card h3{
  font-size:28px;
}

.loader-card p{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.loader-line{
  margin-top:26px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}

.loader-line span{
  display:block;
  width:45%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  animation:loaderMove 1.3s infinite ease-in-out;
}

@keyframes loaderPulse{
  0%,100%{
    transform:scale(1);
    box-shadow:0 0 0 rgba(245,197,66,0);
  }
  50%{
    transform:scale(1.08);
    box-shadow:0 0 40px rgba(245,197,66,.35);
  }
}

@keyframes loaderMove{
  0%{
    transform:translateX(-110%);
  }
  100%{
    transform:translateX(240%);
  }
}

/* SCROLL REVEAL */

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:opacity .75s ease, transform .75s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* PREMIUM HOVER POLISH */

.service-page-card,
.premium-service-card,
.problem-luxury-card,
.mac-category-card,
.tv-problem-card,
.printer-solution-card,
.brand-repair-card,
.office-mini-cards div,
.warning-premium-card,
.faq-box details{
  will-change:transform;
}

.service-page-card:hover,
.premium-service-card:hover,
.problem-luxury-card:hover,
.mac-category-card:hover,
.tv-problem-card:hover,
.printer-solution-card:hover,
.brand-repair-card:hover,
.office-mini-cards div:hover,
.warning-premium-card:hover{
  box-shadow:0 30px 90px rgba(0,0,0,.40);
}

/* BUTTON MICRO ANIMATION */

.primary-btn,
.outline-btn,
.call-btn{
  position:relative;
  overflow:hidden;
}

.primary-btn::after,
.call-btn::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);
  transform:translateX(-120%);
  transition:.55s;
}

.primary-btn:hover::after,
.call-btn:hover::after{
  transform:translateX(120%);
}

/* FLOATING WHATSAPP PULSE */

.whatsapp-float{
  animation:whatsappPulse 2s infinite ease-in-out;
}

@keyframes whatsappPulse{
  0%,100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.08);
  }
}

/* Reduce animation for users who prefer less motion */
@media(prefers-reduced-motion:reduce){
  *{
    animation:none !important;
    transition:none !important;
  }
}



