/*==================================================
                GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
                CSS VARIABLES
==================================================*/

:root{

    --primary:#5B2C83;
    --primary-dark:#431D61;

    --white:#ffffff;

    --black:#161616;

    --gold:#C6A24B;

    --light:#F7F7F7;

    --gray:#777777;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:14px;

    --transition:.35s ease;

}

/*==================================================
                RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--black);

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

section{

    padding:90px 8%;

}

/*==================================================
                LOADER
==================================================*/

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-content{

    width:230px;

}

#loader-logo{

    width:150px;

    margin:auto;

}

.loading-line{

    margin-top:25px;

    height:4px;

    border-radius:50px;

    background:var(--primary);

    animation:loading 2s infinite;

}

@keyframes loading{

    0%{

        width:0;

    }

    100%{

        width:100%;

    }

}

/*==================================================
                OVERLAY
==================================================*/

#overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

}

#overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
                HEADER
==================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;
    height: 2vh;

    background:#fff;

    z-index:1000;

    box-shadow:0 3px 20px rgba(0,0,0,.05);

}

.header-container{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

}

.logo img{

    height:55px;

    width:auto;
    margin-bottom: 2vh;

}

.header-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.header-right a{

    color:var(--primary);

    font-size:18px;

    transition:.3s;

}

.header-right a:hover{

    color:var(--gold);

}

#menuBtn{

    color:var(--primary);

    font-size:24px;

}

/*==================================================
                SIDE MENU
==================================================*/

#sideMenu{

    position:fixed;

    top:0;

    right:-320px;

    width:320px;

    height:100vh;

    background:#fff;

    transition:.4s;

    z-index:1001;

    box-shadow:-5px 0 30px rgba(0,0,0,.12);

}

#sideMenu.active{

    right:0;

}

.menu-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-bottom:1px solid #eee;

}

.menu-header h2{

    color:var(--primary);

}

#closeMenu{

    font-size:25px;

    color:var(--primary);

}

#sideMenu ul{

    padding:30px;

}

#sideMenu li{

    margin-bottom:25px;

}

#sideMenu li a{

    font-size:17px;

    transition:.3s;

}

#sideMenu li a:hover{

    color:var(--primary);

    padding-left:8px;

}

/*==================================================
                HERO
==================================================*/

#hero{

    padding:0;

    margin-top:90px;

}

.slider{

    position:relative;

    height:85vh;

    overflow:hidden;

}

.slide{

    position:absolute;

    width:100%;

    height:100%;

    opacity:0;

    transition:1s;

}

.slide.active{

    opacity:1;

}

.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*==========================
        HERO CONTENT
===========================*/

.hero-content{

    position:absolute;

    top:50%;
    margin-left: -50px;
    transform:translateY(-50%) translateZ(0);

    width:520px;

    padding:45px;

    color:#fff;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    overflow:hidden;

    isolation:isolate;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

    will-change:transform;

    z-index:10;

}

.hero-content h1{

    font-size:58px;

    font-weight:700;

    line-height:1.05;

    margin-bottom:18px;

}

.hero-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    color:#f5f5f5;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:var(--primary);

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    letter-spacing:.5px;

    transition:all .35s ease;

}

.hero-btn:hover{

    background:var(--gold);

    color:#000;

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.18);

}

.hero-btn i{

    transition:.35s;

}

.hero-btn:hover i{

    transform:translateX(5px);

}
/*==================================================
                PLACEHOLDER SECTIONS
==================================================*/

#intro,
#products,
#about,
#mission,
#vision,
#values,
#address,
#contact{

    min-height:300px;

}

/*==================================================
                FLOATING WHATSAPP
==================================================*/

#floatingWhatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    box-shadow:var(--shadow);

    z-index:999;

    transition:.3s;

}

#floatingWhatsapp:hover{

    transform:scale(1.1);

}

/*==================================================
                FOOTER
==================================================*/

footer{

    background:#111;

    color:#fff;

    padding:60px 8%;

    text-align:center;

}
.slide::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.55),
        rgba(0,0,0,.18),
        rgba(0,0,0,.05)
    );

    z-index:1;

}

.hero-content{

    z-index:2;

}




/*====================================
            INTRO SECTION
====================================*/

#intro{

    background:#fff;

    text-align:center;

}

.intro-container{

    max-width:700px;

    margin:auto;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

#intro h2{

    font-size:34px;

    line-height:1.3;

    margin-bottom:25px;

}

#intro p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:35px;

}

.intro-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:var(--primary);

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    transition:.35s;

}

.intro-btn:hover{

    background:var(--gold);

    color:#000;

}

.intro-btn i{

    transition:.35s;

}

.intro-btn:hover i{

    transform:translateX(5px);

}


/*======================================
            PRODUCTS SECTION
=======================================*/

#products{

    background:#f8f8f8;
    padding:80px 6%;

}

.products-container{

    background:#ffffff;

    border-radius:25px;

    padding:35px;

    box-shadow:
        inset 6px 6px 18px rgba(0,0,0,.05),
        inset -6px -6px 18px rgba(255,255,255,.85);

}

.section-heading{

    text-align:center;

    margin-bottom:45px;

}

.section-heading span{

    color:var(--primary);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-heading h2{

    font-size:34px;

    margin:12px 0;

}

.section-heading p{

    max-width:650px;

    margin:auto;

    color:var(--gray);

    line-height:1.8;

}

/*=====================
      GRID
======================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

/*=====================
      CARD
======================*/

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

/*=====================
      IMAGE
======================*/

.product-image{

    position:relative;

    width:100%;

    aspect-ratio:1/1;

    overflow:hidden;

    background:#f5f5f5;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/*=====================
      DISCOUNT
======================*/

.discount{

    position:absolute;

    top:12px;

    left:12px;

    background:var(--gold);

    color:#fff;

    font-size:12px;

    font-weight:600;

    padding:6px 12px;

    border-radius:20px;

}

/*=====================
      DETAILS
======================*/

.product-details{

    display:flex;

    flex-direction:column;

    flex-grow:1;

    padding:18px;

}

.product-details h3{

    font-size:18px;

    margin-bottom:8px;

    line-height:1.3;

}

.product-details p{

    font-size:14px;

    color:var(--gray);

    line-height:1.6;

    margin-bottom:15px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

/*=====================
      PRICE
======================*/

.price{

    margin-top:auto;

    display:flex;

    align-items:center;

    gap:10px;

}

.old-price{

    color:#999;

    text-decoration:line-through;

    font-size:15px;

}

.new-price{

    color:var(--primary);

    font-size:22px;

    font-weight:700;

}

/*=====================
    QUICK VIEW BUTTON
======================*/

.quick-view{

    margin-top:18px;

    width:100%;

    padding:12px;

    border:none;

    border-radius:30px;

    background:var(--primary);

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.quick-view:hover{

    background:var(--gold);

    color:#000;

}

/*=====================
    EXPLORE MORE
======================*/

.explore-more{

    text-align:center;

    margin-top:45px;

}

.explore-more a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.explore-more a:hover{

    color:var(--gold);

}

/*=====================================
            PRODUCT MODAL
======================================*/

.modal{

    position:fixed;

    top:85px;
    left:0;
    right:0;
    bottom:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:opacity .25s ease, visibility .25s ease;

    z-index:9999;

}

.modal.active{

    opacity:1;
    visibility:visible;

}
.modal-content{

    width:92%;
    max-width:480px;
    max-height:100%;

    background:#fff;

    border-radius:22px;

    overflow:hidden; /* IMPORTANT: remove double scrolling glitches */

    position:relative;

    transform:translateY(20px);
    transition:transform .25s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.modal.active .modal-content{

    transform:translateY(0);

}

@keyframes popup{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.closeModal{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.12);

    color:var(--primary);

    font-size:22px;

}

.modal-image{

    width:100%;
    height:200px;

    background:#f5f5f5;

    overflow:hidden;

}


.modal-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block; /* IMPORTANT FIX */

}

.modal-details{

    padding:35px;

}

.modal-tag{

    color:var(--gold);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.modal-details h2{

    margin:12px 0;

    font-size:34px;

}

.modal-details p{

    line-height:1.8;

    color:var(--gray);

    margin-bottom:25px;

}

.modal-price{

    display:flex;

    gap:15px;

    align-items:center;

    margin-bottom:30px;

}

.colors h4{

    margin-bottom:12px;

}

.color-options{

    display:flex;

    gap:12px;

    margin-bottom:25px;

}

.color{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#000;

    border:3px solid transparent;

}

.color.active{

    border-color:var(--gold);

}

.color.brown{

    background:#7a5230;

}

.color.blonde{

    background:#caa95a;

}

.qty-box{

    display:flex;

    width:130px;

    justify-content:space-between;

    align-items:center;

    border:1px solid #ddd;

    border-radius:40px;

    padding:10px 15px;

    margin:18px 0 30px;

}

.qty-box button{

    font-size:22px;

    color:var(--primary);

}

#orderNow{

    width:100%;

    padding:16px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

#orderNow:hover{

    background:var(--gold);

    color:#000;

}



/*==========================================
                SHOP PAGE
===========================================*/

.shop-hero{

    height:320px;

    margin-top:90px;

    background:linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("../images/hero/hero1.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

}

.shop-overlay{

    text-align:center;

    color:#fff;

    max-width:700px;

}

.shop-overlay span{

    letter-spacing:3px;

    color:var(--gold);

    font-weight:600;

}

.shop-overlay h1{

    font-size:48px;

    margin:18px 0;

}

.shop-overlay p{

    line-height:1.8;

}

.shop-search{

    padding:40px 8%;

}

.search-box{

    max-width:700px;

    margin:auto;

    background:#fff;

    border-radius:50px;

    box-shadow:var(--shadow);

    display:flex;

    align-items:center;

    padding:15px 25px;

}

.search-box i{

    color:var(--primary);

}

.search-box input{

    width:100%;

    margin-left:15px;

    border:none;

    outline:none;

    font-size:16px;

    background:none;

}

.filters{

    display:flex;

    justify-content:center;

    gap:15px;

    padding-bottom:40px;

}

.filters button{

    padding:12px 28px;

    border-radius:40px;

    border:1px solid var(--primary);

    background:#fff;

    color:var(--primary);

}

.filters button.active{

    background:var(--primary);

    color:#fff;

}

.coming-soon{

    display:flex;

    justify-content:center;

    padding:50px 8% 90px;

}

.coming-card{

    max-width:700px;

    text-align:center;

    background:#fff;

    padding:60px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.coming-card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:25px;

}

.coming-card h2{

    margin-bottom:20px;

}

.coming-card p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:35px;

}

.coming-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    transition:.3s;

}

.coming-card a:hover{

    background:var(--gold);

    color:#000;

}


/*===============================
        CHECKOUT PAGE
================================*/

.checkout-page{

margin-top:90px;

padding:60px 8%;

background:#f8f8f8;

}

.checkout-container{

max-width:800px;

margin:auto;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:var(--shadow);

}

.checkout-container h1{

text-align:center;

margin-bottom:10px;

color:var(--primary);

}

.checkout-subtitle{

text-align:center;

color:var(--gray);

margin-bottom:40px;

}

.order-summary{

border:1px solid #eee;

border-radius:15px;

padding:25px;

margin-bottom:35px;

}

.summary-item{

display:flex;

justify-content:space-between;

margin:15px 0;

}

.total{

font-weight:700;

font-size:20px;

color:var(--primary);

}

.delivery-options{

margin-bottom:35px;

}

.delivery-options label{

display:block;

margin-top:15px;

cursor:pointer;

}

.address-form{

display:grid;

gap:20px;

margin-bottom:35px;

}

.address-form input,

.address-form textarea{

padding:15px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

font-family:inherit;

}

.address-form textarea{

height:120px;

resize:none;

}

.checkout-buttons{

display:flex;

flex-direction:column;

gap:20px;

}

.primary-btn{

background:var(--primary);

color:#fff;

padding:16px;

border-radius:40px;

font-size:17px;

font-weight:600;

transition:.3s;

}

.primary-btn:hover{

background:var(--gold);

color:#000;

}

.whatsapp-btn{

background:#25D366;

color:#fff;

padding:16px;

border-radius:40px;

font-size:17px;

font-weight:600;

display:flex;

justify-content:center;

align-items:center;

gap:10px;

transition:.3s;

}

.whatsapp-btn:hover{

transform:translateY(-3px);

}

/*====================================
        CHECKOUT MODAL
====================================*/

.checkout-modal{

    width:92%;

    max-width:480px;

    max-height:100%;

    overflow-y:auto;

    background:#fff;

    border-radius:22px;

    padding:25px;

    position:relative;

    animation:popup .35s;

}

.closeCheckout{

    position:absolute;

    top:15px;

    right:15px;

    width:40px;

    height:40px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    color:var(--primary);

}

.checkout-modal h2{

    text-align:center;

    margin-bottom:10px;

}

.checkout-text{

    text-align:center;

    color:var(--gray);

    margin-bottom:30px;

}

.summary{

    background:#f8f8f8;

    border-radius:15px;

    padding:18px;

    margin-bottom:25px;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin:12px 0;

}

.summary-row.total{

    margin-top:18px;

    padding-top:18px;

    border-top:1px solid #ddd;

    font-size:20px;

    color:var(--primary);

}

.delivery-options{

    display:flex;

    gap:20px;

    margin:20px 0;

}

.delivery-options label{

    display:flex;

    align-items:center;

    gap:8px;

}

#addressBox{

    display:none;

    margin-bottom:25px;

}

#addressBox input,
#addressBox textarea{

    width:100%;

    margin-bottom:15px;

    padding:14px;

    border:1px solid #ddd;

    border-radius:10px;

    font-family:inherit;

}

#addressBox textarea{

    height:110px;

    resize:none;

}

.checkout-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}

#payOnline{

    background:var(--primary);

    color:#fff;

    padding:16px;

    border-radius:40px;

    font-size:16px;

    font-weight:600;

}

#payOnline:hover{

    background:var(--gold);

    color:#000;

}

#whatsappOrder{

    background:#25D366;

    color:#fff;

    padding:16px;

    border-radius:40px;

    font-size:16px;

    font-weight:600;

}

/*====================================
            PAYMENT MODAL
=====================================*/

.payment-modal{

    width:92%;

    max-width:450px;

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    position:relative;

    animation:popup .35s;

    text-align:center;

}

.closePayment{

    position:absolute;

    top:15px;

    right:15px;

    width:40px;

    height:40px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.payment-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:rgba(106,27,154,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.payment-icon i{

    font-size:40px;

    color:var(--primary);

}

.payment-modal h2{

    margin-bottom:15px;

}

.payment-modal p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:30px;

}

.payment-summary{

    background:#f8f8f8;

    border-radius:15px;

    padding:20px;

    margin-bottom:30px;

}

.payment-row{

    display:flex;

    justify-content:space-between;

    margin:12px 0;

}

#payNow{

    width:100%;

    padding:16px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-size:17px;

    font-weight:600;

    margin-bottom:15px;

}

#payNow:hover{

    background:var(--gold);

    color:#000;

}

#backCheckout{

    width:100%;

    padding:16px;

    background:#eee;

    color:#333;

    border-radius:40px;

}

/*=====================================
        ABOUT SECTION
======================================*/

#about{

    padding:80px 6%;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

    margin-top:50px;

}

.about-card{

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

}

.about-card:hover{

    transform:translateY(-8px);

}

.about-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(106,27,154,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-icon i{

    font-size:32px;

    color:var(--primary);

}

.about-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.about-card p{

    color:var(--gray);

    line-height:1.8;

}

.about-card ul{

    list-style:none;

    margin-top:20px;

}

.about-card ul li{

    padding:12px 0;

    border-bottom:1px solid #eee;

}

.about-card ul li:last-child{

    border:none;

}

/*=====================================
        ADDRESS
======================================*/

#address{

    padding:80px 6%;

    background:#f8f8f8;

}

.address-card{

    background:#fff;

    border-radius:22px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.address-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:30px;

}

.address-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(106,27,154,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.address-icon i{

    color:var(--primary);

    font-size:24px;

}

.address-item h3{

    margin-bottom:8px;

}

.address-item p{

    color:var(--gray);

    line-height:1.7;

}

.map-placeholder{

    margin-top:40px;

    border:2px dashed #d8d8d8;

    border-radius:18px;

    padding:50px 20px;

    text-align:center;

}

.map-placeholder i{

    font-size:50px;

    color:var(--primary);

    margin-bottom:20px;

}

.map-placeholder h3{

    margin-bottom:12px;

}

.map-placeholder p{

    color:var(--gray);

    line-height:1.7;

}
/*=====================================
            CONTACT
======================================*/

#contact{

    padding:80px 6%;

    background:#fafafa;

}

.contact-wrapper{

    display:flex;

    flex-direction:column;

    gap:30px;

    margin-top:45px;

}

/*=====================
    WHATSAPP CARD
======================*/

.quick-contact{

    background:linear-gradient(135deg,var(--primary),#4a136b);

    color:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

}

.quick-contact .fa-whatsapp{

    font-size:55px;

    margin-bottom:20px;

}

.quick-contact h3{

    margin-bottom:15px;

    font-size:28px;

}

.quick-contact p{

    line-height:1.8;

    margin-bottom:30px;

    opacity:.95;

}

.quick-contact a{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#25D366;

    color:#fff;

    padding:16px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.quick-contact a:hover{

    transform:translateY(-4px);

}

/*=====================
    FORM
======================*/

.contact-form-box{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form-box h3{

    margin-bottom:25px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    margin-bottom:18px;

    font-size:16px;

}

.contact-form textarea{

    height:140px;

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--primary);

}

.contact-form button{

    width:100%;

    background:var(--primary);

    color:#fff;

    padding:16px;

    border:none;

    border-radius:40px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.contact-form button:hover{

    background:var(--gold);

    color:#000;

}

/*=====================
    INFO CARD
======================*/

.contact-details{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-details h3{

    margin-bottom:25px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    border-radius:50%;

    background:rgba(106,27,154,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

}

.social-links{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:30px;

}

.social-links a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f2f2f2;

    color:var(--primary);

    transition:.3s;

}

.social-links a:hover{

    background:var(--primary);

    color:#fff;

}

/*=====================================
            FOOTER
======================================*/

footer{

    background:#060417;

    color:#fff;

    margin-top:80px;

}

.footer-container{

    padding:60px 6%;

    display:grid;

    grid-template-columns:1fr;

    gap:40px;

}

.footer-brand img{

    width:140px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#bbb;

    line-height:1.8;

}

.footer-links,
.footer-contact,
.footer-social{

    display:flex;

    flex-direction:column;

}

.footer-links h3,
.footer-contact h3,
.footer-social h3{

    margin-bottom:20px;

    color:var(--gold);

}

.footer-links a{

    color:#ccc;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.footer-contact p{

    color:#ccc;

    margin-bottom:15px;

    display:flex;

    align-items:center;

    gap:12px;

}

.footer-contact i{

    color:var(--gold);

}

.footer-icons{

    display:flex;

    gap:15px;

}

.footer-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#222;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.footer-icons a:hover{

    background:var(--primary);

    transform:translateY(-4px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:20px 6%;

    text-align:center;

}

.footer-bottom p{

    color:#aaa;

    margin:8px 0;

}