/*==================================================
    BERGER PAINTS WEBSITE
    Theme : Berger
    Version : 1.0
==================================================*/

/*==============================================================
ROOT VARIABLES
==============================================================*/

:root{

    --primary:#d71920;
    --primary-dark:#b30d15;
    --secondary:#222222;
    --white:#ffffff;
    --light:#f8f9fa;
    --border:#e5e5e5;
    --text:#555555;
    --heading:#1c1c1c;
    --radius:14px;
    --radius-sm:8px;
    --shadow:
        0 10px 30px rgba(0,0,0,.08);
    --transition:.35s ease;
}

/*==============================================================
RESET
==============================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    font-size:16px;
    color:var(--text);
    background:#fff;
    line-height:1.75;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
    transition:var(--transition);
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

input,
textarea,
select{
    outline:none;
    font-family:inherit;
}

/*==============================================================
TYPOGRAPHY
==============================================================*/

h1,
h2,
h3,
h4,
h5,
h6{
    color:var(--heading);
    font-weight:700;
    line-height:1.25;
}

h1{
    font-size:58px;
}

h2{
    font-size:42px;
}

h3{
    font-size:30px;
}

h4{
    font-size:24px;
}

h5{
    font-size:20px;
}

p{
    margin-bottom:18px;
}

/*==============================================================
LAYOUT
==============================================================*/

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding-inline:18px;
}

.section{
    padding:100px 0;
}

.section-sm{
    padding:70px 0;
}

/*==============================================================
SECTION TITLE
==============================================================*/

.section-title{
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    color:var(--primary);
    font-size:14px;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-title h2{
    margin-bottom:20px;
}

.section-title p{
    max-width:720px;
}

/*==============================================================
BUTTONS
==============================================================*/

.btn-theme{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    border-radius:999px;
    transition:var(--transition);
    font-weight:600;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-dark);
    color:#fff;
}

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

/*==============================================================
FORM
==============================================================*/

.form-control{
    width:100%;
    height:54px;
    border:1px solid var(--border);
    border-radius:10px;
    padding:0 18px;
    transition:.3s;
    background:#fff;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(215,25,32,.08);
}

textarea.form-control{
    height:auto;
    padding:15px;
}

/*==============================================================
UTILITIES
==============================================================*/

.text-primary{
    color:var(--primary)!important;
}

.bg-light{
    background:var(--light);
}

.shadow{
    box-shadow:var(--shadow);
}

.rounded{
    border-radius:var(--radius);
}

.mt-60{
    margin-top:60px;
}

.mb-60{
    margin-bottom:60px;
}

.d-flex{
    display:flex;
}

.align-center{
    align-items:center;
}

.justify-between{
    justify-content:space-between;
}

/*==============================================================
HEADER
==============================================================*/

.site-header{
    position:relative;
    z-index:99999;
    width:100%;
    background:#fff;
}

.site-header.sticky{
    position:fixed;
    top:0;
    left:0;
    right:0;
    animation:headerDown .35s ease;
    box-shadow:0 5px 30px rgba(0,0,0,.08);
}

/*==============================================================
TOPBAR
==============================================================*/

.topbar{
    background:#222;
    color:#fff;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.topbar a{
    color:#fff;
    opacity:.9;
}

.topbar a:hover{
    opacity:1;
    color:var(--primary);
}

.topbar i{
    margin-right:6px;
}

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

.navbar{
    background:#fff;
    position:relative;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-brand img{
    height:52px;
}

/*==============================================================
MENU
==============================================================*/

.navbar-menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.navbar-menu>li{
    position:relative;
}

.navbar-menu>li>a{
    display:flex;
    align-items:center;
    gap:6px;
    color:#222;
    font-weight:600;
    font-size:15px;
    padding:35px 0;
    transition:.3s;
}

.navbar-menu>li>a:hover{
    color:var(--primary);
}

.navbar-menu>li>a.active{
    color:var(--primary);
}

.navbar-menu i{
    font-size:12px;
}


/*==============================================================
MEGA MENU
==============================================================*/

.has-mega{
    position:relative;
}

.has-mega > a{
    position:relative;
}

/* Dropdown */

.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:1200px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
    z-index:9999;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}


/* Show */
.mega-menu{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.mega-menu.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/*==============================================================
LEFT
==============================================================*/

.mega-left{
    padding:40px;
    border-right:1px solid #f0f0f0;
    background:#fff;
}

.mega-label{
    display:block;
    margin-bottom:12px;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.mega-left h4{
    margin-bottom:30px;
    font-size:28px;
    color:#222;
}

.mega-links{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.mega-links li{
    list-style:none;
}

.mega-links a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 18px;
    border-radius:14px;
    color:#444;
    font-weight:600;
    transition:.25s;
}

.mega-links a span{
    display:flex;
    align-items:center;
    gap:14px;
}

.mega-links a i{
    transition:.25s;
}

.mega-links a:hover{
    background:#f8f8f8;
    color:var(--primary);
}

.mega-links a:hover i:last-child{
    transform:translateX(6px);
}

/*==============================================================
RIGHT
==============================================================*/

.mega-right{
    padding:50px 55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#fff;
}

.mega-tag{
    display:inline-block;
    margin-bottom:16px;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.mega-right h3{
    margin-bottom:20px;
    font-size:40px;
    line-height:1.2;
    color:#222;
}

.mega-right p{
    max-width:560px;
    margin-bottom:35px;
    color:#666;
    line-height:1.8;
}

/*==============================================================
FEATURES
==============================================================*/

.mega-feature{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:35px;
}

.mega-feature div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#444;
    font-weight:500;
}

.mega-feature i{
    color:var(--primary);
}

/*==============================================================
BUTTON
==============================================================*/

.mega-right .btn-primary{
    width:max-content;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    border-radius:999px;
    font-weight:600;
}

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

@media (max-width:1200px){
    .mega-menu{
        width:95%;
    }
}

@media (max-width:991px){
    .mega-menu{
        display:none;
    }
}

/* CSS ICON */
.mega-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    background:#E31E24;
    transition:.35s;
}

.mega-icon i{
    color:#fff;
    font-size:30px;
}

.mega-item.active{
    background:#f4f4f4;
    color:var(--primary);
}

.mega-item.active i:last-child{
    transform:translateX(6px);
}

.mega-container{
    display:grid;
    grid-template-columns:340px 1fr;
    width:100%;
    min-height:560px;
}

/*==============================================================
ACTION
==============================================================*/

.navbar-action{
    display:flex;
    align-items:center;
    gap:16px;
}

.icon-button{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f4f4f4;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.icon-button:hover{
    background:var(--primary);
    color:#fff;
}

.language{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.language a{
    color:#888;
}

.language a.active{
    color:var(--primary);
    font-weight:700;
}

.btn-contact{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:999px;
    font-weight:600;
}

.btn-contact:hover{
    background:var(--primary-dark);
    color:#fff;
}

/*==============================================================
MOBILE TOGGLE
==============================================================*/

.mobile-toggle{
    width:44px;
    height:44px;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
}

.mobile-toggle span{
    width:26px;
    height:2px;
    background:#222;
    display:block;
}

/*==============================================================
MOBILE MENU
==============================================================*/

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:330px;
    height:100vh;
    background:#fff;
    z-index:99999;
    transition:.35s;
    overflow-y:auto;
    box-shadow:-5px 0 30px rgba(0,0,0,.12);
}

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

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px;
    border-bottom:1px solid #eee;
}

.mobile-header img{
    height:42px;
}

.mobile-header button{
    font-size:22px;
}

.mobile-menu ul{
    padding:20px 0;
}

.mobile-menu li{
    border-bottom:1px solid #eee;
}

.mobile-menu li a{
    display:block;
    padding:16px 25px;
    font-weight:600;
    color:#222;
}

.mobile-menu li a:hover{
    background:#f8f8f8;
    color:var(--primary);
}

.mobile-footer{
    padding:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.mobile-footer a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#444;
    font-weight:600;
}

.mobile-footer i{
    color:var(--primary);
}

/*==============================================================
HEADER ANIMATION
==============================================================*/

@keyframes headerDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}


/*==============================================================
PAGE HEADER
==============================================================*/

.page-header{
    position:relative;
    height:260px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.page-header-bg{
    position:absolute;
    inset:0;
}

.page-header-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-header-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.page-header-content{
    position:relative;
    z-index:5;
    color:#fff;
}

.page-subtitle{
    color:#fff;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.page-title{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:18px;
}

.breadcrumb{
    margin:0;
    padding:0;
    background:none;
}

.breadcrumb-item{
    color:rgba(255,255,255,.85);
    font-size:15px;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#ffc107;
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

/* section */
.section-heading{
    max-width:820px;
    margin:auto;
}

.section-subtitle{
    display:inline-block;
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:18px;
}

.section-title{
    font-size:56px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:700;
}

.section-description{
    font-size:18px;
    color:#666;
    line-height:1.9;
}



/*==============================================================
FEATURED CATEGORIES
==============================================================*/

.categories-section{
    padding:120px 0;
    background:#f7f8fa;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.category-image{
    position:relative;
    overflow:hidden;
}

.category-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.category-card:hover .category-image img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,0)
    );
}

.category-body{
    padding:28px;
}

.category-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-top:-62px;
    position:relative;
    z-index:3;
    box-shadow:0 10px 30px rgba(226,33,39,.35);
}

.category-body h3{
    margin-top:24px;
    margin-bottom:12px;
    font-size:24px;
}

.category-body p{
    color:#666;
    min-height:72px;
}

.category-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:var(--primary);
    margin-top:18px;
}

.category-link i{
    transition:.3s;
}

.category-card:hover .category-link i{
    transform:translateX(8px);
}

/*==============================================================
CATEGORY HOVER
==============================================================*/

.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    border-radius:24px;
    transition:.3s;
    pointer-events:none;
}

.category-card:hover::before{
    border-color:var(--primary);
}

/*==============================================================
CATEGORY COUNTER
==============================================================*/

.category-count{
    position:absolute;
    top:25px;
    right:25px;
    width:54px;
    height:54px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    color:var(--primary);
}

/*==============================================================
CATEGORY CTA
==============================================================*/

.categories-footer{
    margin-top:70px;
    text-align:center;
}

.categories-footer .btn{
    min-width:220px;
}

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

@media(max-width:1200px){

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

}

@media(max-width:991px){

    .why-content{
        padding-left:0;
        margin-top:50px;
    }

    .why-badge{
        right:20px;
        bottom:20px;
        width:140px;
        height:140px;
    }

    .why-badge h2{
        font-size:36px;
    }

}

@media(max-width:768px){

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

    .category-image img{
        height:240px;
    }

    .why-item{
        align-items:flex-start;
    }

    .why-icon{
        width:56px;
        height:56px;
        font-size:24px;
    }

}



/*==============================================================
COLOUR COLLECTIONS
==============================================================*/

.colour-section{
    padding:120px 0;
    background:#f7f8fb;
    position:relative;
    overflow:hidden;
}

.colour-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

/*==============================================================
COLOUR CARD
==============================================================*/

.colour-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.colour-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/*==============================================================
COLOUR PREVIEW
==============================================================*/

.colour-preview{
    height:260px;
    position:relative;
}

.colour-preview::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(255,255,255,.08),
        rgba(0,0,0,.08)
    );
}

/*==============================================================
COLOUR INFO
==============================================================*/

.colour-info{
    padding:28px;
}

.colour-code{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#f4f4f4;
    color:#777;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.colour-name{
    margin-top:18px;
    margin-bottom:10px;
    font-size:24px;
}

.colour-desc{
    color:#666;
    line-height:1.7;
}

/*==============================================================
COLOUR PALETTE
==============================================================*/

.palette{
    display:flex;
    margin-top:25px;
    gap:10px;
}

.palette span{
    width:34px;
    height:34px;
    border-radius:50%;
    border:3px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.3s;
}

.palette span:hover{
    transform:scale(1.15);
}

/*==============================================================
COLOUR ACTION
==============================================================*/

.colour-footer{
    margin-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.colour-footer a{
    color:var(--primary);
    font-weight:700;
}

.colour-footer i{
    transition:.3s;
}

.colour-footer a:hover i{
    transform:translateX(6px);
}

/*==============================================================
VISUALIZER
==============================================================*/

.visualizer{
    position:relative;
    padding:130px 0;
    background:#fff;
}

.visualizer-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

/*==============================================================
VISUALIZER IMAGE
==============================================================*/

.visualizer-image{
    position:relative;
}

.visualizer-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.visualizer-floating{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    display:flex;
    align-items:center;
    gap:16px;
}

.visualizer-floating i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.visualizer-floating h5{
    margin-bottom:6px;
}

.visualizer-floating p{
    margin:0;
    color:#777;
}

/*==============================================================
VISUALIZER CONTENT
==============================================================*/

.visualizer-content{
    max-width:560px;
}

.visualizer-content ul{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.visualizer-content li{
    display:flex;
    gap:18px;
}

.visualizer-content li i{
    width:46px;
    height:46px;
    flex-shrink:0;
    border-radius:50%;
    background:rgba(226,33,39,.08);
    color:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
}

.visualizer-content h5{
    margin-bottom:6px;
}

.visualizer-content p{
    color:#666;
    margin:0;
}

/*==============================================================
COLOUR PICKER
==============================================================*/
.colour-picker{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:40px;
}

.colour-picker span{
    width:52px;
    height:52px;
    border-radius:50%;
    cursor:pointer;
    border:4px solid #fff;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:.3s;
}

.colour-picker span:hover{
    transform:scale(1.18);
}

.colour-picker span.active{
    outline:3px solid var(--primary);
}

/*==============================================================
VISUALIZER CTA
==============================================================*/

.visualizer-buttons{
    margin-top:45px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.visualizer-buttons .btn{
    min-width:210px;
}

/*==============================================================
BACKGROUND SHAPES
==============================================================*/

.visualizer::before{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    border-radius:50%;
    background:rgba(226,33,39,.04);
    top:-180px;
    right:-180px;
}

.visualizer::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    border-radius:50%;
    background:rgba(0,0,0,.03);
    left:-120px;
    bottom:-120px;
}

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

@media(max-width:1200px){

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

}

@media(max-width:991px){

    .visualizer-wrapper{
        grid-template-columns:1fr;
    }

    .visualizer-content{
        max-width:100%;
    }

}

@media(max-width:768px){

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

    .colour-preview{
        height:220px;
    }

    .visualizer-floating{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .visualizer-buttons{
        flex-direction:column;
    }

    .visualizer-buttons .btn{
        width:100%;
    }

}


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

@media(max-width:1200px){

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

}

@media(max-width:768px){

    .inspiration-grid,
    .news-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:30px;
    }

    .testimonial-text{
        font-size:16px;
    }

    .inspiration-image img{
        height:280px;
    }

    .news-image img{
        height:220px;
    }

}


/*==============================================================
NEWSLETTER
==============================================================*/

.footer-newsletter{
    background:#222;
    color:#fff;
    padding:70px 0;
}

.newsletter-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.newsletter-content span{
    display:block;
    color:#ffc400;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.newsletter-content h2{
    color:#fff;
    max-width:600px;
}

.newsletter-form{
    display:flex;
    gap:15px;
    flex:1;
    max-width:560px;
}

.newsletter-form input{
    flex:1;
    height:58px;
    border:none;
    border-radius:50px;
    padding:0 24px;
}

.newsletter-form button{
    height:58px;
    padding:0 35px;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    font-weight:600;
}

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

.footer-main{
    padding:80px 0 60px;
    background:#161616;
}

.footer-main .container{
    max-width:1400px;
    margin:auto;
    padding:0 32px;
}

.footer-widget{
    width:100%;
}

.footer-widget h4{
    color:#fff;
    font-size:20px;
    margin-bottom:24px;
    font-weight:700;
}

.footer-widget ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-widget li{
    margin-bottom:14px;
}

.footer-widget a{
    color:#bfbfbf;
    transition:.3s;
}

.footer-widget a:hover{
    color:#fff;
    padding-left:5px;
}

.footer-logo{
    width:180px;
    margin-bottom:25px;
}

.footer-widget p{
    color:#bfbfbf;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-contact li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.footer-contact i{
    color:var(--primary);
    margin-top:4px;
    width:20px;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#252525;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-4px);
}

.footer-grid{
    display:grid;

    grid-template-columns:
        minmax(300px,2fr)
        minmax(150px,1fr)
        minmax(150px,1fr)
        minmax(150px,1fr)
        minmax(150px,1fr);

    gap:60px;

    align-items:flex-start;
}

.footer-company p{
    margin:25px 0;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget li{
    margin-bottom:14px;
}


/*==================================================
FOOTER BOTTOM
==================================================*/

.footer-bottom{
    background:#111;
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px 0;
}

.footer-bottom .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-bottom p{
    margin:0;
    color:#bfbfbf;
    font-size:15px;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.footer-links a{
    color:#bfbfbf;
    font-size:15px;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
}

@media (max-width:768px){

.footer-bottom .container{
    flex-direction:column;
    text-align:center;
}

.footer-links{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

}

@media(max-width:991px){

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

}

@media(max-width:767px){

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

}

@media (max-width:992px){

    .footer-main .container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media (max-width:768px){

    .footer-main .container{
        grid-template-columns:1fr;
    }

}

/*==============================================================
BACK TO TOP
==============================================================*/

.back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    transform:translateY(-6px);
}

/*==============================================================
SEARCH OVERLAY
==============================================================*/

.search-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
}

.search-overlay.active{
    opacity:1;
    visibility:visible;
}

.search-overlay input{
    width:70%;
    max-width:700px;
    height:72px;
    border:none;
    border-bottom:2px solid rgba(255,255,255,.25);
    background:none;
    color:#fff;
    font-size:34px;
}

.search-overlay input::placeholder{
    color:#aaa;
}



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

@media(max-width:991px){

    .dealer-wrapper{
        grid-template-columns:1fr;
    }

    .newsletter-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .newsletter-form{
        width:100%;
        max-width:100%;
    }

    .footer-bottom-wrapper{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .cta-box{
        padding:45px 30px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-buttons .btn{
        width:100%;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form button{
        width:100%;
    }

    .search-overlay input{
        width:90%;
        font-size:24px;
    }

}

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

@media (max-width:1400px){

    .container{
        max-width:1200px;
    }

    .hero-title{
        font-size:58px;
    }

    .section-title h2{
        font-size:44px;
    }

    .cta-content h2{
        font-size:46px;
    }

}

/*==============================================================
LAPTOP
==============================================================*/

@media (max-width:1200px){

    .hero-title{
        font-size:52px;
    }

    .hero-image img{
        max-width:500px;
    }

    .section{
        padding:90px 0;
    }

    .card-product{
        padding:24px;
    }

    .project-card{
        height:460px;
    }

    .footer-main{
        padding:70px 0;
    }

}

/*==============================================================
TABLET
==============================================================*/

@media (max-width:991px){

    .topbar{
        display:none;
    }

    .navbar-menu{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .hero{
        padding:140px 0 70px;
    }

    .hero .row{
        flex-direction:column-reverse;
    }

    .hero-content{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        margin-bottom:50px;
        text-align:center;
    }

    .hero-image img{
        max-width:420px;
    }

    .section{
        padding:80px 0;
    }

    .section-title{
        text-align:center;
    }

    .section-title p{
        margin-left:auto;
        margin-right:auto;
    }

    .visualizer-wrapper,
    .dealer-wrapper{
        grid-template-columns:1fr;
    }

    .paint-calculator .row{
        row-gap:40px;
    }

    .footer-main .row>div{
        margin-bottom:40px;
    }

}

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

@media (max-width:768px){

    .container{
        padding-left:18px;
        padding-right:18px;
    }

    .hero-title{
        font-size:38px;
        line-height:1.2;
    }

    .hero-description{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
    }

    .btn{
        width:100%;
        justify-content:center;
    }

    .category-card,
    .product-card,
    .project-card,
    .article-card,
    .testimonial-card{
        margin-bottom:25px;
    }

    .calculator-card{
        padding:28px;
    }

    .newsletter-content h2{
        font-size:28px;
    }

    .footer-widget{
        margin-bottom:35px;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-bottom{
        text-align:center;
    }

}

/*==============================================================
SMALL MOBILE
==============================================================*/

@media (max-width:576px){

    .hero-title{
        font-size:32px;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title span{
        font-size:13px;
    }

    .hero-image img{
        max-width:100%;
    }

    .newsletter-form input,
    .newsletter-form button{
        height:54px;
    }

    .footer-logo{
        max-width:180px;
    }

    .back-to-top{
        width:46px;
        height:46px;
        right:20px;
        bottom:20px;
    }

}

/*==============================================================
UTILITY
==============================================================*/

.shadow-sm{
    box-shadow:0 10px 25px rgba(0,0,0,.05)!important;
}

.shadow{
    box-shadow:0 15px 35px rgba(0,0,0,.08)!important;
}

.shadow-lg{
    box-shadow:0 25px 60px rgba(0,0,0,.12)!important;
}

.rounded-xl{
    border-radius:28px!important;
}

.rounded-xxl{
    border-radius:40px!important;
}

.bg-primary-soft{
    background:rgba(208,28,40,.08);
}

.bg-light{
    background:#fafafa!important;
}

.text-primary{
    color:var(--primary)!important;
}

.text-muted{
    color:#777!important;
}

/*==============================================================
SPACING
==============================================================*/

.py-section{
    padding:120px 0;
}

.mt-60{
    margin-top:60px;
}

.mb-60{
    margin-bottom:60px;
}

.mt-80{
    margin-top:80px;
}

.mb-80{
    margin-bottom:80px;
}

/*==============================================================
ANIMATION
==============================================================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.fade-up.show{
    opacity:1;
    transform:none;
}

.fade-left{
    opacity:0;
    transform:translateX(-40px);
    transition:.8s ease;
}

.fade-left.show{
    opacity:1;
    transform:none;
}

.fade-right{
    opacity:0;
    transform:translateX(40px);
    transition:.8s ease;
}

.fade-right.show{
    opacity:1;
    transform:none;
}

.zoom-in{
    opacity:0;
    transform:scale(.9);
    transition:.6s;
}

.zoom-in.show{
    opacity:1;
    transform:scale(1);
}

/*==============================================================
HOVER EFFECT
==============================================================*/

.hover-lift{
    transition:.35s;
}

.hover-lift:hover{
    transform:translateY(-8px);
}

.hover-scale{
    overflow:hidden;
}

.hover-scale img{
    transition:.45s;
}

.hover-scale:hover img{
    transform:scale(1.08);
}

/*==============================================================
SWIPER
==============================================================*/

.swiper{
    padding-bottom:50px;
}

.swiper:not(.heroSwiper){
    padding-bottom:50px;
}

.heroSwiper{
    padding-bottom:0;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    opacity:1;
    background:#ddd;
}

.swiper-pagination-bullet-active{
    width:28px;
    border-radius:30px;
    background:var(--primary);
}

.swiper-button-next,
.swiper-button-prev{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    color:var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

/*==============================================================
BOOTSTRAP OVERRIDE
==============================================================*/

.form-control{
    border-radius:14px;
    border:1px solid #ddd;
    height:54px;
    box-shadow:none!important;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(208,28,40,.15)!important;
}

.form-select{
    border-radius:14px;
    height:54px;
}

.card{
    border:none;
}

.modal-content{
    border:none;
    border-radius:24px;
}

.dropdown-menu{
    border:none;
    box-shadow:0 20px 45px rgba(0,0,0,.1);
}

/*==============================================================
SCROLLBAR
==============================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#a91018;
}

/*==============================================================
SELECTION
==============================================================*/

::selection{
    background:var(--primary);
    color:#fff;
}

/*==============================================================
PRINT
==============================================================*/

@media print{
    header,
    footer,
    .back-to-top,
    .mobile-menu,
    .search-overlay{
    display:none!important;
    }

    body{
    background:#fff;
    }

    .section{
    padding:0;
    }

}

/*==============================================================
COLOUR COLLECTIONS
==============================================================*/

.colour-section{
    position:relative;
    overflow:hidden;
    background:#fff;
}

.colour-section .swiper{
    overflow:visible;
    padding:10px 5px 80px;
}

/*==============================================================
CARD
==============================================================*/

.colour-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.06);
    transition:.45s ease;
    box-shadow:
        0 12px 40px rgba(0,0,0,.05);
    height:100%;
}

.colour-card:hover{
    transform:
        translateY(-12px);
    box-shadow:
        0 35px 70px rgba(0,0,0,.12);
}

/*==============================================================
GRADIENT BORDER
==============================================================*/

.colour-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    padding:1px;
    background:
        linear-gradient(
            135deg,
            rgba(227,30,36,.45),
            transparent,
            rgba(227,30,36,.15)
        );
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:.4s;
}

.colour-card:hover::after{
    opacity:1;
}

/*==============================================================
PREVIEW
==============================================================*/

.colour-preview{
    position:relative;
    height:260px;
    overflow:hidden;
    transition:.5s;
}

.colour-card:hover .colour-preview{
    transform:scale(1.05);
}

/*==============================================================
SHINE EFFECT
==============================================================*/

.colour-preview::before{
    content:"";
    position:absolute;
    top:-150%;
    left:-120%;
    width:80%;
    height:400%;
    background:
        linear-gradient(
            rgba(255,255,255,0),
            rgba(255,255,255,.40),
            rgba(255,255,255,0)
        );
    transform:rotate(25deg);
    transition:1s;
}

.colour-card:hover .colour-preview::before{
    left:160%;
}

/*==============================================================
OVERLAY
==============================================================*/

.colour-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:20px;
}

/*==============================================================
FAVOURITE
==============================================================*/

.fav-btn{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
    transition:.35s;
}

.fav-btn:hover{
    background:var(--primary);
    color:#fff;
    transform:scale(1.1);
}

/*==============================================================
HEX BADGE
==============================================================*/

.colour-hover{
    position:absolute;
    bottom:20px;
    left:20px;
    opacity:0;
    transform:translateY(15px);
    transition:.35s;
}

.colour-card:hover .colour-hover{
    opacity:1;
    transform:none;
}

.colour-hover span{
    background:rgba(255,255,255,.90);
    backdrop-filter:blur(10px);
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

/*==============================================================
CONTENT
==============================================================*/

.colour-content{
    padding:30px;
}

.colour-type{
    display:inline-flex;
    padding:8px 18px;
    border-radius:999px;
    background:#FFF5F5;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.colour-content h3{
    font-size:30px;
    margin-bottom:10px;
}

.colour-code{
    color:#888;
    font-weight:700;
    margin-bottom:18px;
}

.colour-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/*==============================================================
ACTION
==============================================================*/

.colour-action{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.copy-hex{
    border:none;
    border-radius:999px;
    padding:11px 18px;
    background:#fafafa;
    transition:.3s;
    font-weight:600;
}

.copy-hex:hover{
    background:var(--primary);
    color:#fff;
}

.colour-action a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-weight:700;
}

.colour-action a i{
    transition:.35s;
}

.colour-action a:hover i{
    transform:translateX(6px);
}

/*==============================================================
SWIPER NAVIGATION
==============================================================*/

.colour-next,
.colour-prev{
    position:absolute;
    top:-70px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.3s;
    z-index:20;
}

.colour-next{
    right:0;
}

.colour-prev{
    right:65px;
}

.colour-next:hover,
.colour-prev:hover{
    background:var(--primary);
    color:#fff;
}

/*==============================================================
PAGINATION
==============================================================*/

.colour-section .swiper-pagination{
    bottom:0;
}

.colour-section .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#ddd;
    opacity:1;
}

.colour-section .swiper-pagination-bullet-active{
    width:35px;
    border-radius:20px;
    background:var(--primary);
}

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

@media(max-width:991px){
    .colour-preview{
        height:220px;
    }

    .colour-content{
        padding:24px;
    }

    .colour-content h3{
        font-size:24px;
    }
}

@media(max-width:768px){
    .colour-next,
    .colour-prev{
        display:none;
    }

    .colour-action{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }
}

/*==============================================================
COPIED
==============================================================*/

.copy-hex.copied{
    background:#16a34a;
    color:#fff;
}

/*==============================================================
FAVOURITE
==============================================================*/
.fav-btn.active{
    background:#E31E24;
    color:#fff;
}

/*==============================================================
REVEAL
==============================================================*/
.colour-card{
    opacity:0;
    transform:translateY(40px);
}

.colour-card.show-card{
    opacity:1;
    transform:none;
    transition:
        opacity .7s ease,
        transform .7s ease;
}




/*==============================================================
COMPACT PAGE HEADER
==============================================================*/

.page-header-sm{
    background:#f8f9fb;
    padding:60px 0;
    border-bottom:1px solid #ececec;
}

.page-header-sm .breadcrumb{
    margin-bottom:22px;
    background:none;
    padding:0;
    list-style:none;
}

.page-header-sm .breadcrumb-item{
    font-size:14px;
    font-weight:500;
}

.page-header-sm .breadcrumb-item + .breadcrumb-item::before{
    content:"/";
    color:#999;
}

.page-header-sm .breadcrumb-item a{
    text-decoration:none;
    color:#666;
    transition:.3s;
}

.page-header-sm .breadcrumb-item a:hover{
    color:#d71920;
}

.page-header-sm .breadcrumb-item.active{
    color:#d71920;
}

.page-header-sm .page-title{
    font-size:52px;
    font-weight:700;
    margin:15px 0;
    color:#222;
}

.page-header-sm p{
    max-width:700px;
    color:#666;
    font-size:18px;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .page-header-sm{
        padding:45px 0;
    }

    .page-header-sm .page-title{
        font-size:40px;
    }

}

@media(max-width:576px){
    .page-header-sm{
        padding:35px 0;
    }

    .page-header-sm .page-title{
        font-size:30px;
    }

    .page-header-sm p{
        font-size:16px;
    }

}


/*==============================================================
SECTION
==============================================================*/

.section{
    padding:100px 0;
}

.section-heading{
    max-width:760px;
    margin:auto;
    margin-bottom:60px;
}

.section-heading .section-subtitle{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:#fff3ea;
    color:#d71920;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:50px;
    font-weight:700;
    color:#222;
    line-height:1.2;
    margin-bottom:20px;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.9;
}


/*==============================================================
FILTER
==============================================================*/

.section.pt-0{
    padding-top:0;
}

.section form{
    background:#fff;
    border-radius:28px;
    padding:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid #efefef;
}


/*==============================================================
INPUT
==============================================================*/

.section .form-control,
.section .form-select{
    height:58px;
    border-radius:16px;
    border:1px solid #e3e3e3;
    padding:0 18px;
    font-size:15px;
    transition:.35s;
    box-shadow:none;
}

.section textarea.form-control{
    height:auto;
}

.section .form-control:focus,
.section .form-select:focus{
    border-color:#d71920;
    box-shadow:0 0 0 .15rem rgba(215,25,32,.12);
}


/*==============================================================
BUTTON
==============================================================*/

.section .btn-primary{
    height:58px;
    border:none;
    border-radius:16px;
    background:#d71920;
    font-weight:600;
    transition:.35s;
}

.section .btn-primary:hover{
    transform:translateY(-3px);
    background:#c1141a;
    box-shadow:0 18px 40px rgba(215,25,32,.25);
}

.section .btn-primary i{
    margin-right:8px;
}


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

@media(max-width:991px){

    .page-banner{
        padding:90px 0 70px;
    }

    .page-banner h1{
        font-size:46px;
    }

    .section{
        padding:80px 0;
    }

    .section-heading h2{
        font-size:40px;
    }

    .section form{
        padding:22px;
    }

}

@media(max-width:767px){

    .page-banner{
        padding:70px 0 60px;
    }

    .page-banner h1{
        font-size:36px;
    }

    .page-banner p{
        font-size:16px;
    }

    .page-banner .breadcrumb{
        padding:10px 18px;
        font-size:13px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:16px;
    }

    .section form{
        border-radius:22px;
        padding:20px;
    }

}


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

.has-dropdown>a{
    display:flex;
    align-items:center;
    gap:8px;
}

.has-dropdown>a i{
    font-size:12px;
    transition:.35s;
}

.has-dropdown:hover>a i{
    transform:rotate(180deg);
}

/* dropdown */
.about-dropdown{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(18px);
    width:315px;
    background:#fff;
    border-radius:0;
    padding:18px 0;
    box-shadow:0 10px 35px rgba(0,0,0,.18);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

/* garis ungu atas */
.about-dropdown::before{
    content:"";
    position:absolute;
    top:0;
    left:30px;
    width:120px;
    height:4px;
    background:var(--primary);
}

.has-dropdown:hover .about-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.about-dropdown li{
    list-style:none;
}

.about-dropdown a{
    display:block;
    padding:18px 42px;
    color:var(--primary);
    font-size:18px;
    text-decoration:none;
    transition:.25s;
}

.about-dropdown a:hover{
    background:#faf8fd;
    color:var(--primary-dark);
    padding-left:50px;
}

.about-dropdown strong{
    font-weight:700;
}


/*==============================================================
END OF FILE
==============================================================*/


