/* ===========================
   RESET
=========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#F8FAFC;

    color:#1F2937;

    overflow-x:hidden;

    padding-top:85px;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/* ===========================
   COLOR VARIABLES
=========================== */

:root{

    /* Primary */

    --primary:#005BAC;

    --primary-hover:#00488A;

    /* Secondary */

    --secondary:#1EA7FF;

    /* Accent */

    --orange:#FF8C00;

    /* Background */

    --background:#F8FAFC;

    /* Card */

    --white:#FFFFFF;

    /* Text */

    --title:#1E293B;

    --text:#475569;

    --border:#E2E8F0;

}
/* ===================================================
   HERO
=================================================== */

.hero{

    padding:140px 0 90px;

    background:linear-gradient(135deg,#F8FAFC 0%,#EEF6FF 100%);

    overflow:hidden;

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}



/* ===========================
   HERO TEXT
=========================== */

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    background:#E8F3FF;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    border-radius:50px;

    margin-bottom:25px;

}

.hero-text h1{

    font-size:56px;

    line-height:1.15;

    color:var(--title);

    margin-bottom:25px;

    font-weight:700;

}

.hero-text h1 span{

    color:var(--primary);

}

.hero-text p{

    font-size:17px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:35px;

}

/* ===========================
   BUTTON
=========================== */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    padding:15px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:var(--primary-hover);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    text-decoration:none;

    padding:15px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* ===========================
   PLATFORM
=========================== */

.hero-platform small{

    display:block;

    color:var(--text);

    margin-bottom:15px;

    font-weight:600;

}

.platform-icons{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.platform-icons span{

    background:#fff;

    border:1px solid var(--border);

    border-radius:30px;

    padding:8px 18px;

    font-size:14px;

    color:var(--title);

    font-weight:500;

}

/* ===========================
   HERO IMAGE
=========================== */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.circle-bg{

    width:500px;

    height:500px;

    background:linear-gradient(135deg,#1EA7FF,#005BAC);

    border-radius:50%;

    position:absolute;

    opacity:.12;

}

.hero-image img{

    width:100%;

    max-width:620px;

    position:relative;

    z-index:2;

    animation:floating 5s ease-in-out infinite;

}

/* =====================================
   HERO PRODUCTS
===================================== */

.hero-image{

    position:relative;
    width:100%;
    height:650px;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* Lingkaran */

.circle-bg{

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,#dceeff,#c4ddfa);

    z-index:1;

}

/* Semua Produk */

.product{

    position:absolute;

    z-index:5;

    transition:.4s ease;

    filter:drop-shadow(0 18px 35px rgba(0,0,0,.18));

    animation:floating 5s ease-in-out infinite;

}

.product:hover{

    transform:scale(1.05);

}

/* CAM540 */

.product-1{

    width:145px;

    top:-50px;

    right:100px;

    bottom:100px;

    left:70%;

    transform:translateX(-50%);

}

/* CAM130 */

.product-2{

    width:100px;

    left:200px;

    right:150px;

    bottom:150px;

    animation-delay:.5s;

}

/* VB342-PRO */

.product-3{

    width:100px;

    right:300px;

    top:250px;

    left:-90%;

    bottom:-50px;

    animation-delay:1s;

}


/* ===========================
   FLOAT
=========================== */

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero{

    padding:120px 0 80px;

}

.hero-content{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.platform-icons{

    justify-content:center;

}

.hero-image{

    margin-top:40px;

}

.hero-text h1{

    font-size:42px;

}

}

@media(max-width:576px){

.hero{

    padding:100px 0 60px;

}

.hero-text h1{

    font-size:34px;

}

.hero-text p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-outline{

    width:100%;

    text-align:center;

}

.circle-bg{

    width:320px;

    height:320px;

}

}

/* =====================================
        ABOUT
===================================== */

.about{

    padding:120px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    max-width:850px;

    margin:auto;

}

.section-badge{

    display:inline-block;

    background:#EAF4FF;

    color:#005BAC;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-title h2{

    font-size:48px;

    color:#1F2937;

    margin-bottom:20px;

    font-weight:700;

}

.section-title p{

    color:#64748B;

    font-size:18px;

    line-height:1.8;

}

/* CARD */

.feature-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border:1px solid #E2E8F0;

    border-radius:20px;

    padding:35px;

    transition:.35s;

    text-align:center;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,91,172,.15);

    border-color:#005BAC;

}

.feature-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#005BAC,#1EA7FF);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.feature-card p{

    color:#64748B;

    line-height:1.7;

}

/* STAT */

.stats-grid{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:linear-gradient(135deg,#005BAC,#1EA7FF);

    color:#fff;

    text-align:center;

    padding:40px;

    border-radius:20px;

}

.stat-box h3{

    font-size:42px;

    margin-bottom:10px;

}

.stat-box span{

    font-size:16px;

    opacity:.95;

}

/* RESPONSIVE */

@media(max-width:992px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.feature-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

}

/* ======================================
        ROOM SOLUTIONS
====================================== */

.room-solutions{

    padding:120px 0;

    background:#F8FAFC;

}

.room-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.room-card{

    background:linear-gradient(180deg,#FFFFFF 0%,#F8FBFF 100%);

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:35px;

    display:flex;

    flex-direction:column;

    min-height:720px;

    transition:.35s;

}

.room-card:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    border-color:#005BAC;

}

.room-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#005BAC,#1EA7FF);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.room-card h3{

    font-size:24px;

    margin-bottom:10px;

    color:#1F2937;

}

.participants{

    display:inline-block;

    margin-top:10px;

    color:#005BAC;

    font-weight:600;

    font-size:15px;

}

.room-desc{

    margin:20px 0;

    color:#64748B;

    line-height:1.8;

    min-height:120px;

}

.recommended-title{

    font-size:16px;

    font-weight:700;

    color:#1F2937;

    margin-bottom:15px;

}

.recommended-list{

    list-style:none;

    padding:0;

    margin:0 0 25px;

    display:flex;

    flex-direction:column;

    gap:10px;

    text-align:left;

}

.recommended-list li{

    display:flex;

    align-items:center;

    gap:10px;

    color:#475569;

    font-size:15px;

}

.recommended-list{

    list-style:none;

    padding:0;

    margin:15px 0 25px;

    display:flex;

    flex-direction:column;

    gap:14px;

    text-align:left;

}

.platforms{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

    margin-top:5px;

    margin-bottom:30px;

}

.platforms span{

    padding:8px 14px;

    background:#EEF6FF;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    color:#005BAC;

}

.room-btn{

    display:inline-block;

    text-decoration:none;

    background:#005BAC;

    color:white;

    padding:14px 28px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.room-card:hover{

transform:translateY(-12px);

box-shadow:
0 20px 45px rgba(13,110,253,.12);

}

@media(max-width:1100px){

.room-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.room-grid{

grid-template-columns:1fr;

}

}
/* ==========================================
        FEATURED PRODUCTS
========================================== */

.featured-products{

    padding:120px 0;

    background:#F8FAFC;

}

.product-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin:60px 0;

}

.filter-btn{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:white;

    border:1px solid #D9E4F2;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.filter-btn:hover{

    background:#005BAC;

    color:white;

}

.filter-btn.active{

    background:#005BAC;

    color:white;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;

}

.product-card{

    background:white;

    border-radius:24px;

    padding:30px;

    border:1px solid #E5E7EB;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(13,110,253,.12);

}

.product-image{

    height:220px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:35px;

}

.product-image img{

    max-width:180px;

    max-height:180px;

    object-fit:contain;

    transition:.35s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-category{

    display:inline-block;

    color:#005BAC;

    font-size:14px;

    font-weight:700;

    margin-bottom:10px;

}

.product-info h3{

    font-size:30px;

    color:#1F2937;

    margin-bottom:15px;

}

.product-info p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.product-features{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.product-features span{

    padding:8px 14px;

    border-radius:30px;

    background:#EEF6FF;

    color:#005BAC;

    font-size:13px;

    font-weight:600;

}

.product-buttons{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:auto;

}

.product-buttons a{

    text-align:center;

    text-decoration:none;

    padding:13px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.product-buttons a:first-child{

    background:#005BAC;

    color:white;

}

.product-buttons a:last-child{

    border:2px solid #005BAC;

    color:#005BAC;

}

.product-buttons a:hover{

    transform:translateY(-2px);

}

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:768px){

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
}
}

/* ==========================
PRODUCT MODAL
========================== */

.product-modal{

position:fixed;

inset:0;

display:none;

align-items:center;

justify-content:center;

background:rgba(0,0,0,.55);

z-index:9999;

padding:40px;

}

.product-modal.active{

display:flex;

}

.modal-content{

width:1100px;

max-width:95%;

background:#fff;

border-radius:24px;

display:grid;

grid-template-columns:1fr 1fr;

overflow:hidden;

box-shadow:0 30px 70px rgba(0,0,0,.2);

position:relative;

}

.modal-left{

padding:50px;

display:flex;

justify-content:center;

align-items:center;

background:#F6FAFF;

}

.modal-left img{

max-width:90%;

max-height:420px;

object-fit:contain;

}

.modal-right{

padding:60px;

}

.modal-right span{

color:#005BAC;

font-weight:700;

}

.modal-right h2{

font-size:42px;

margin:15px 0;

}

.modal-right p{

line-height:1.8;

color:#64748B;

margin-bottom:30px;

}

.modal-features{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-bottom:35px;

}

.modal-features span{

padding:10px 18px;

background:#EEF6FF;

color:#005BAC;

border-radius:40px;

font-weight:600;

}

.modal-buttons{

display:flex;

gap:20px;

}

.modal-close{

position:absolute;

right:20px;

top:20px;

width:46px;

height:46px;

border:none;

border-radius:50%;

background:#005BAC;

color:white;

font-size:22px;

cursor:pointer;

}

@media(max-width:900px){

.modal-content{

grid-template-columns:1fr;

}

.modal-left{

padding:30px;

}

.modal-right{

padding:35px;

}

.modal-right h2{

font-size:30px;

}

}

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

.logo img{

    height:100px;

}

.navbar{

    display:flex;

    gap:40px;

}

.navbar a{

    text-decoration:none;

    color:#1F2937;

    font-weight:600;

    transition:.3s;

}

.navbar a:hover{

    color:#005BAC;

}

.header-btn{

    background:#005BAC;

    color:#fff;

    padding:14px 26px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}

.header-btn:hover{

    background:#00458B;

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#0F172A;

    color:#fff;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer img{

    height:50px;

    margin-bottom:20px;

}

.footer p{

    color:#CBD5E1;

    line-height:1.8;

}

.footer h3{

    margin-bottom:20px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:#CBD5E1;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    text-align:center;

    color:#94A3B8;

}

/* ==========================================
   CONTACT
========================================== */

.contact-section{

    padding:100px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:60px;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#005BAC;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.contact-item h3{

    margin-bottom:8px;

}

.contact-item p{

    color:#64748B;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,

.contact-form textarea{

    padding:16px;

    border:1px solid #D1D5DB;

    border-radius:10px;

    font-family:inherit;

    font-size:15px;

}

.contact-form textarea{

    resize:none;

}

.contact-btn{

    background:#005BAC;

    color:#fff;

    padding:16px;

    border-radius:10px;

    text-align:center;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    background:#004C90;

}

@media(max-width:768px){

.contact-grid{

grid-template-columns:1fr;

}

}

/* ==========================================
   WHY CHOOSE AVER
========================================== */

.why-aver{

    padding:110px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:40px;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,91,172,.10);

}

.why-card i{

    width:70px;

    height:70px;

    background:#005BAC;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

/* ==========================================
   WHY CHOOSE AVER
========================================== */

.why-aver{

    padding:110px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:40px;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,91,172,.10);

}

.why-card i{

    width:70px;

    height:70px;

    background:#005BAC;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

.modal-close{
    position:absolute;
    top:25px;
    right:25px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#0D63B8;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.modal-close:hover{

    background:#084b90;

    transform:rotate(90deg);

}