/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   ROOT DESIGN SYSTEM
========================================= */

:root{

    /* BRAND COLORS */

    --primary:#FF6B00;
    --primary-dark:#D45500;

    --secondary:#FF8C00;

    --accent:#FFC107;

    /* BACKGROUNDS */

    --white:#FFFFFF;

    --bg:#FFFDF8;

    --section-bg:#FFF8F0;

    --card-bg:#FFFFFF;

    /* TEXT */

    --text:#1F2937;

    --text-light:#6B7280;

    --text-muted:#9CA3AF;

    /* BORDER */

    --border:#FFE3CC;

    /* PREMIUM GRADIENTS */

    --gradient-primary:
    linear-gradient(
        135deg,
        #FF6B00 0%,
        #FF8C00 55%,
        #FFC107 100%
    );

    --gradient-light:
    linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FFF8F0 100%
    );

    --gradient-dark:
    linear-gradient(
        135deg,
        #1F2937 0%,
        #374151 100%
    );

    /* SHADOWS */

    --shadow-sm:
    0 4px 12px rgba(255,107,0,.05);

    --shadow-md:
    0 12px 30px rgba(255,107,0,.10);

    --shadow-lg:
    0 20px 50px rgba(255,107,0,.15);

    --shadow-orange:
    0 20px 40px rgba(255,107,0,.20);

    /* RADIUS */

    --radius-sm:12px;

    --radius-md:20px;

    --radius-lg:30px;

    /* ANIMATION */

    --transition:
    all .35s cubic-bezier(.4,0,.2,1);
}

/* =========================================
   GLOBAL RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{

    font-family:'Plus Jakarta Sans',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    font-size:16px;

    line-height:1.8;

    font-weight:500;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;
}

/* =========================================
   CONTAINER
========================================= */

.container{

    width:min(92%,1300px);

    margin-inline:auto;
}

/* =========================================
   IMAGES
========================================= */

img{

    max-width:100%;

    display:block;
}

/* =========================================
   LINKS
========================================= */

a{

    text-decoration:none;

    transition:var(--transition);
}

/* =========================================
   HEADINGS
========================================= */

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--text);

    font-weight:800;

    line-height:1.2;
}

/* =========================================
   SECTION DEFAULT
========================================= */

section{

    position:relative;
}

/* =========================================
   SELECTION COLOR
========================================= */

::selection{

    background:#FFB347;

    color:#1F2937;
}

/* =========================================
   CUSTOM SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#FFF1E6;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        180deg,
        #FF6B00,
        #FF8C00
    );

    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{

    background:
    linear-gradient(
        180deg,
        #D45500,
        #FF6B00
    );
}

/* =========================================
   GLOBAL PREMIUM EFFECTS
========================================= */

.card-hover{

    transition:var(--transition);
}

.card-hover:hover{

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow-lg);
}

/* =========================================
   TEXT HELPERS
========================================= */

.text-primary{

    color:var(--primary);
}

.text-light{

    color:var(--text-light);
}

/* =========================================
   BUTTON BASE
========================================= */

.btn-primary{

    background:
    var(--gradient-primary);

    color:#fff;

    border:none;

    border-radius:999px;

    cursor:pointer;

    transition:var(--transition);
}

.btn-primary:hover{

    transform:
    translateY(-3px);

    box-shadow:
    var(--shadow-orange);
}

/* =========================================
   PREMIUM TOP BAR
========================================= */

.top-bar{

    background:
    linear-gradient(
        135deg,
        #D45500 0%,
        #FF6B00 50%,
        #FF8C00 100%
    );

    padding:14px 0;

    position:relative;

    overflow:hidden;

    isolation:isolate;
}

/* LEFT GLOW */

.top-bar::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(255,193,7,.18);

    border-radius:50%;

    filter:blur(130px);

    top:-220px;
    left:-120px;

    animation:floatGlow 8s ease-in-out infinite;
}

/* RIGHT GLOW */

.top-bar::after{

    content:'';

    position:absolute;

    width:380px;
    height:380px;

    background:
    rgba(255,255,255,.10);

    border-radius:50%;

    filter:blur(110px);

    right:-140px;
    top:-160px;

    animation:floatGlow2 10s ease-in-out infinite;
}

.top-bar-content{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;
}

/* =========================================
   CONTACT CARDS
========================================= */

.top-contact,
.top-website{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:11px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.14);

    border:
    1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(18px);

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:.2px;

    transition:var(--transition);

    box-shadow:
    0 10px 25px rgba(0,0,0,.10);

    position:relative;

    overflow:hidden;
}

/* SHINE EFFECT */

.top-contact::before,
.top-website::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.30),
        transparent
    );

    transition:.8s ease;
}

.top-contact:hover::before,
.top-website:hover::before{

    left:130%;
}

/* ICON */

.top-contact i,
.top-website i{

    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    color:#FF6B00;

    font-size:15px;

    box-shadow:
    0 8px 20px rgba(255,255,255,.15);

    transition:var(--transition);
}

/* HOVER */

.top-contact:hover,
.top-website:hover{

    transform:
    translateY(-4px);

    background:
    rgba(255,255,255,.20);

    box-shadow:
    0 18px 35px rgba(0,0,0,.18);
}

.top-contact:hover i,
.top-website:hover i{

    transform:
    rotate(10deg)
    scale(1.1);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .top-bar{

        padding:10px 0;
    }

    .top-bar-content{

        gap:8px;
    }

    .top-contact,
    .top-website{

        padding:8px 14px;

        font-size:11px;
    }

    .top-contact i,
    .top-website i{

        width:24px;
        height:24px;

        font-size:11px;
    }
}

/* =========================================
   EXTRA GLOW ANIMATION
========================================= */

@keyframes floatGlow2{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0);
    }
}






/* =========================================
   PREMIUM MAIN HEADER
========================================= */

.main-header{

    position:sticky;

    top:0;

    z-index:9999;

    padding:18px 0;

    background:
    rgba(255,255,255,.94);

    backdrop-filter:
    blur(24px);

    -webkit-backdrop-filter:
    blur(24px);

    border-bottom:
    1px solid rgba(255,107,0,.08);

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);

    overflow:hidden;
}

/* ORANGE GLOW */

.main-header::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(110px);

    top:-250px;
    left:-100px;

    pointer-events:none;
}

.header-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    position:relative;

    z-index:2;
}

/* =========================================
   LOGO AREA
========================================= */

.logo-area{

    display:flex;

    align-items:center;

    gap:18px;

    position:relative;
}

/* LOGO IMAGE */

.logo-area img{

    width:90px;

    filter:
    drop-shadow(
        0 12px 25px rgba(255,107,0,.22)
    );

    transition:all .4s ease;
}

.logo-area:hover img{

    transform:
    scale(1.08)
    rotate(-2deg);
}

/* =========================================
   LOGO TEXT
========================================= */

.logo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.logo-text h1{

    font-size:36px;

    font-weight:800;

    line-height:1;

    margin:0;

    color:#FF6B00;

    letter-spacing:.5px;

    text-transform:uppercase;

    text-shadow:
    0 8px 20px rgba(255,107,0,.12);
}

.logo-text h2{

    font-size:15px;

    font-weight:700;

    margin-top:6px;

    color:#374151;

    letter-spacing:3px;

    text-transform:uppercase;
}

/* =========================================
   CTA BUTTON AREA
========================================= */

.header-cta{

    display:flex;

    align-items:center;

    gap:16px;
}

/* BUTTONS */

.cta-btn{

    width:58px;
    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:22px;

    position:relative;

    overflow:hidden;

    transition:all .35s ease;

    box-shadow:
    0 12px 30px rgba(0,0,0,.10);
}

/* SHINE EFFECT */

.cta-btn::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.8s ease;
}

.cta-btn:hover::before{

    left:130%;
}

/* CALL BUTTON */

.call-btn{

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );
}

/* WHATSAPP */

.whatsapp-btn{

    background:
    linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );
}

/* HOVER */

.cta-btn:hover{

    transform:
    translateY(-6px)
    scale(1.08);

    box-shadow:
    0 18px 40px rgba(255,107,0,.25);
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .logo-area img{

        width:78px;
    }

    .logo-text h1{

        font-size:30px;
    }

    .logo-text h2{

        font-size:13px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .main-header{

        padding:12px 0;
    }

    .header-content{

        display:grid;

        grid-template-columns:auto 1fr auto;

        gap:10px;
    }

    .logo-area img{

        width:58px;
    }

    .logo-text{

        align-items:center;

        text-align:center;
    }

    .logo-text h1{

        font-size:22px;
    }

    .logo-text h2{

        font-size:10px;

        letter-spacing:1.5px;
    }

    .header-cta{

        gap:8px;
    }

    .cta-btn{

        width:44px;
        height:44px;

        font-size:16px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .logo-area img{

        width:50px;
    }

    .logo-text h1{

        font-size:18px;
    }

    .logo-text h2{

        font-size:8px;
    }

    .cta-btn{

        width:38px;
        height:38px;

        font-size:14px;
    }
}



/* =========================================
   PREMIUM NAVBAR
========================================= */

.navbar{

    width:100%;

    background:
    linear-gradient(
        135deg,
        #1F2937,
        #374151
    );

    position:relative;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

/* ORANGE GLOW */

.navbar::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
    rgba(255,107,0,.15);

    border-radius:50%;

    filter:blur(100px);

    left:-120px;
    top:-150px;
}

.nav-scroll{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:16px;

    padding:14px 20px;

    position:relative;

    z-index:2;
}

/* NAV LINKS */

.nav-scroll a{

    text-decoration:none;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    white-space:nowrap;

    padding:12px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.10);

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

    backdrop-filter:blur(12px);
}

/* SHINE EFFECT */

.nav-scroll a::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.8s ease;
}

.nav-scroll a:hover::before{

    left:130%;
}

/* HOVER */

.nav-scroll a:hover{

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );

    color:#ffffff;

    transform:
    translateY(-4px);

    border-color:transparent;

    box-shadow:
    0 15px 30px rgba(255,107,0,.25);
}

/* ACTIVE */

.nav-scroll a.active{

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );

    color:#ffffff;

    box-shadow:
    0 10px 25px rgba(255,107,0,.22);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .navbar{

        overflow-x:auto;

        scrollbar-width:none;

        -webkit-overflow-scrolling:touch;
    }

    .navbar::-webkit-scrollbar{
        display:none;
    }

    .nav-scroll{

        width:max-content;

        justify-content:flex-start;

        gap:10px;

        padding:12px;
    }

    .nav-scroll a{

        font-size:12px;

        padding:10px 16px;

        flex-shrink:0;
    }
}





/* =========================
   BRAND SECTION
========================= */

.brand-section{
    background: #f7f7f7;
    padding: 50px 0;
    overflow: hidden;
}

.brand-section h2{
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: #263246;
}

/* SLIDER */
.brand-slider{
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.brand-track{
    display: flex;
    width: max-content;

    animation: scrollBrands 35s linear infinite;
}

/* BRAND CARD */
.brand-card{
    width: 150px;
    height: 140px;

    background: #fff;

    margin-right: 20px;

    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

/* IMAGE */
.brand-card img{
    width: 80px;
    height: 60px;
    object-fit: contain;
}

/* TEXT */
.brand-card p{
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

/* INFINITE ANIMATION */
@keyframes scrollBrands{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px){

    .brand-section{
        padding: 40px 0;
    }

    .brand-section h2{
        font-size: 24px;
        padding: 0 15px;
    }

    .brand-track{
        animation-duration: 22s;
    }

    .brand-card{
        width: 110px;
        height: 105px;
    }

    .brand-card img{
        width: 60px;
        height: 42px;
    }

    .brand-card p{
        font-size: 11px;
    }
}




/* =========================
   PREMIUM PRODUCT SECTION
========================= */

.product-section{

    background:
    linear-gradient(
        180deg,
        #FFFDF8 0%,
        #FFF8F0 100%
    );

    padding:90px 0;
}

.product-section h2{

    text-align:center;

    font-size:42px;

    color:#1F2937;

    margin-bottom:60px;

    font-weight:800;

    position:relative;
}

.product-section h2::after{

    content:'';

    width:90px;

    height:5px;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );

    display:block;

    margin:15px auto 0;

    border-radius:50px;
}

/* GRID */

.product-grid{

    width:92%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* CARD */

.product-card{

    background:#ffffff;

    border-radius:28px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(255,107,0,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:all .4s ease;
}

/* ORANGE GLOW */

.product-card::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(70px);

    top:-120px;
    right:-100px;

    opacity:0;

    transition:.4s;
}

.product-card:hover::before{

    opacity:1;
}

.product-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(255,107,0,.18);
}

/* TITLE */

.product-card h3{

    font-size:30px;

    color:#1F2937;

    margin-bottom:25px;

    font-weight:800;
}

/* IMAGE */

.product-card img{

    width:100%;

    max-width:250px;

    height:230px;

    object-fit:contain;

    margin:auto;

    transition:.4s ease;
}

.product-card:hover img{

    transform:
    scale(1.08);
}

/* BUTTON AREA */

.card-buttons{

    margin-top:28px;

    display:flex;

    justify-content:center;

    gap:14px;
}

/* BUTTONS */

.card-buttons a{

    text-decoration:none;

    padding:13px 24px;

    border-radius:999px;

    color:#fff;

    font-size:15px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:8px;

    transition:.35s ease;
}

/* CALL BUTTON */

.call-btn{

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );

    box-shadow:
    0 10px 25px rgba(255,107,0,.20);
}

/* WHATSAPP */

.whatsapp-btn{

    background:
    linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );
}

/* HOVER */

.card-buttons a:hover{

    transform:
    translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .product-section{

        padding:55px 0;
    }

    .product-section h2{

        font-size:30px;

        margin-bottom:35px;
    }

    .product-grid{

        grid-template-columns:1fr;

        gap:24px;
    }

    .product-card{

        padding:28px 18px;

        border-radius:22px;
    }

    .product-card h3{

        font-size:24px;

        margin-bottom:18px;
    }

    .product-card img{

        max-width:210px;

        height:180px;
    }

    .card-buttons{

        gap:10px;
    }

    .card-buttons a{

        padding:11px 18px;

        font-size:14px;
    }
}



/* =========================================
   PREMIUM COUNTER SECTION
========================================= */

.counter-section{

    padding:100px 20px;

    background:
    linear-gradient(
        135deg,
        #1F2937 0%,
        #374151 45%,
        #4B5563 100%
    );

    position:relative;

    overflow:hidden;
}

/* ORANGE GLOW */

.counter-section::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(255,107,0,.20);

    border-radius:50%;

    filter:blur(130px);

    top:-220px;
    left:-120px;

    animation:floatGlow 8s ease-in-out infinite;
}

/* GOLD GLOW */

.counter-section::after{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:
    rgba(255,193,7,.12);

    border-radius:50%;

    filter:blur(120px);

    right:-120px;
    bottom:-180px;

    animation:floatGlow2 10s ease-in-out infinite;
}

/* =========================================
   CONTAINER
========================================= */

.counter-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    position:relative;

    z-index:2;
}

/* =========================================
   COUNTER CARD
========================================= */

.counter-box{

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:50px 25px;

    text-align:center;

    transition:.4s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

    position:relative;

    overflow:hidden;
}

/* CARD GLOW */

.counter-box::before{

    content:'';

    position:absolute;

    width:200px;
    height:200px;

    background:
    rgba(255,107,0,.12);

    border-radius:50%;

    filter:blur(60px);

    top:-80px;
    right:-80px;

    opacity:0;

    transition:.4s;
}

.counter-box:hover::before{

    opacity:1;
}

/* HOVER */

.counter-box:hover{

    transform:
    translateY(-10px);

    background:
    rgba(255,255,255,.12);

    box-shadow:
    0 25px 50px rgba(255,107,0,.18);
}

/* =========================================
   NUMBER
========================================= */

.counter{

    font-size:64px;

    font-weight:800;

    color:#FFFFFF;

    margin-bottom:12px;

    line-height:1;

    text-shadow:
    0 0 30px rgba(255,107,0,.30);
}

.counter::after{

    content:'+';

    font-size:38px;

    margin-left:3px;

    color:#FFC107;
}

/* =========================================
   TEXT
========================================= */

.counter-box p{

    color:rgba(255,255,255,.95);

    font-size:18px;

    font-weight:600;

    letter-spacing:.4px;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .counter{

        font-size:50px;
    }

    .counter-box p{

        font-size:16px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .counter-section{

        padding:60px 10px;
    }

    .counter-container{

        grid-template-columns:repeat(3,1fr);

        gap:10px;
    }

    .counter-box{

        padding:24px 10px;

        border-radius:18px;
    }

    .counter{

        font-size:30px;

        margin-bottom:6px;
    }

    .counter::after{

        font-size:16px;
    }

    .counter-box p{

        font-size:11px;

        line-height:1.4;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .counter{

        font-size:24px;
    }

    .counter::after{

        font-size:14px;
    }

    .counter-box p{

        font-size:10px;
    }
}



/* =========================
   PREMIUM INSTALLATION SECTION
========================= */

.installation-section{

    padding:90px 0;

    background:
    linear-gradient(
        180deg,
        #FFFDF8 0%,
        #FFFFFF 100%
    );

    overflow:hidden;

    position:relative;
}

/* ORANGE GLOW */

.installation-section::before{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(100px);

    top:-120px;
    left:-120px;
}

/* HEADING */

.installation-section h2{

    text-align:center;

    font-size:42px;

    color:#1F2937;

    margin-bottom:55px;

    font-weight:800;

    position:relative;
}

.installation-section h2::after{

    content:'';

    width:90px;

    height:5px;

    display:block;

    margin:15px auto 0;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );
}

/* SLIDER */

.installation-slider{

    overflow:hidden;

    width:100%;

    position:relative;
}

/* TRACK */

.installation-track{

    display:flex;

    width:max-content;

    animation:
    installationScroll 35s linear infinite;
}

/* CARD */

.install-card{

    width:340px;

    height:250px;

    margin-right:24px;

    border-radius:24px;

    overflow:hidden;

    flex-shrink:0;

    background:#ffffff;

    border:
    1px solid rgba(255,107,0,.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.4s ease;

    position:relative;
}

/* IMAGE */

.install-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;
}

/* HOVER */

.install-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 50px rgba(255,107,0,.18);
}

.install-card:hover img{

    transform:
    scale(1.08);
}

/* ANIMATION */

@keyframes installationScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* TABLET */

@media(max-width:992px){

    .installation-section h2{

        font-size:34px;
    }

    .install-card{

        width:300px;

        height:220px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .installation-section{

        padding:55px 0;
    }

    .installation-section h2{

        font-size:28px;

        margin-bottom:30px;
    }

    .installation-track{

        animation-duration:22s;
    }

    .install-card{

        width:250px;

        height:185px;

        margin-right:15px;

        border-radius:18px;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){

    .install-card{

        width:220px;

        height:165px;
    }
}


/* =========================================
   WHY CHOOSE US
========================================= */

.text-why{

    color:#1F2937;

    text-align:center;

    font-size:42px;

    font-weight:800;

    padding:0 20px 60px;

    position:relative;
}

.text-why::after{

    content:'';

    width:90px;

    height:5px;

    display:block;

    margin:15px auto 0;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );
}

/* =========================================
   SECTION
========================================= */

.why-choose-us{

    padding:100px 20px;

    background:
    linear-gradient(
        180deg,
        #FFFDF8 0%,
        #FFF8F0 100%
    );

    position:relative;

    overflow:hidden;
}

/* ORANGE GLOW */

.why-choose-us::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(120px);

    top:-220px;
    left:-120px;
}

/* =========================================
   CONTAINER
========================================= */

.why-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    position:relative;

    z-index:2;
}

/* =========================================
   CARD
========================================= */

.why-card{

    background:#ffffff;

    border-radius:28px;

    padding:38px 24px;

    text-align:center;

    border:
    1px solid rgba(255,107,0,.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

/* TOP ORANGE LINE */

.why-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #FF6B00,
        #FF8C00
    );
}

/* ORANGE GLOW */

.why-card::after{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(60px);

    top:-80px;
    right:-80px;

    opacity:0;

    transition:.4s;
}

.why-card:hover::after{

    opacity:1;
}

/* HOVER */

.why-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(255,107,0,.15);
}

/* =========================================
   ICON
========================================= */

.why-icon{

    width:85px;
    height:85px;

    margin:auto auto 22px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );

    box-shadow:
    0 15px 30px rgba(255,107,0,.20);

    position:relative;
}

.why-icon::before{

    content:'';

    position:absolute;

    width:100%;
    height:100%;

    border-radius:24px;

    background:
    rgba(255,193,7,.18);

    filter:blur(20px);

    z-index:-1;
}

.why-icon i{

    color:#ffffff;

    font-size:34px;
}

/* =========================================
   TEXT
========================================= */

.why-card h3{

    font-size:22px;

    font-weight:800;

    color:#1F2937;

    margin-bottom:12px;
}

.why-card p{

    font-size:15px;

    line-height:1.8;

    color:#6B7280;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .why-container{

        grid-template-columns:repeat(2,1fr);
    }

    .text-why{

        font-size:34px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .why-choose-us{

        padding:70px 15px;
    }

    .text-why{

        font-size:28px;

        padding-bottom:35px;
    }

    .why-container{

        grid-template-columns:repeat(2,1fr);

        gap:16px;
    }

    .why-card{

        padding:26px 16px;

        border-radius:22px;
    }

    .why-icon{

        width:65px;
        height:65px;

        border-radius:18px;

        margin-bottom:16px;
    }

    .why-icon i{

        font-size:24px;
    }

    .why-card h3{

        font-size:16px;
    }

    .why-card p{

        font-size:13px;

        line-height:1.5;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .why-card{

        padding:22px 14px;
    }

    .why-icon{

        width:58px;
        height:58px;
    }

    .why-icon i{

        font-size:22px;
    }

    .why-card h3{

        font-size:15px;
    }

    .why-card p{

        font-size:12px;
    }
}




/* =========================================
   SEO CONTENT SECTION
========================================= */

.seo-content-section{

    padding:100px 20px;

    background:
    linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FFF8F0 100%
    );

    position:relative;

    overflow:hidden;
}

/* ORANGE GLOW */

.seo-content-section::before{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(120px);

    top:-180px;
    right:-150px;
}

.seo-container{

    width:90%;

    max-width:1100px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* MAIN TITLE */

.seo-container h2{

    font-size:42px;

    font-weight:800;

    color:#1F2937;

    margin-bottom:30px;

    line-height:1.3;

    position:relative;
}

.seo-container h2::after{

    content:'';

    display:block;

    width:90px;

    height:5px;

    border-radius:50px;

    margin-top:14px;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );
}

/* PARAGRAPHS */

.seo-container p{

    font-size:17px;

    line-height:2;

    color:#6B7280;

    margin-bottom:22px;
}

/* =========================================
   AREA SECTION
========================================= */

.seo-areas{

    margin-top:50px;
}

.seo-areas h3{

    font-size:30px;

    color:#1F2937;

    margin-bottom:25px;

    font-weight:800;
}

/* AREA TAGS */

.area-list{

    display:flex;

    flex-wrap:wrap;

    gap:14px;
}

.area-list span{

    padding:12px 20px;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );

    color:#ffffff;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(255,107,0,.18);

    transition:.35s ease;
}

/* HOVER */

.area-list span:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 30px rgba(255,107,0,.28);
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .seo-container h2{

        font-size:34px;
    }

    .seo-container p{

        font-size:16px;
    }

    .seo-areas h3{

        font-size:26px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .seo-content-section{

        padding:70px 15px;
    }

    .seo-container h2{

        font-size:28px;

        margin-bottom:20px;
    }

    .seo-container p{

        font-size:15px;

        line-height:1.9;
    }

    .seo-areas{

        margin-top:35px;
    }

    .seo-areas h3{

        font-size:22px;
    }

    .area-list{

        gap:10px;
    }

    .area-list span{

        padding:10px 16px;

        font-size:12px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .seo-container h2{

        font-size:24px;
    }

    .seo-container p{

        font-size:14px;
    }

    .seo-areas h3{

        font-size:20px;
    }

    .area-list span{

        font-size:11px;

        padding:9px 14px;
    }
}



/* =========================
   FLOATING GOOGLE REVIEW
========================= */

.google-review-float{

    position:fixed;

    bottom:24px;
    left:24px;

    background:
    rgba(255,255,255,.96);

    backdrop-filter:blur(18px);

    padding:14px 18px;

    border-radius:22px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.10);

    text-decoration:none;

    z-index:9999;

    transition:.35s ease;

    border:
    1px solid rgba(255,107,0,.10);

    overflow:hidden;
}

/* ORANGE GLOW */

.google-review-float::before{

    content:'';

    position:absolute;

    width:120px;
    height:120px;

    background:
    rgba(255,107,0,.08);

    border-radius:50%;

    filter:blur(40px);

    right:-40px;
    top:-40px;
}

.google-review-float:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 40px rgba(255,107,0,.15);
}

/* TOP */

.review-top{

    display:flex;

    align-items:center;

    gap:6px;

    margin-bottom:4px;

    position:relative;

    z-index:2;
}

/* STAR */

.star{

    font-size:18px;
}

/* RATING */

.rating{

    color:#1F2937;

    font-size:16px;

    font-weight:800;
}

/* TEXT */

.review-bottom{

    color:#6B7280;

    font-size:13px;

    font-weight:600;

    position:relative;

    z-index:2;
}

/* MOBILE */

@media(max-width:768px){

    .google-review-float{

        left:12px;

        bottom:14px;

        padding:10px 14px;

        border-radius:18px;
    }

    .rating{

        font-size:14px;
    }

    .review-bottom{

        font-size:11px;
    }

    .star{

        font-size:16px;
    }
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-whatsapp,
.floating-call{

    position:fixed;

    width:62px;
    height:62px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ffffff;

    font-size:28px;

    text-decoration:none;

    z-index:9999;

    transition:.35s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.18);
}

/* WHATSAPP */

.floating-whatsapp{

    right:20px;

    bottom:20px;

    background:
    linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );
}

/* CALL */

.floating-call{

    right:20px;

    bottom:100px;

    background:
    linear-gradient(
        135deg,
        #FF6B00,
        #FF8C00
    );
}

/* PULSE EFFECT */

.floating-whatsapp::before,
.floating-call::before{

    content:'';

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.25);

    animation:pulseRing 2s infinite;
}

/* HOVER */

.floating-whatsapp:hover,
.floating-call:hover{

    transform:
    scale(1.10);

    box-shadow:
    0 20px 40px rgba(255,107,0,.22);
}

/* PULSE */

@keyframes pulseRing{

    0%{

        transform:scale(1);

        opacity:.8;
    }

    100%{

        transform:scale(1.4);

        opacity:0;
    }
}

/* MOBILE */

@media(max-width:768px){

    .floating-whatsapp,
    .floating-call{

        width:54px;
        height:54px;

        font-size:24px;
    }

    .floating-whatsapp{

        right:16px;

        bottom:16px;
    }

    .floating-call{

        right:16px;

        bottom:82px;
    }
}





/* =========================
         FOOTER
========================= */

.footer{
    background:#0F1115;
    padding-top:50px;
    margin-top:60px;
}

/* CONTAINER */
.footer-container{
    width:95%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:50px;

    padding-bottom:40px;
}

/* LEFT SIDE */
.footer-left{
    width:45%;
}

.footer-left h2{
    color:#FF6B00;
    font-size:46px;
    margin-bottom:25px;
    font-weight:700;
}

/* ITEMS */
.footer-item{
    display:flex;
    align-items:flex-start;
    gap:14px;

    margin-bottom:16px;
}

/* ICONS */
.footer-item i{
    color:#FF6B00;
    font-size:20px;
    margin-top:3px;
}

/* LINKS */
.footer-item a{
    color:#ffffff;
    text-decoration:none;
    font-size:18px;
    line-height:1.6;

    transition:0.3s ease;
}

.footer-item a:hover{
    color:#FF6B00;
}

/* MAP */
.footer-map{
    width:50%;
}

.footer-map iframe{
    width:100%;
    height:320px;
    border:none;
    border-radius:6px;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;

    padding:28px 15px;
}

.footer-bottom p{
    color:#ffffff;
    font-size:15px;
    margin-bottom:12px;
}

/* =========================
         TABLET
========================= */

@media(max-width:992px){

    .footer-container{
        flex-direction:column;
        align-items:center;
    }

    .footer-left,
    .footer-map{
        width:100%;
    }

    .footer-left{
        text-align:center;
    }

    .footer-item{
        justify-content:center;
    }
}

/* =========================
         MOBILE
========================= */

@media(max-width:768px){

    .footer{
        padding-top:40px;
    }

    .footer-left h2{
        font-size:28px;
        margin-bottom:20px;
    }

    .footer-item{
        gap:10px;
        margin-bottom:14px;
    }

    .footer-item i{
        font-size:16px;
    }

    .footer-item a{
        font-size:14px;
        line-height:1.5;
    }

    .footer-map iframe{
        height:250px;
    }

    .footer-bottom{
        padding:22px 10px;
    }

    .footer-bottom p{
        font-size:13px;
        line-height:1.5;
    }
}

.footer-title{
    margin-bottom:25px;
}

.footer-title h2{
    color:#FF6B00;
    font-size:46px;
    font-weight:700;
    margin-bottom:5px;
}

.footer-title h3{
    color:#ffffff;
    font-size:22px;
    font-weight:500;
    letter-spacing:2px;
}

/* MOBILE */
@media(max-width:768px){

    .footer-title h2{
        font-size:28px;
    }

    .footer-title h3{
        font-size:15px;
    }
}