:root {
  --primary: #e30613;
  --primary-dark: #bd0010;
  --dark: #101522;
  --dark-soft: #1b2233;
  --text: #1d2433;
  --muted: #687083;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #e7eaf0;
  --success: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1140px, 90%);
  margin: auto;
}

.header {
  background: rgba(16, 21, 34, 0.97);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.brand-icon{
    width:48px;
    height:48px;
    object-fit:contain;
    border-radius:0;
    background:none;
    display:block;
}

.brand strong {
  display: block;
  letter-spacing: 0.8px;
  font-size: 15px;
}

.brand small {
  color: #aeb6c8;
  font-size: 11px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: #d9deea;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: white;
}

.nav-button {
  background: var(--primary);
  padding: 10px 16px;
  border-radius: 7px;
  color: white !important;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 65px;
  align-items: center;
}

.badge,
.section-label {
  display: inline-block;
  color: var(--primary);
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid rgba(227, 6, 19, 0.18);
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.hero h1 {
  color: white;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.14;
  margin: 18px 0;
  max-width: 700px;
}

.hero h1 span {
  color: #ff6670;
}

.hero p {
  color: #c7cede;
  max-width: 650px;
  font-size: 16px;
}

.hero-action {
  display: flex;
  gap: 13px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  color: white;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: white;
  color: var(--dark);
}

.hero-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #d7ddea;
  font-size: 13px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points strong {
  color: #ff6670;
}

/* HERO CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.card-top {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #4b5568;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.time {
  margin-left: auto;
}

.camera-screen {
  min-height: 250px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(9, 14, 25, 0.58), rgba(9, 14, 25, 0.58)),
    url("https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
}

.camera-label,
.camera-status {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: white;
  padding: 7px 9px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 4px;
}

.camera-label {
  top: 14px;
  left: 14px;
}

.camera-status {
  bottom: 14px;
  right: 14px;
  color: #8cffac;
}

.camera-center {
  font-size: 58px;
}

/* ===========================
   FOOTER
=========================== */

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-logo{
    width:190px;
    margin-bottom:20px;
}

.footer-desc{
    color:#d5d5d5;
    line-height:1.8;
    margin-bottom:20px;
}

.footer-column h3{
    margin-bottom:18px;
    color:#ffffff;
    font-size:20px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#E30613;
}

.footer-column p{
    color:#d5d5d5;
    line-height:1.8;
}

.footer-badge{
    background:#16213e;
    border-left:4px solid #E30613;
    padding:15px;
    border-radius:10px;
    color:#fff;
    margin-top:15px;
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding-top:20px;
}

.footer-bottom p{
    color:#bfbfbf;
    margin:5px 0;
    font-size:14px;
}

/* SECTION */
.section {
  padding: 90px 0;
}

.section-gray {
  background: var(--light);
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.advantage-content h2,
.contact-text h2 {
  margin: 13px 0;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
}

.section-heading p,
.advantage-content > p {
  color: var(--muted);
}

/* SERVICE */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(16, 21, 34, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff1f2;
  font-size: 25px;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  min-height: 105px;
}

.service-card a {
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

/* PACKAGE */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px rgba(227, 6, 19, 0.12);
}

.popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.package-name {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.package-card h3 {
  font-size: 23px;
  margin: 10px 0;
}

.price {
  color: var(--muted);
  font-size: 14px;
  min-height: 48px;
}

.price strong {
  color: var(--text);
  display: block;
  font-size: 18px;
}

.package-card ul {
  list-style: none;
  margin: 22px 0;
}

.package-card li {
  border-bottom: 1px solid #edf0f4;
  padding: 10px 0;
  font-size: 14px;
  color: #4d5668;
}

.btn-outline-dark {
  width: 100%;
  border-color: #cfd5df;
  color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: white;
}

/* ADVANTAGE */
.advantage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.advantage-list {
  margin-top: 28px;
  display: grid;
  gap: 17px;
}

.advantage-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.advantage-list span {
  display: grid;
  place-items: center;
  min-width: 35px;
  height: 35px;
  background: #fff1f2;
  color: var(--primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.advantage-list p {
  color: var(--muted);
  font-size: 14px;
}

.advantage-list strong {
  color: var(--text);
}

.advantage-box {
  background: linear-gradient(135deg, #1c263d, #0e1421);
  color: white;
  padding: 48px 38px;
  border-radius: 16px;
}

.advantage-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.advantage-box h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.advantage-box p {
  color: #bac3d5;
  margin-bottom: 25px;
}

.btn-light {
  background: white;
  color: var(--dark);
}

/* CONTACT */
.contact-section {
  background: var(--dark);
  padding: 85px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.contact-text {
  color: white;
}

.contact-text p {
  color: #bac3d5;
}

.light-label {
  color: #ff858d;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-info {
  margin-top: 25px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.contact-info strong {
  color: white;
}

.contact-form {
  display: grid;
  gap: 13px;
  background: white;
  padding: 28px;
  border-radius: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce1e9;
  border-radius: 7px;
  padding: 13px;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 105px;
  resize: vertical;
}

.full-btn {
  width: 100%;
}

/* FOOTER */
.footer {
  background: #090d16;
  color: #a8b0c0;
  padding: 25px 0;
  font-size: 13px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer strong {
  color: white;
  letter-spacing: 1px;
}

.footer p {
  margin-top: 3px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 23px;
  bottom: 23px;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  background: var(--success);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .hero-grid,
  .advantage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 500px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: auto;
  }
}

@media (max-width: 720px) {
  .navbar {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    padding: 18px 5%;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }

  .nav-menu.active {
    display: flex;
  }

 .hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(to right,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.72) 35%,
            rgba(0,0,0,.25) 65%,
            rgba(0,0,0,.05) 100%),
        url("img/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 0 170px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(16,21,34,.45),
        rgba(227,6,19,.20)
    );
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

  .section {
    padding: 65px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    min-height: auto;
  }

  .hero-points {
    gap: 12px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .advantage-box {
    padding: 35px 25px;
  }
}

.testimonial-section{

background:#f7f8fb;

}

.testimonialSwiper{

padding:20px 10px 60px;

}

.swiper-slide{

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.15);

transition:.4s;

}

.swiper-slide:hover{

transform:translateY(-8px);

}

.swiper-slide img{

width:100%;

height:420px;

display:block;

object-fit:cover;

}

.swiper-button-next,
.swiper-button-prev{

color:#e30613;

}

.swiper-pagination-bullet-active{

background:#e30613;

}
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    flex-shrink: 0;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

/* REVIEW */

.review-section{

background:#fff;

}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:50px;

}

.review-card{
   background:#fff;
   padding:30px;
   border-radius:18px;
   box-shadow:0 15px 35px rgba(0,0,0,.08);
   transition:.3s;
   border:1px solid #eee;

}

.review-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    min-height:280px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eee;
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-card p{
    color:#666;
    line-height:1.8;
    margin:20px 0;
}

.review-card h4{
    color:#111827;
    margin-top:20px;
    font-size:18px;
}

.review-card span{
    color:#888;
    font-size:14px;
}

.stars{
    color:#FFC107;
    font-size:22px;
    letter-spacing:3px;
}

/*======================
STATISTIK
=======================*/

.stats {
    margin-top: 60px;
    margin-bottom: 60px;
}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.stat-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.stat-card h2{

font-size:42px;

color:#d50000;

margin-bottom:10px;

}

.stat-card p{

font-size:17px;

color:#666;

}

@media(max-width:900px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}

.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;

    background-image:
        linear-gradient(rgba(16,21,34,.75), rgba(16,21,34,.75)),
        url("img/back.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(16,21,34,.55),
        rgba(227,6,19,.20)
    );
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-grid{

position:relative;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

z-index:2;

}

.hero-content h1{

font-size:58px;

line-height:1.2;

color:white;

font-weight:800;

margin:20px 0;

}

.hero-content p{

font-size:18px;

line-height:1.8;

color:#d8d8d8;

margin-bottom:35px;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

background:#e60012;

color:white;

border-radius:30px;

font-size:14px;

font-weight:700;

}

.hero-action{

display:flex;
gap:20px;
margin-bottom:50px;

}

.hero-stat{

display:flex;
gap:45px;

}

.hero-stat h2{

font-size:42px;
color:#ff3131;
margin-bottom:5px;

}

.hero-stat span{

color:white;

}

.hero-image img{

width:100%;
border-radius:20px;
box-shadow:0 30px 70px rgba(0,0,0,.4);
transition:.5s;

}

.hero-image img:hover{

transform:scale(1.03);

}

.brand-section{

padding:60px 0;
background:white;
text-align:center;

}

.brand-section h3{

margin-bottom:35px;
font-size:24px;

}

.brand-logo{

display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
align-items:center;

}

.brand-logo img{

height:60px;
filter:grayscale(100%);
transition:.3s;

}

.brand-logo img:hover{

filter:none;
transform:scale(1.1);

}

/* =======================
   Paket CCTV
======================= */

.packages{
    padding:100px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title .badge{
    display:inline-block;
    background:#e30613;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:15px;
    color:#111827;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

.package-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    height:100%;
}

.package-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.package-card img{

    width:170px;

    display:block;

    margin:auto;

    margin-bottom:25px;

}

.package-card h3{

    text-align:center;

    font-size:28px;

    color:#111827;

}

.subtitle{

    text-align:center;

    color:#777;

    margin:15px 0 30px;

}

.package-card ul{

    list-style:none;

    padding:0;

}

.package-card li{

    padding:10px 0;

    border-bottom:1px solid #eee;

}

.price{

    margin:35px 0;

    text-align:center;

    font-size:18px;

}

.price span{

    display:block;

    margin-top:8px;

    font-size:32px;

    color:#e30613;

    font-weight:bold;

}

.btn-primary{

    display:block;

    text-align:center;

    text-decoration:none;

    background:#e30613;

    color:#fff;

    padding:15px;

    border-radius:12px;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    background:#b8000d;

}

/*==================================
        INTERNET FIBER
==================================*/

.internet-section{
    padding:100px 0;
    background:#f8fafc;
}

.provider-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.provider-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:1px solid #eee;

    transition:.3s;

}

.provider-card:hover{

    transform:translateY(-8px);

}

/* ===========================
   LOGO PROVIDER WIFI
=========================== */

.provider-card img{

    width:130px;

    height:70px;

    object-fit:contain;

    margin-bottom:20px;

    transition:.3s;

}

.provider-card:hover img{

    transform:scale(1.05);

} 

.provider-card h3{

    font-size:24px;

    color:#0f172a;

    font-weight:700;

}

/*====================
   BUTTON WA
====================*/

.internet-btn{

    width:100%;

    margin-top:30px;

}

.internet-btn a{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    padding:20px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

    box-sizing:border-box;

}

.internet-btn a:hover{

    background:#1EBE5D;

}

.internet-btn img{

    width:30px;

    height:30px;

}

/*====================
     RESPONSIVE
====================*/

@media(max-width:992px){

.provider-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.provider-grid{

grid-template-columns:1fr;

}

.provider-card img{

width:150px;

}

.internet-btn a{

font-size:16px;

padding:18px;

}

}

.floating-btn{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;
}

.floating-btn:hover{
    transform:scale(1.1);
    background:#1EBE5D;
}

.floating-btn img{
    width:34px;
    height:34px;
    object-fit:contain;
}

/* =====================================
   HERO MOBILE
===================================== */

@media (max-width:768px){

    .hero-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .hero-content{
        order:2;
    }

    .hero-image{
        order:1;
    }

    .hero-image img{
        width:80%;
        max-width:320px;
        margin:auto;
        display:block;
    }

    .hero h1{
        font-size:36px;
        line-height:1.25;
        margin:15px 0;
    }

    .hero p{
        font-size:16px;
        line-height:1.8;
        max-width:100%;
    }

    .hero-action{
        display:flex;
        flex-direction:column;
        gap:15px;
        width:100%;
    }

    .hero-action .btn{
        width:100%;
    }

    .badge{
        font-size:12px;
    }

}

/* =====================================
   RESPONSIVE PACKAGE CCTV
===================================== */

@media (max-width:768px){

    .package-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:20px;

    }

    .package-card{

        width:100%;

        max-width:100%;

        margin:0 auto;

    }

    .package-card img{

        width:150px;

        height:auto;

        display:block;

        margin:0 auto 20px;

    }

    .package-card ul{

        padding-left:0;

    }

    .package-card .btn-primary{

        width:100%;

        text-align:center;

    }

}

@media(max-width:768px){

.hero-stats .stats-grid{

    display:flex;

    overflow-x:auto;

    gap:16px;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;

}

.hero-stats .stats-grid::-webkit-scrollbar{

    display:none;

}

.hero-stats .stat-card{

    min-width:220px;

    flex:0 0 auto;

    scroll-snap-align:center;

}

}

/*==============================
FOOTER PROFESSIONAL
==============================*/

.footer{
    background:#0b1120;
    color:#fff;
    margin-top:80px;
}

.footer-top{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:60px;

    padding:55px 0;
}

.footer-left{

    display:flex;

    align-items:center;

    gap:25px;
}

.footer-logo{

    width:110px;
    flex-shrink:0;
}

.footer-company h3{

    font-size:30px;

    margin-bottom:10px;
}

.footer-company p{

    max-width:620px;

    color:#d7d7d7;

    line-height:1.8;
}

.footer-contact{

    margin-top:18px;

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    color:#ccc;

    font-size:15px;
}

.footer-btn{

    display:inline-block;

    padding:15px 32px;

    background:#E30613;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.footer-btn:hover{

    background:#ff1f2d;

    transform:translateY(-2px);
}

.footer-menu{

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:18px 0;

    text-align:center;
}

.footer-menu .container{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:35px;
}

.footer-menu a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;
}

.footer-menu a:hover{

    color:#E30613;
}

.footer-bottom{

    padding:18px 0;

    text-align:center;

    color:#bdbdbd;

    font-size:14px;
}

.footer-bottom p{

    margin:5px 0;
}

@media(max-width:992px){

.footer-top{

    flex-direction:column;

    text-align:center;
}

.footer-left{

    flex-direction:column;
}

.footer-company p{

    max-width:100%;
}

.footer-contact{

    justify-content:center;
}

.footer-menu .container{

    gap:18px;
}

.footer-logo{

    width:90px;
}

.footer-company h3{

    font-size:26px;
}

}

/* ===========================================
   FEATURED ARTICLE
=========================================== */

.featured-article{
    padding:80px 0;
    background:#f8f9fb;
}

.featured-card{
    display:flex;
    align-items:center;
    gap:40px;
    margin-top:50px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.featured-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.featured-image{
    flex:1;
}

.featured-image img{
    width:100%;
    display:block;
    aspect-ratio:16/9;
    object-fit:cover;
}

.featured-content{
    flex:1;
    padding:40px;
}

.featured-category{
    display:inline-block;
    color:#E30613;
    font-weight:700;
    margin-bottom:15px;
    font-size:.9rem;
    text-transform:uppercase;
}

.featured-content h3{
    font-size:2rem;
    margin-bottom:20px;
    color:#111;
}

.featured-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* Tablet */

@media(max-width:992px){

.featured-card{
    flex-direction:column;
}

.featured-content{
    padding:30px;
}

.featured-content h3{
    font-size:1.7rem;
}

}

/* Mobile */

@media(max-width:768px){

.featured-article{
    padding:60px 0;
}

.featured-card{
    border-radius:18px;
}

.featured-content{
    padding:20px;
}

.featured-content h3{
    font-size:1.4rem;
}

}