:root{
  --primary:#0a2a43;
  --secondary:#134f7d;
  --accent:#f6b400;
  --dark:#081f33;
  --light:#f4f7fa;
  --text:#1f2933;
  --glow:0 0 18px rgba(246,180,0,.55);
}

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

body{
  font-family:"Inter","Segoe UI",Arial,sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.7;
}

a{text-decoration:none}

/* ================= NAVBAR ================= */

.navbar{
  position:sticky;
  top:0;
  z-index:5000;
  background:linear-gradient(90deg,#061827,#0a2a43);
  box-shadow:0 4px 20px rgba(0,0,0,.25);
}

.nav-wrap{
  max-width:1280px;
  margin:auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:48px;
}

/* ===== DESKTOP NAV ===== */
.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  color:#fff;
  font-weight:600;
  font-size:15px;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.3s;
}

.nav a:hover::after{
  width:100%;
}

.nav .cta{
  background:var(--accent);
  color:#000;
  padding:8px 18px;
  border-radius:6px;
  box-shadow:var(--glow);
}

/* ===== DROPDOWN ===== */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:36px;
  left:0;
  background:#fff;
  min-width:260px;
  box-shadow:0 15px 35px rgba(0,0,0,.2);
  display:none;
  border-radius:6px;
  overflow:hidden;
}

.dropdown-menu a{
  display:block;
  padding:12px 18px;
  color:#000;
  font-size:14px;
  border-bottom:1px solid #eee;
}

.dropdown-menu a:hover{
  background:var(--light);
  color:var(--primary);
}

.dropdown:hover .dropdown-menu{
  display:block;
}

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

.back-btn{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:#fff;
  transition:.4s;
}

/* Full Screen Mobile Menu */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#061827,#0a2a43);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:30px;
  transition:.5s ease;
  z-index:4000;
}

.mobile-menu a{
  color:#fff;
  font-size:20px;
  font-weight:600;
}

.mobile-menu.active{
  right:0;
}

/* Bottom Mobile Bar */
.mobile-bottom{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#081f33;
  justify-content:space-around;
  padding:12px 0;
  z-index:4000;
}

.mobile-bottom a{
  color:var(--accent);
  font-size:22px;
}

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

.premium-hero{
  position:relative;
  height:100vh;
  background:linear-gradient(135deg,#061827,#0a2a43,#081f33);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

.hero-content{
  max-width:800px;
  padding:20px;
}

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

.premium-hero h1 span{
  color:var(--accent);
  text-shadow:0 0 20px rgba(246,180,0,.8);
}

.premium-hero p{
  margin-top:20px;
  font-size:18px;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary{
  background:var(--accent);
  color:#000;
  padding:14px 30px;
  font-weight:700;
  border-radius:6px;
  box-shadow:var(--glow);
  transition:.3s;
}

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

.btn-outline{
  border:2px solid var(--accent);
  color:var(--accent);
  padding:14px 30px;
  border-radius:6px;
  transition:.3s;
}

.btn-outline:hover{
  background:var(--accent);
  color:#000;
}

/* ================= PRODUCT SLIDER ================= */

.product-slider{
  overflow:hidden;
}

.product-track{
  display:flex;
  gap:30px;
  animation:scrollLeft 35s linear infinite;
}

.product-slider:hover .product-track{
  animation-play-state:paused;
}

.product-card{
  min-width:260px;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.1);
  text-align:center;
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,.2);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.product-card h3{
  padding:20px;
  color:var(--secondary);
}

@keyframes scrollLeft{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

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

@media(max-width:1000px){

  .nav{
    display:none;
  }

  .back-btn{
    display:block;
  }

  .hamburger{
    display:flex;
  }

  .mobile-bottom{
    display:flex;
  }

  body{
    padding-bottom:70px;
  }

  .premium-hero h1{
    font-size:34px;
  }
}

/* ================= TYPOGRAPHY SPACING FIX ================= */

p{
  margin-bottom:18px;
  font-size:16px;
  line-height:1.8;
}

h1, h2, h3{
  margin-bottom:20px;
}

section{
  padding:110px 20px;
}

.about-text p{
  margin-bottom:22px;
}

.about-section{
  padding:120px 20px;
}

.container{
  max-width:1280px;
  margin:auto;
}

/* ================= ABOUT SECTION FIX ================= */

.about-section{
  padding:120px 20px;
  background:#f4f7fa;
}

.about-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:start;
}

.about-text h2{
  font-size:36px;
  color:var(--primary);
  margin-bottom:20px;
}

.about-text p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:20px;
  color:#444;
}

.about-text strong{
  color:var(--primary);
}

/* Highlight Box */

.highlight-box{
  background:#fff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.highlight-box h3{
  margin-bottom:20px;
  color:var(--secondary);
}

.highlight-box ul{
  list-style:none;
  padding:0;
}

.highlight-box li{
  margin-bottom:14px;
  padding-left:22px;
  position:relative;
  font-size:15px;
  color:#333;
}

.highlight-box li::before{
  content:"⚡";
  position:absolute;
  left:0;
  color:var(--accent);
}

/* ================= WHY SECTION FIX ================= */

.why{
  padding:110px 20px;
  background:#fff;
}

.why h2{
  text-align:center;
  font-size:34px;
  margin-bottom:50px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.stat{
  background:#f4f7fa;
  padding:35px 20px;
  border-radius:12px;
  transition:.3s;
}

.stat:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.stat strong{
  display:block;
  margin-top:10px;
  font-size:18px;
  color:var(--primary);
}

/* ================= RESPONSIVE FIX ================= */

@media(max-width:1000px){

  .about-grid{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .stats{
    grid-template-columns:1fr;
  }

}

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

.premium-footer{
  background:linear-gradient(135deg,#081f2d,#0d2f45);
  color:#fff;
  padding:50px 0 18px;
  position:relative;
  overflow:hidden;
}

/* Electric animated line */
.electric-line-footer{
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,#ffc400,transparent);
  animation:electricMove 4s linear infinite;
}

@keyframes electricMove{
  0%{ left:-100%; }
  100%{ left:100%; }
}

/* Footer Layout */
.footer-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-col{
  flex:1;
  min-width:240px;
}

/* Logo */
.footer-logo{
  max-width:160px;
  margin-bottom:12px;
}

/* Tagline */
.footer-tagline{
  color:#ffc400;
  font-size:14px;
  margin-bottom:18px;
  letter-spacing:.6px;
}

/* Headings */
.footer-col h4{
  font-size:16px;
  margin-bottom:12px;
  color:#ffc400;
}

/* Office spacing */
.footer-office-title{
  margin-top:22px;
}

/* Text */
.footer-text{
  font-size:14px;
  margin-bottom:6px;
  color:#ddd;
}

/* Links */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#ddd;
  font-size:14px;
  transition:.3s ease;
}

.footer-links a:hover{
  color:#ffc400;
  padding-left:4px;
}

/* CTA Button */
.footer-cta{
  display:inline-block;
  margin-top:14px;
  padding:9px 22px;
  background:#ffc400;
  color:#000;
  font-weight:600;
  border-radius:4px;
  transition:.3s;
}

.footer-cta:hover{
  background:#fff;
}

/* Social Icons */
.social-icons{
  margin-top:10px;
}

.social-icons a{
  display:inline-block;
  margin-right:14px;
  font-size:16px;
  color:#fff;
  transition:.3s;
}

.social-icons a:hover{
  color:#ffc400;
  transform:translateY(-3px);
}

/* Bottom */
.footer-bottom{
  text-align:center;
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:13px;
  color:#aaa;
}

/* Responsive */
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
    gap:35px;
  }

  .footer-col{
    min-width:100%;
  }
}