/* =========================================
   ROBOT VACUUM PREMIUM DESIGN
   FILE : robot-vacuum.css
========================================= */

:root{

    --primary:#1a2a6c;
    --primary-dark:#0d1b4c;

    --accent:#f5a623;
    --accent-dark:#d48806;

    --accent-light:#fff4df;

    --bg:#f5f7fc;
    --white:#ffffff;

    --text:#111827;
    --muted:#6b7280;

    --border:#e7ecf5;

    --shadow:
    0 25px 60px rgba(13,27,76,.08);

}

/* =========================================
   GLOBAL
========================================= */

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

section{

    position:relative;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

.container,
.container-fluid{

    position:relative;

    z-index:2;

}

/* =========================================
   HERO
========================================= */

.vacuum-hero{

    padding:80px 0 120px;

    background:
    linear-gradient(
    135deg,
    #1a2a6c 0%,
    #0d1b4c 100%);

    overflow:hidden;

}

.vacuum-hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(245,166,35,.15),
    transparent 70%);

    top:-250px;
    right:-200px;

}

.vacuum-hero::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.05),
    transparent 70%);

    left:-180px;
    bottom:-180px;

}

/* =========================================
   HERO LEFT
========================================= */

.hero-left{

    position:relative;

    z-index:2;

}

.hero-chip{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:12px 24px;

    border-radius:999px;

    font-size:.92rem;

    font-weight:600;

    margin-bottom:30px;

    backdrop-filter:blur(10px);

}

.hero-chip i{

    color:var(--accent);

}

.hero-title{

    font-size:clamp(3rem,6vw,6.2rem);

    line-height:.92;

    font-weight:900;

    letter-spacing:-4px;

    color:#fff;

    margin-bottom:30px;

}

.hero-text{

    color:rgba(255,255,255,.78);

    font-size:1.08rem;

    line-height:2;

    max-width:620px;

    margin-bottom:40px;

}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.btn-hero-main{

    background:
    linear-gradient(
    135deg,
    var(--accent),
    var(--accent-dark));

    color:#fff;

    border:none;

    padding:17px 34px;

    border-radius:18px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.35s ease;

    box-shadow:
    0 20px 50px rgba(245,166,35,.3);

}

.btn-hero-main:hover{

    transform:translateY(-4px);

    box-shadow:
    0 30px 60px rgba(245,166,35,.4);

    color:#fff;

}

.btn-hero-outline{

    background:transparent;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    padding:17px 30px;

    border-radius:18px;

    font-weight:600;

    transition:.3s ease;

}

.btn-hero-outline:hover{

    background:#fff;

    color:var(--primary-dark);

}

/* =========================================
   HERO STATS
========================================= */

.hero-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.stat-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:24px;

    padding:24px;

    min-width:180px;

}

.stat-box h3{

    color:#fff;

    font-size:1.8rem;

    font-weight:800;

    margin-bottom:6px;

}

.stat-box p{

    margin:0;

    color:rgba(255,255,255,.7);

    font-size:.95rem;

}

/* =========================================
   HERO IMAGE
========================================= */

.hero-product-wrap{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:700px;

}

.hero-circle{

    position:absolute;

    width:550px;
    height:550px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    rgba(245,166,35,.2),
    rgba(255,255,255,.04));

    filter:blur(10px);

}

.hero-product-image{

    position:relative;

    z-index:2;

    max-width:620px;

    object-fit:contain;

    filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.35));

}

.floating-badge{

    position:absolute;

    z-index:3;

    background:#fff;

    padding:16px 24px;

    border-radius:18px;

    font-weight:700;

    color:var(--primary-dark);

    box-shadow:
    0 25px 60px rgba(13,27,76,.12);

    display:flex;

    align-items:center;

    gap:10px;

}

.floating-badge i{

    color:var(--accent);

    font-size:1.2rem;

}

.floating-badge.one{

    left:0;
    top:120px;

}

.floating-badge.two{

    right:10px;
    bottom:120px;

}

/* =========================================
   COMMON SECTION
========================================= */

.section-mini-title{

    display:inline-block;

    color:var(--accent-dark);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.main-section-title{

    font-size:3.4rem;

    line-height:1.08;

    font-weight:900;

    color:var(--primary-dark);

    margin-bottom:24px;

    letter-spacing:-2px;

}

.main-section-title.center{

    text-align:center;

}

.section-description{

    color:var(--muted);

    line-height:2;

    font-size:1.02rem;

}

.section-header{

    margin-bottom:70px;

}

/* =========================================
   LIFESTYLE
========================================= */

.lifestyle-section{

    padding:130px 0;

}

.lifestyle-image{

    background:#fff;

    border-radius:36px;

    padding:18px;

    box-shadow:var(--shadow);

}

.lifestyle-image img{

    border-radius:26px;

}

.icon-content-grid{

    display:grid;

    gap:24px;

    margin-top:40px;

}

.icon-content-box{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    border-radius:24px;

    padding:24px;

    box-shadow:
    0 10px 30px rgba(13,27,76,.04);

    transition:.3s ease;

}

.icon-content-box:hover{

    transform:translateY(-6px);

}

.icon-circle{

    width:65px;
    height:65px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    var(--accent),
    var(--accent-dark));

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.icon-circle i{

    color:#fff;

    font-size:1.5rem;

}

.icon-content-box h5{

    font-weight:800;

    color:var(--primary-dark);

    margin-bottom:8px;

}

.icon-content-box p{

    margin:0;

    color:var(--muted);

    line-height:1.8;

}

/* =========================================
   FEATURES
========================================= */

.robot-features{

    padding:130px 0;

    background:#fff;

}

.robot-feature-card{

    background:var(--bg);

    border-radius:34px;

    padding:40px;

    height:100%;

    transition:.35s ease;

    border:1px solid transparent;

}

.robot-feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(245,166,35,.2);

    box-shadow:var(--shadow);

}

.feature-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:30px;

}

.feature-top i{

    width:70px;
    height:70px;

    border-radius:22px;

    background:
    linear-gradient(
    135deg,
    var(--accent),
    var(--accent-dark));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:1.7rem;

}

.feature-top span{

    font-size:2rem;

    font-weight:900;

    color:rgba(26,42,108,.08);

}

.robot-feature-card h4{

    font-size:1.5rem;

    font-weight:800;

    color:var(--primary-dark);

    margin-bottom:16px;

}

.robot-feature-card p{

    color:var(--muted);

    line-height:1.9;

    margin:0;

}

/* =========================================
   EXPERIENCE BANNER
========================================= */

.experience-banner{

    padding:130px 0;

}

.experience-box{

    position:relative;

    border-radius:44px;

    overflow:hidden;

    min-height:620px;

    background:
    linear-gradient(
    rgba(13,27,76,.55),
    rgba(13,27,76,.55)),
    url('../images/robot-banner.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    padding:80px;

}

.experience-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.experience-content span{

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

}

.experience-content h2{

    font-size:4rem;

    line-height:1.05;

    font-weight:900;

    color:#fff;

    margin:24px 0;

}

.experience-content p{

    color:rgba(255,255,255,.78);

    line-height:2;

    margin-bottom:40px;

}

/* =========================================
   GALLERY
========================================= */

.robot-gallery{

    padding:130px 0;

}

.gallery-layout{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:24px;

}

.gallery-item{

    overflow:hidden;

    border-radius:34px;

    height:320px;

}

.gallery-item.big{

    height:664px;

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .7s ease;

}

.gallery-item:hover img{

    transform:scale(1.06);

}

/* =========================================
   SPECS
========================================= */

.robot-specs{

    padding:130px 0;

    background:#fff;

}

.specs-wrapper{

    background:var(--bg);

    border-radius:40px;

    padding:70px;

}

.specs-table{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(13,27,76,.04);

}

.spec-item{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:24px 30px;

    border-bottom:1px solid var(--border);

}

.spec-item:last-child{

    border:none;

}

.spec-item span{

    color:var(--muted);

    font-weight:500;

}

.spec-item strong{

    color:var(--primary-dark);

    font-weight:700;

}

/* =========================================
   CTA
========================================= */

.robot-cta{

    padding:130px 0;

}

.cta-wrapper{

    background:
    linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary));

    border-radius:44px;

    padding:100px 60px;

    text-align:center;

    overflow:hidden;

    position:relative;

}

.cta-wrapper::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(245,166,35,.15),
    transparent 70%);

    top:-250px;
    right:-150px;

}

.cta-wrapper span{

    position:relative;

    z-index:2;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

}

.cta-wrapper h2{

    position:relative;

    z-index:2;

    font-size:4rem;

    line-height:1.05;

    font-weight:900;

    color:#fff;

    margin:24px 0;

}

.cta-wrapper p{

    position:relative;

    z-index:2;

    color:rgba(255,255,255,.75);

    line-height:2;

    max-width:760px;

    margin:auto auto 40px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .main-section-title,
    .experience-content h2,
    .cta-wrapper h2{

        font-size:3rem;

    }

}

@media(max-width:992px){

    .vacuum-hero{

        padding:60px 0 80px;

    }

    .hero-left{

        text-align:center;

    }

    .hero-text{

        margin:auto auto 40px;

    }

    .hero-buttons,
    .hero-stats{

        justify-content:center;

    }

    .hero-product-wrap{

        min-height:auto;

    }

    .floating-badge.one{

        left:20px;
        top:40px;

    }

    .floating-badge.two{

        right:20px;
        bottom:40px;

    }

    .main-section-title,
    .experience-content h2,
    .cta-wrapper h2{

        font-size:2.6rem;

    }

    .gallery-layout{

        grid-template-columns:1fr;

    }

    .gallery-item.big{

        height:420px;

    }

    .gallery-item{

        height:260px;

    }

    .experience-box{

        padding:60px 40px;

        min-height:auto;

    }

    .specs-wrapper{

        padding:40px;

    }

}

@media(max-width:768px){

    .vacuum-hero,
    .lifestyle-section,
    .robot-features,
    .experience-banner,
    .robot-gallery,
    .robot-specs,
    .robot-cta{

        padding:70px 0;

    }

    .hero-title{

        font-size:2.9rem;

        letter-spacing:-2px;

    }

    .main-section-title,
    .experience-content h2,
    .cta-wrapper h2{

        font-size:2.2rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-hero-main,
    .btn-hero-outline{

        width:100%;

        justify-content:center;

    }

    .hero-stats{

        flex-direction:column;

    }

    .stat-box{

        width:100%;

    }

    .floating-badge{

        position:relative;

        left:auto !important;
        right:auto !important;
        top:auto !important;
        bottom:auto !important;

        margin-top:18px;

        justify-content:center;

    }

    .hero-product-wrap{

        display:block;

        text-align:center;

    }

    .experience-box{

        padding:50px 24px;

        border-radius:28px;

    }

    .cta-wrapper{

        padding:70px 24px;

        border-radius:28px;

    }

    .specs-wrapper{

        padding:24px;

        border-radius:28px;

    }

    .spec-item{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

}

@media(max-width:576px){

    .hero-chip{

        font-size:.8rem;

        padding:10px 18px;

    }

    .hero-title{

        font-size:2.5rem;

    }

    .main-section-title{

        font-size:2rem;

    }

    .robot-feature-card{

        padding:30px;

    }

    .feature-top i{

        width:60px;
        height:60px;

        font-size:1.4rem;

    }

    .icon-content-box{

        flex-direction:column;

    }

}