/*==================================================
SAGAR JEWELLERS
Premium Landing Page
Global Styles
==================================================*/

/*=========================================
RESET
=========================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8F6F2;
    color:#222222;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
    transition:.35s ease;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

section{
    position:relative;
    padding:100px 0;
}

/*=========================================
DESIGN SYSTEM
=========================================*/

:root{

    --primary:#7A001E;
    --primary-dark:#5F0017;

    --gold:#B08D57;
    --gold-light:#D5BB86;

    --bg:#F8F6F2;
    --white:#ffffff;

    --text:#222222;
    --muted:#6B6B6B;

    --border:#ECE7DF;

    --success:#25D366;

    --radius-sm:12px;
    --radius:18px;
    --radius-lg:30px;

    --shadow-sm:
        0 10px 25px rgba(0,0,0,.05);

    --shadow:
        0 18px 45px rgba(0,0,0,.08);

    --shadow-lg:
        0 30px 80px rgba(0,0,0,.12);

    --transition:.35s cubic-bezier(.4,0,.2,1);

    --container:1320px;

}

/*=========================================
CONTAINER
=========================================*/

.container{
    max-width:1320px;
}

/*=========================================
TYPOGRAPHY
=========================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    color:var(--text);
    line-height:1.1;
    letter-spacing:-.02em;

}

h1{

    font-size:clamp(3rem,5vw,5rem);
    margin-bottom:22px;

}

h2{

    font-size:clamp(2.3rem,4vw,3.8rem);
    margin-bottom:20px;

}

h3{

    font-size:2rem;

}

h4{

    font-size:1.5rem;

}

h5{

    font-size:1.25rem;

}

p{

    color:var(--muted);
    font-size:16px;
    margin-bottom:18px;

}

small{

    color:var(--muted);

}

/*=========================================
SECTION TITLE
=========================================*/

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-label{

    display:inline-flex;
    align-items:center;
    gap:10px;

    color:var(--gold);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:18px;

    font-weight:600;

}

.section-label::before{

    content:"";

    width:45px;

    height:1px;

    background:var(--gold);

}

/*=========================================
BUTTONS
=========================================*/

.btn-primary-custom,
.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

    font-size:15px;

}

.btn-primary-custom{

    background:var(--success);

    color:#fff;

    box-shadow:0 15px 35px rgba(37,211,102,.28);

}

.btn-primary-custom:hover{

    transform:translateY(-4px);

    color:#fff;

}

.btn-outline-custom{

    background:#fff;

    border:1px solid var(--border);

    color:var(--text);

}

.btn-outline-custom:hover{

    border-color:var(--gold);

    color:var(--gold);

    transform:translateY(-4px);

}

/*=========================================
CARDS
=========================================*/

.card{

    border:none;

    border-radius:22px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

/*=========================================
IMAGES
=========================================*/

.image-cover{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*=========================================
BACKGROUND HELPERS
=========================================*/

.bg-white{

    background:#fff;

}

.bg-light{

    background:#F8F6F2;

}

.bg-primary{

    background:var(--primary);

}

.text-gold{

    color:var(--gold);

}

/*=========================================
DIVIDER
=========================================*/

.divider{

    width:80px;

    height:2px;

    background:var(--gold);

    margin:30px auto;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F1F1F1;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:30px;

}

/*=========================================
TEXT SELECTION
=========================================*/

::selection{

    background:var(--gold);

    color:#fff;

}

/*=========================================
UTILITY CLASSES
=========================================*/

.mt-30{margin-top:30px;}
.mt-50{margin-top:50px;}
.mt-80{margin-top:80px;}

.mb-30{margin-bottom:30px;}
.mb-50{margin-bottom:50px;}
.mb-80{margin-bottom:80px;}

.py-100{
    padding:100px 0;
}

.rounded-xl{
    border-radius:30px;
}

.shadow-custom{
    box-shadow:var(--shadow);
}

.text-center{
    text-align:center;
}

/*=========================================
LOADING IMAGES
=========================================*/

img{
    transition:.6s ease;
}

img:hover{
    transform:scale(1.02);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

    section{
        padding:80px 0;
    }

}

@media(max-width:991px){

    section{
        padding:70px 0;
    }

    .container{
        padding-left:20px;
        padding-right:20px;
    }

}

@media(max-width:768px){

    h1{
        font-size:2.7rem;
    }

    h2{
        font-size:2rem;
    }

    p{
        font-size:15px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
    }

}

@media(max-width:576px){

    h1{
        font-size:2.25rem;
    }

    h2{
        font-size:1.75rem;
    }

    .section-title{
        margin-bottom:40px;
    }

}

/*==================================================
HEADER
==================================================*/

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(250,248,244,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.06);
    transition:.35s ease;
}

.main-header.scrolled{
    background:#ffffff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.navbar{
    min-height:82px;
    padding:0;
}

.navbar-brand img{
    height:58px;
    width:auto;
}

.navbar-nav{
    gap:18px;
}

.nav-link{
    color:var(--charcoal);
    font-weight:500;
    font-size:15px;
    position:relative;
    padding:10px 0 !important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.35s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

/*==================================================
BUTTONS
==================================================*/

.primary-btn,
.secondary-btn,
.call-btn,
.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    border-radius:999px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.primary-btn,
.whatsapp-btn{
    background:#25D366;
    color:#fff;
    box-shadow:0 12px 30px rgba(37,211,102,.25);
}

.primary-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.secondary-btn,
.call-btn{
    background:#fff;
    border:1px solid var(--border);
    color:black;
}

.secondary-btn:hover,
.call-btn:hover{
    border-color:var(--gold);
    color:var(--gold);
    transform:translateY(-3px);
}

/*==================================================
HERO
==================================================*/

.hero-section{
    padding:170px 0 100px;
    background:
    linear-gradient(to bottom,#faf8f4,#f6f2ea);
    overflow:hidden;
}

.hero-content{
    max-width:600px;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:#fff;
    border-radius:999px;
    border:1px solid var(--border);
    font-size:14px;
    font-weight:600;
    margin-bottom:28px;
}

.hero-content h1{
    margin-bottom:24px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:34px;
    color:#555;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-features{
    display:flex;
    gap:18px;
    margin-top:42px;
    flex-wrap:wrap;
}

.hero-features div{
    background:#fff;
    padding:18px 22px;
    border-radius:16px;
    border:1px solid var(--border);
    min-width:150px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.hero-features strong{
    display:block;
    font-size:18px;
    color:var(--gold);
}

.hero-features span{
    font-size:14px;
    color:#666;
}

/*==================================================
HERO IMAGE
==================================================*/

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:32px;
    box-shadow:0 35px 80px rgba(0,0,0,.15);
}

.floating-card{
    position:absolute;
    right:-20px;
    bottom:35px;
    width:260px;
    padding:24px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.floating-card span{
    display:block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    margin-bottom:8px;
}

.floating-card h5{
    margin-bottom:12px;
}

.floating-card a{
    font-weight:600;
    color:var(--gold);
}

/*==================================================
TRUST STRIP
==================================================*/

.trust-strip{
    background:#fff;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:28px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.trust-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#faf5ea;
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.trust-item h6{
    margin:0;
    font-size:17px;
    font-family:'Cormorant Garamond',serif;
}

.trust-item p{
    margin:4px 0 0;
    font-size:14px;
    color:#666;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero-section{
    padding:140px 0 70px;
}

.navbar{
    padding:12px 0;
}

.header-actions{
    margin-top:18px;
    flex-direction:column;
    width:100%;
}

.header-actions a{
    width:100%;
}

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

.floating-card{
    position:static;
    width:100%;
    margin-top:20px;
}

}

@media(max-width:576px){

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
}

.hero-features{
    flex-direction:column;
}

.trust-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.hero-content h1{
    font-size:2.5rem;
}

.hero-content p{
    font-size:16px;
}

}

/*==================================================
TODAY'S GOLD & SILVER RATE
==================================================*/

.live-rate-section{

padding:110px 0;

background:var(--bg);

position:relative;

overflow:hidden;

}

.rate-card{

background:#fff;

border:1px solid rgba(176,141,87,.18);

border-radius:28px;

padding:60px;

box-shadow:

0 30px 80px rgba(0,0,0,.06);

position:relative;

overflow:hidden;

transition:.45s;

}

.rate-card:hover{

transform:translateY(-6px);

box-shadow:

0 45px 90px rgba(0,0,0,.08);

}

.rate-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#B08D57,#D9BE82,#B08D57);

}

.rate-top{

text-align:center;

margin-bottom:45px;

}

.rate-top h2{

margin:15px 0;

font-size:46px;

line-height:1.1;

}

.rate-top p{

max-width:650px;

margin:auto;

color:#666;

}

.rate-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-bottom:45px;

}

.rate-item{

padding:35px;

border-radius:22px;

background:#faf8f4;

border:1px solid rgba(176,141,87,.12);

text-align:center;

transition:.35s;

}

.rate-item:hover{

background:#fff;

transform:translateY(-6px);

box-shadow:

0 18px 45px rgba(0,0,0,.06);

}

.rate-label{

display:block;

font-size:13px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

color:#9b7b48;

margin-bottom:18px;

}

.rate-item h3{

font-size:38px;

font-family:'Cormorant Garamond',serif;

font-weight:700;

margin-bottom:8px;

color:#7A001E;

}

.rate-item small{

font-size:14px;

color:#888;

}

.rate-footer{

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;

padding-top:35px;

border-top:1px solid #eee;

}

.updated-time{

font-size:15px;

font-weight:500;

color:#666;

}

/*==================================================
FEATURED COLLECTIONS
==================================================*/

.featured-collections{

padding:120px 0;

background:#fff;

}

.featured-collections .section-heading{

margin-bottom:70px;

}

.collections-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.collection-card{

position:relative;

display:block;

overflow:hidden;

border-radius:28px;

height:520px;

background:#eee;

box-shadow:

0 25px 70px rgba(0,0,0,.08);

transition:.45s;

}

.collection-card:hover{

transform:translateY(-8px);

}

.collection-card img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.collection-card:hover img{

transform:scale(1.08);

}

.collection-card::after{

content:"";

position:absolute;

left:0;

right:0;

bottom:0;

height:70%;

background:

linear-gradient(

180deg,

transparent,

rgba(0,0,0,.86)

);

}

.collection-content{

position:absolute;

left:40px;

right:40px;

bottom:40px;

z-index:5;

color:#fff;

}

.collection-content span{

display:inline-block;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

font-weight:600;

opacity:.9;

margin-bottom:15px;

}

.collection-content h3{

font-size:42px;

margin-bottom:14px;

color:#fff;

line-height:1.1;

}

.collection-content p{

margin:0;

font-size:15px;

color:#ddd;

max-width:300px;

}

/*==================================================
MICRO INTERACTION
==================================================*/

.collection-card:hover .collection-content{

transform:translateY(-5px);

transition:.45s;

}

/*==================================================
BUTTON INSIDE RATE
==================================================*/

.rate-footer .primary-btn{

padding:15px 34px;

border-radius:50px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.collection-card{

height:450px;

}

.collection-content h3{

font-size:34px;

}

.rate-top h2{

font-size:38px;

}

}

@media(max-width:991px){

.rate-card{

padding:40px;

}


.rate-footer{

flex-direction:column;

align-items:flex-start;

}


.collection-card{

height:420px;

}

}

@media(max-width:767px){

.live-rate-section{

padding:80px 0;

}

.featured-collections{

padding:80px 0;

}

.rate-card{

padding:28px;

border-radius:20px;

}

.rate-top{

margin-bottom:30px;

}

.rate-top h2{

font-size:30px;

}

.rate-item{

padding:24px;

}

.rate-item h3{

font-size:28px;

}

.collection-card{

height:340px;

border-radius:20px;

}

.collection-content{

left:24px;

right:24px;

bottom:24px;

}

.collection-content h3{

font-size:28px;

}

.collection-content p{

font-size:14px;

}

}

@media(max-width:576px){

.rate-label{

font-size:11px;

letter-spacing:1.5px;

}


.rate-footer .primary-btn{

width:100%;

text-align:center;

}

}
.product-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
    padding-left:30px;
    padding-right:30px;

}
.product-card{

background:#fff;

border-radius:14px;

overflow:hidden;

transition:.35s;

box-shadow:0 10px 35px rgba(0,0,0,.06);

border:1px solid #efefef;

}

.product-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.product-image{

position:relative;

overflow:hidden;

aspect-ratio:4/5;

background:#f7f7f7;

}

.product-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-info{

padding:20px;

}

.product-info h3{

font-size:22px;

font-family:'Cormorant Garamond',serif;

margin-bottom:8px;

line-height:1.3;

}

.product-info p{

font-size:14px;

color:#777;

margin-bottom:18px;

}

.product-btn{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

padding:14px;

background:#111;

color:#fff;

font-size:13px;

font-weight:600;

text-transform:uppercase;

letter-spacing:1px;

border-radius:8px;

transition:.3s;

}

.product-btn:hover{

background:#7A001E;

color:#fff;

}
.product-tag{

position:absolute;

top:15px;

left:15px;

padding:7px 12px;

background:#fff;

font-size:11px;

font-weight:700;

text-transform:uppercase;

letter-spacing:1px;

z-index:5;

border-radius:4px;

}
/* Large Laptop */

@media(max-width:1400px){

.product-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Tablet */

@media(max-width:992px){

.product-grid{

grid-template-columns:repeat(3,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.product-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.product-info{

padding:14px;

}

.product-info h3{

font-size:18px;

}

}

/* Small Mobile */

@media(max-width:480px){

.product-grid{

grid-template-columns:repeat(2,1fr);

gap:14px;

}

.product-btn{

font-size:11px;

padding:11px;

}

}

.gallery-container{

    max-width:1700px;

    margin:auto;

    padding:0 40px;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{
    background:#faf8f4;
    position:relative;
}

.section-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b08d57;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    line-height:1.1;
    color:#1f1f1f;
    margin-bottom:20px;
}

.section-description{
    max-width:700px;
    margin:auto;
    color:#6f6f6f;
    font-size:17px;
    line-height:1.8;
}

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    transition:.45s;

    border:1px solid #eee;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.04);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.09);

}

.feature-icon{

    width:78px;

    height:78px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f7f3eb;

    color:#b08d57;

    font-size:34px;

}

.feature-card h4{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:15px;

    color:#1f1f1f;

}

.feature-card p{

    color:#6d6d6d;

    line-height:1.8;

    margin:0;

}


/*==================================================
BRIDAL SECTION
==================================================*/

.bridal-section{

    background:#fff;

    overflow:hidden;

}

.bridal-image{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.bridal-image img{

    width:100%;

    transition:.8s;

}

.bridal-image:hover img{

    transform:scale(1.06);

}

.bridal-section h2{

    font-size:58px;

    line-height:1.05;

    margin:18px 0 25px;

}

.bridal-section p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.bridal-list{

    margin:35px 0;

    padding:0;

    list-style:none;

}

.bridal-list li{

    position:relative;

    padding-left:34px;

    margin-bottom:18px;

    color:#444;

    font-weight:500;

}

.bridal-list li:before{

    content:"✓";

    position:absolute;

    left:0;

    color:#b08d57;

    font-weight:700;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


.review-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 80px rgba(0,0,0,.08);

}


.review-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}


.review-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.review-user h5{

    margin:0;

    font-size:22px;

    color:#1f1f1f;

}

.review-user span{

    color:#888;

    font-size:14px;

}




/*==================================================
SECTION SPACING
==================================================*/

.section-padding{

    padding:110px 0;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.section-title{

font-size:42px;

}

.bridal-section h2{

font-size:42px;

}

.feature-card{

padding:35px 25px;

}

}

@media(max-width:768px){

.section-padding{

padding:70px 0;

}

.section-title{

font-size:34px;

}

.bridal-section h2{

font-size:36px;

}

.review-card{

padding:25px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.feature-card{

margin-bottom:20px;

}

}

/*==================================================
VISIT STORE
==================================================*/

.visit-store{

    background:#faf8f4;

    position:relative;

}

.store-map{

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    border:1px solid #ece7df;

}

.store-map iframe{

    width:100%;

    height:520px;

    border:0;

}

.store-card{

    background:#fff;

    padding:50px;

    border-radius:24px;

    border:1px solid #ece7df;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.store-card h3{

    font-size:38px;

    margin-bottom:30px;

}

.store-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.store-card li{

    margin-bottom:28px;

    color:#555;

    line-height:1.8;

    font-size:16px;

}

.store-card strong{

    display:block;

    color:#222;

    margin-bottom:6px;

    font-weight:600;

}

.store-actions{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:35px;

}

.store-actions .primary-btn,

.store-actions .secondary-btn{

    flex:1;

    min-width:180px;

}

/*==================================================
FAQ
==================================================*/

.faq-section{

    background:#fff;

}

.custom-faq{

    max-width:900px;

    margin:auto;

}

.custom-faq .accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.custom-faq .accordion-button{

    background:#fff;

    font-weight:600;

    font-size:17px;

    color:#222;

    padding:24px 30px;

    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#7A001E;

    color:#fff;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-body{

    padding:30px;

    line-height:1.8;

    color:#666;

    background:#fff;

}

/*==================================================
FINAL CTA
==================================================*/

.final-cta{

    background:#7A001E;

    color:#fff;

    padding:120px 0;

    position:relative;

    overflow:hidden;

}

.final-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(255,255,255,.08),

    transparent 45%);

}

.cta-wrapper{

    position:relative;

    z-index:2;

    max-width:820px;

    margin:auto;

    text-align:center;

}

.final-cta .section-label{

    color:#d4b36c;

}

.final-cta h2{

    color:#fff;

    font-size:56px;

    margin:20px 0;

}

.final-cta p{

    color:#f4f4f4;

    margin:auto;

    max-width:620px;

}

.final-cta .hero-buttons{

    justify-content:center;

    margin-top:45px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#1f1f1f;

    color:#bbb;

    padding:90px 0 30px;

}

.footer-logo{

    width:180px;

    margin-bottom:30px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:15px;

}

.footer a{

    color:#bbb;

    transition:.35s;

}

.footer a:hover{

    color:#d4b36c;

}

.footer hr{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#888;

    margin:0;

    font-size:15px;

}

/*==================================================
STICKY MOBILE CTA
==================================================*/

.mobile-cta{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    background:#fff;

    display:none;

    z-index:999;

    padding:12px;

    box-shadow:0 -8px 25px rgba(0,0,0,.08);

    gap:12px;

}

.mobile-cta a{

    flex:1;

    text-align:center;

    border-radius:50px;

    padding:14px;

    font-weight:600;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    font-size:15px;

}

.call-btn{

    background:#222;

    color:#fff;

}

.whatsapp-btn{

    background:#25D366;

    color:#fff;

}

.mobile-cta.hide{

    transform:translateY(120%);

    transition:.35s;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.store-map iframe{

height:420px;

}

.store-card{

padding:35px;

}

.final-cta h2{

font-size:42px;

}

.footer{

padding-bottom:120px;

}

.mobile-cta{

display:flex;

}

}

@media(max-width:768px){

.store-actions{

flex-direction:column;

}

.final-cta{

padding:90px 0;

}

.final-cta h2{

font-size:34px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.store-card{

padding:28px;

}

.custom-faq .accordion-button{

padding:20px;

font-size:16px;

}

.custom-faq .accordion-body{

padding:20px;

}

}


.hero-section{

height:100vh;

min-height:850px;

background:#74001b;

position:relative;

overflow:hidden;

}

.hero-bg{

position:absolute;

inset:0;

background:

url(images/noise.png),

radial-gradient(circle at center,

rgba(255,255,255,.05),

transparent 60%);

opacity:.25;

}

.hero-content{

color:#fff;

position:relative;

z-index:2;

}

.hero-image img{

width:100%;

max-height:820px;

object-fit:contain;

}

.navbar-toggler{
    width:52px !important;
    height:52px !important;
    border-radius:50% !important;
    background:#ffffff !important;
    border:1px solid rgba(0,0,0,.08) !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    gap:6px !important;
    transition:.35s ease !important;
    box-shadow:0 10px 25px rgba(0,0,0,.08) !important;
}

.navbar-toggler:hover{
    background:#7A001E !important;
}

.navbar-toggler:hover .toggler-line{
    background:#fff !important;
}

.navbar-toggler:focus{
    box-shadow:0 0 0 4px rgba(122,0,30,.15) !important;
}

.toggler-line{
    width:22px;
    height:2px;
    background:#222;
    border-radius:10px;
    transition:.35s ease;
}

.navbar-toggler.active .toggler-line:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.navbar-toggler.active .toggler-line:nth-child(2){
    opacity:0;
}

.navbar-toggler.active .toggler-line:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.navbar-toggler{
    display:flex;
}

@media (min-width:992px){

.navbar-toggler{
    display:none !important;
}

}

/*=========================================
GOOGLE REVIEWS
=========================================*/

.google-reviews-section{

    padding:110px 0;

    background:#faf8f4;

}

.reviews-wrapper{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    border:1px solid #ece7df;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    padding:15px;

}

.reviews-wrapper iframe{

    width:100%;

    height:720px;

    border:0;

    display:block;

    border-radius:20px;

}

/* Desktop */

@media(min-width:1200px){

.reviews-wrapper iframe{

height:680px;

}

}

/* Tablet */

@media(max-width:991px){

.reviews-wrapper iframe{

height:760px;

}

}

/* Mobile */

@media(max-width:768px){

.google-reviews-section{

padding:70px 0;

}

.reviews-wrapper{

padding:10px;

border-radius:20px;

}

.reviews-wrapper iframe{

height:900px;

}

}