/* ===========================================
   Saaheli JEWELLERY WEBSITE
   style.css
=========================================== */


:root{
    --gold:#C99A32;
    --dark:#0E150D;
    --brown:#4A1F12;
    --ivory:#FFF8E8;
    --cream:#F4E4C2;
    --terracotta:#AC632E;
    --terracotta-dark:#954015;
    --olive:#535027;
    --white:#ffffff;
    --text:#604B3E;
    --gray:#EAD8B5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--brown);
    background:var(--cream);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-weight:600;
	font-family: "Cormorant Garamond", serif;
}

a{
    text-decoration:none;
}

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

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

.navbar{
    background:rgba(74,31,18,.97);
    transition:.4s;
    padding:18px 0;
}

.navbar-brand{
    display:flex;
    align-items:center;
    color:var(--cream) !important;
    font-size:30px;
    font-weight:bold;
    font-family:'Cinzel',serif;
}

.logo{
    width:55px;
    height:55px;
    border-radius:50%;
    margin-right:10px;
}

.nav-link{
    color:var(--cream) !important;
    margin-left:18px;
    transition:.3s;
    font-weight:500;
}

.nav-link:hover{
    color:var(--gold)!important;
}

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

section{
    padding:90px 0;
}

section h2 {
    font-size: 60px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

section p{
    color:var(--text);
}

/* =============================
      FOUNDERS
============================= */

.founder-box{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:18px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.founder-box:hover{

transform:translateY(-10px);

}

.founder-box i{

font-size:45px;

color:var(--gold);

margin-bottom:20px;

}

.founder-box h4{
margin-bottom:15px;
font-size: 39px;
}

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

.categories{
    background:#EAD8B5;
	padding-bottom:80px !important;
}

.category-card{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

}

.category-card img{

height:350px;

width:100%;

object-fit:cover;

transition:.5s;

}

.category-card:hover img{

transform:scale(1.1);

}

.category-card h3{

position:absolute;

bottom:25px;

left:25px;

background:rgba(74,31,18,.90);

padding:12px 25px;

color:#fff;

border-radius:30px;

}

/* =============================
      PRODUCTS
============================= */


.product-card{
    background:#FFF8E8;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 30px rgba(74,31,18,.12);
    transition:.4s;
}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

height:280px;

width:100%;

object-fit:cover;

}

.product-info{
	padding: 13px;
    text-align: left;
}

.product-info h4{
    color:var(--brown);

font-size:28px;

margin:0;

}

/* ===========================================
   WHY CHOOSE Saaheli
=========================================== */

.why-saaheli{
	padding-bottom:80px !important;
    background: #EAD8B5;
}

.feature-box{
    background:#FFF8E8;
    color:var(--brown);
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(74,31,18,.10);
    height:100%;
}

.feature-box-text{
font-size: 39px;
}

.feature-box:hover{
    transform:translateY(-10px);
    background:var(--brown);
    color:var(--cream);
}

.feature-box:hover p{
    color:#EAD8B5;
}

.feature-box i{
    font-size:50px;
    color:var(--gold);
    margin-bottom:20px;
}

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

.crafter_padding{
	padding-bottom:80px !important;
}

.craft-section{
    background:#f8f9fa;
}

.craft-section img{
    border-radius:20px;
}

.craft-section ul li{
    font-size:17px;
}

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

.promise{
    background:var(--brown);
    color:var(--cream);
}

.promise h2{
    color:var(--cream);
}

.promise h5{
    margin-top:15px;
    color:var(--cream);
}

.promise i{
    transition:.3s;
}

.promise i:hover{
    transform:scale(1.15);
}

/* ===========================================
   TESTIMONIALS
=========================================== */

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;
    margin-bottom:25px;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card img{
    width:80px;
    height:80px;
    object-fit:cover;
    margin:auto;
    border:3px solid var(--gold);
}

.testimonial-card p{
    margin:20px 0;
}


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


.footer{
    background:var(--dark);
    color:var(--cream);
    padding:70px 0 25px;
}

.footer h3,{
    color:var(--gold);
	font-family: "Italianno", cursive;
    font-size: 60px;
    padding-top: 10px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.8;
}
.footer h5{
	color:#FFF;
	font-size: 24px;
}

.footer p{
    color:#D8C29B;
	padding-top: 18px;
}

.footer ul{
    padding:0;
}

.footer ul li{
    list-style:none;
    margin:10px 0;
}

.footer ul li a{
    color:#D8C29B;
    transition:.3s;
}

.footer ul li a:hover{
    color:var(--gold);
}

.social-icons a{
    width:42px;
    height:42px;
    background:var(--brown);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--cream);
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--gold);
    color:var(--brown);
}

.footer hr{
    border-color:#333;
    margin:35px 0;
}

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

#topBtn{
    position:fixed;
    bottom:30px;
    right:30px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    display:none;
    z-index:999;
    transition:.3s;
}

#topBtn:hover{
    background:#111;
}

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


@media(max-width:768px){

section{
    padding:70px 0;
}


section h2{
    font-size:30px;
}

.navbar-brand{
    font-size:24px;
}

.category-card img{
    height:260px;
}

.product-card img{
    height:240px;
}

}

@media(max-width:576px){

.testimonial-card,
.feature-box,
.founder-box{
    padding:25px;
}

}

/* ===========================================
   SMOOTH ANIMATIONS
=========================================== */

.product-card,
.category-card,
.feature-box,
.founder-box,
.testimonial-card,
.social-icons a,
.btn,
img{
    transition:all .4s ease;
}

html{
    scroll-behavior:smooth;
}


/* ==========================
       PRELOADER
========================== */

#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:var(--cream);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:1s;
}

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

.loader-content img{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    object-fit:cover;
}

.loader-content h1{
    margin-top:20px;
    color:var(--brown);
    letter-spacing:5px;
	font-family: "Italianno", cursive;
	font-size:65px;
}

.loader-line{
    width:48px;
    height:48px;
    border:4px solid rgba(74,31,18,.18);
    border-top:4px solid var(--gold);
    border-radius:50%;
    margin:25px auto 0;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

.navbar-brand span {
    font-family: "Italianno", cursive;
    font-size: 60px;
	padding-top: 10px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.8;
}



/* ==========================================
   PREMIUM Saaheli HERO
========================================== */

.premium-hero {
    position: relative;
    min-height: 690px;
    padding: 130px 0 80px;
    background: #F5EDE1;
    overflow: hidden;
}

/* Soft decorative background 

.premium-hero-bg {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -180px;
    top: -300px;
    border-radius: 50%;
    background: #e5d8c7;
    opacity: .65;
}*/

/* Hero content */

.premium-hero-container {
    position: relative;
    z-index: 2;
}

.premium-hero-content {
    position: relative;
    z-index: 5;
    padding-left: 35px;
}

.premium-hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: .98;
    font-weight: 500;
    letter-spacing: -1px;
    color: #27231f;
    margin-bottom: 10px;
}

.hero-script {
    font-family: "Italianno", cursive;
    font-size: 67px;
    line-height: 1;
    color: #c18c3c;
}

.premium-hero-content p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #5d574f;
    margin-bottom: 25px;
}

/* Button */

.premium-hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c99a32;
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
    border-radius: 2px;
    transition: all .3s ease;
}

.premium-hero-btn:hover {
    background: #a97820;
    transform: translateY(-2px);
}

/* Founders image */

.premium-hero-image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.premium-hero-image img {
    width: 100%;
    max-width: 700px;
    height: 490px;
    object-fit: cover;
    object-position: center;
    border-radius: 0px 180px 0 0;
    position: relative;
    z-index: 2;
    /* margin-top: 68px; */
}

/* Decorative image shape

.premium-hero-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: #ded0bd;
    border-radius: 50%;
    top: -100px;
    right: 20px;
    z-index: 0;
} */


/* ==========================================
   FEATURE BAR
========================================== */

.premium-feature-bar {
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);

    width: calc(100% - 120px);
    max-width: 900px;

    background: rgba(255,255,255,.96);

    border: 1px solid #eadfd1;
    border-radius: 7px;

    padding: 16px 25px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    box-shadow: 0 8px 30px rgba(74, 55, 35, .08);

    z-index: 10;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 190px;
}

.premium-feature-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c49a5a;
    font-size: 21px;

    position: relative;
}

.premium-feature-icon .fa-user {
    font-size: 15px;
    margin-left: -3px;
}

.premium-feature-icon .fa-user + .fa-user {
    margin-left: -8px;
}

.premium-feature strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #38332d;
    margin-bottom: 3px;
}

.premium-feature span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #817970;
}


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

@media(max-width: 991px) {

    .premium-hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 170px;
    }

    .premium-hero-content {
        text-align: center;
        padding-left: 15px;
        margin-bottom: 30px;
    }

    .premium-hero-content h1 {
        font-size: 55px;
    }

    .premium-hero-image {
        height: 420px;
    }

    .premium-hero-image img {
        height: 420px;
    }

    .premium-feature-bar {
        width: calc(100% - 40px);
    }

}


@media(max-width: 767px) {

    .premium-hero {
        padding-top: 110px;
        padding-bottom: 240px;
    }

    .premium-hero-content h1 {
        font-size: 46px;
    }

    .hero-script {
        font-size: 55px;
    }

    .premium-hero-image {
        height: 350px;
    }

    .premium-hero-image img {
        height: 350px;
        border-radius: 120px 120px 0 0;
    }


    .premium-feature-bar {
        bottom: 25px;
        width: calc(100% - 30px);
        padding: 15px 10px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .premium-feature {
        width: 100%;
    }

}


@media(max-width: 480px) {

    .premium-hero-content h1 {
        font-size: 40px;
    }

    .hero-script {
        font-size: 48px;
    }

    .premium-hero-content p {
        font-size: 11px;
    }

    .premium-hero-image {
        height: 300px;
    }

    .premium-hero-image img {
        height: 300px;
    }

}



/* Crafted with Excellence */
.crafted-section .row {
    display: flex;
    align-items: stretch;
}

.crafted-section .crafted-image {
    display: flex;
}

.crafted-section .crafted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.crafted-row {
    display: flex;
    align-items: stretch;
}

.crafted-image {
    display: flex;
}

.crafted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crafted-image {
    height: 500px;
}

.crafted-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================
   Saaheli EXHIBITION SECTION
========================================== */

.exhibition-section {
    position: relative;
    padding: 60px 0 80px;
	background: #EAD8B5;
	overflow: hidden;
}




/* ==========================================
   IMAGE GRID
========================================== */

.exhibition-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 230px;

    gap: 18px;

    max-width: 1150px;

    margin: auto;

    position: relative;

    z-index: 2;
}


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

.exhibition-card {

    position: relative;

    overflow: hidden;

    border-radius: 4px;

    background: #ded0bd;

    cursor: pointer;
}

.exhibition-card img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s ease,
        filter .5s ease;
}

.exhibition-card:hover img {

    transform: scale(1.06);

    filter: brightness(.88);
}


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

.exhibition-card-large {

    grid-column: span 2;

    grid-row: span 2;
}


.exhibition-card-small {

    grid-column: span 1;

    grid-row: span 1;
}


.exhibition-card-medium {

    grid-column: span 1;

    grid-row: span 2;
}


.exhibition-card-wide {

    grid-column: span 2;

    grid-row: span 2;
}


/* ==========================================
   IMAGE NUMBER
========================================== */

.exhibition-number {

    position: absolute;

    top: 15px;
    right: 15px;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color: #54251b;

    font-family: "Cormorant Garamond", serif;

    font-size: 14px;

    font-weight: 600;
}


/* ==========================================
   IMAGE CAPTION
========================================== */

.exhibition-caption {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 70px 28px 25px;

    color: white;

    background:
        linear-gradient(
            to top,
            rgba(45,24,16,.78),
            rgba(45,24,16,0)
        );
}

.exhibition-caption span {

    display: block;

    margin-bottom: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 3px;

    color: #e1b866;
}

.exhibition-caption h3 {

    margin: 0 0 4px;

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;

    font-weight: 500;
}

.exhibition-caption p {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    color: rgba(255,255,255,.85);
}


/* ==========================================
   BOTTOM CTA
========================================== */

.exhibition-bottom {

    max-width: 1150px;

    margin: 45px auto 0;

    padding: 28px 32px;

    display: grid;

    grid-template-columns:
        1fr 1.5fr auto;

    align-items: center;

    gap: 35px;

    background: #fffaf3;

    border: 1px solid #e4d7c5;

    border-radius: 5px;

    position: relative;

    z-index: 2;
}


/* LOCATION */

.exhibition-location {

    display: flex;

    align-items: center;

    gap: 13px;
}

.location-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c99a3b;

    color: #fff;

    font-size: 14px;
}

.exhibition-location span {

    display: block;

    margin-bottom: 3px;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    color: #a17b43;
}

.exhibition-location strong {

    display: block;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    color: #43251b;
}


/* CTA TEXT */

.exhibition-bottom-text h3 {

    margin: 0 0 4px;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 600;

    color: #49251b;
}

.exhibition-bottom-text h3 em {

    font-family: "Italianno", cursive;

    font-size: 34px;

    font-weight: 400;

    color: #bd8b35;
}

.exhibition-bottom-text p {

    margin: 0;

    max-width: 480px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.7;

    color: #76685d;
}


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

.exhibition-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 13px 20px;

    white-space: nowrap;

    background: #54251b;

    color: #fff !important;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    border-radius: 2px;

    transition: .3s ease;
}

.exhibition-btn:hover {

    background: #bd8b35;

    transform: translateY(-2px);
}

.exhibition-btn i {

    transition: .3s ease;
}

.exhibition-btn:hover i {

    transform: translateX(4px);
}


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

@media (max-width: 991px) {

    .exhibition-section {

        padding: 90px 0 100px;
    }

    .exhibition-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 250px;

        gap: 15px;
    }

    .exhibition-card-large {

        grid-column: span 2;

        grid-row: span 2;
    }

    .exhibition-card-medium {

        grid-column: span 1;

        grid-row: span 2;
    }

    .exhibition-card-wide {

        grid-column: span 2;

        grid-row: span 2;
    }

    .exhibition-bottom {

        grid-template-columns:
            1fr 1fr;

        gap: 25px;
    }

    .exhibition-btn {

        justify-self: start;
    }

}


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

@media (max-width: 767px) {

    .exhibition-section {

        padding: 75px 0 80px;
    }


    .exhibition-eyebrow {

        font-size: 8px;

        letter-spacing: 2px;
    }



    /* MOBILE GRID */

    .exhibition-grid {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        grid-auto-rows: 200px;

        gap: 10px;
    }


    .exhibition-card-large {

        grid-column: span 2;

        grid-row: span 2;
    }

    .exhibition-card-small {

        grid-column: span 1;

        grid-row: span 1;
    }

    .exhibition-card-medium {

        grid-column: span 1;

        grid-row: span 2;
    }

    .exhibition-card-wide {

        grid-column: span 2;

        grid-row: span 2;
    }


    .exhibition-caption {

        padding: 55px 18px 18px;
    }

    .exhibition-caption h3 {

        font-size: 21px;
    }


    /* CTA */

    .exhibition-bottom {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        margin-top: 30px;

        padding: 25px 20px;

        gap: 22px;
    }

    .exhibition-bottom-text h3 {

        font-size: 23px;
    }

    .exhibition-btn {

        width: 100%;
    }

}


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

@media (max-width: 480px) {


    .exhibition-grid {

        grid-auto-rows: 170px;
    }

    .exhibition-card-large {

        grid-row: span 2;
    }

    .exhibition-card-wide {

        grid-row: span 2;
    }

}


/* ==========================================
   SCROLL REVEAL ANIMATION
========================================== */

.reveal-item {
    opacity: 0;
    transform: translateY(60px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.22, 1, .36, 1);
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}


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

.exhibition-card:nth-child(1) {
    transition-delay: 0.05s;
}

.exhibition-card:nth-child(2) {
    transition-delay: 0.15s;
}

.exhibition-card:nth-child(3) {
    transition-delay: 0.25s;
}

.exhibition-card:nth-child(4) {
    transition-delay: 0.35s;
}

.exhibition-card:nth-child(5) {
    transition-delay: 0.45s;
}

.exhibition-card:nth-child(6) {
    transition-delay: 0.55s;
}

.exhibition-card:nth-child(7) {
    transition-delay: 0.65s;
}

.exhibition-card:nth-child(8) {
    transition-delay: 0.75s;
}


/* ==========================================
   IMAGE ZOOM
========================================== */

.exhibition-card img {

    transform: scale(1.08);

    transition:
        transform 1.5s cubic-bezier(.22, 1, .36, 1),
        filter .6s ease;
}

.exhibition-card.show img {

    transform: scale(1);
}


/* ==========================================
   HOVER ZOOM
========================================== */

.exhibition-card:hover img {

    transform: scale(1.06);

    filter: brightness(.9);
}


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

.exhibition-caption {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .8s ease .4s,
        transform .8s cubic-bezier(.22, 1, .36, 1) .4s;
}

.exhibition-card.show .exhibition-caption {

    opacity: 1;

    transform: translateY(0);
}


/* ==========================================
   NUMBER BADGE
========================================== */

.exhibition-number {

    opacity: 0;

    transform: translateY(-12px) scale(.8);

    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1);
}

.exhibition-card.show .exhibition-number {

    opacity: 1;

    transform: translateY(0) scale(1);
}


/* ==========================================
   IMAGE PARALLAX FEEL
========================================== */

.exhibition-card img {

    will-change: transform;
}


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

.exhibition-bottom {

    transition:
        transform 1s cubic-bezier(.22, 1, .36, 1),
        opacity 1s ease;
}

.exhibition-bottom.reveal-item {

    transform: translateY(45px);
}

.exhibition-bottom.show {

    transform: translateY(0);
}


/* ==========================================
   ACCESSIBILITY
========================================== */

@media (prefers-reduced-motion: reduce) {

    .reveal-item,
    .exhibition-card img,
    .exhibition-caption,
    .exhibition-number,
    .exhibition-bottom {

        transition: none !important;

        transform: none !important;

        opacity: 1 !important;
    }

}


/* ==========================================
   CUSTOMER VIDEO SECTION
========================================== */

.customer-video-section {

    position: relative;
	padding: 60px 0 80px;
	background: #fffaf3;
	overflow: hidden;
}


/* ==========================================
   HEADING
========================================== */

.customer-video-heading {

    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}


.customer-video-eyebrow {

    display: block;

    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #b4873b;
}


.customer-video-heading h2 {

    margin: 0 0 18px;

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    line-height: 1;

    font-weight: 600;

    color: #54251b;
}


.customer-video-heading h2 em {

    font-family: "Italianno", cursive;

    font-size: 72px;

    font-weight: 400;

    color: #bd8b35;
}


.customer-video-heading p {

    max-width: 600px;

    margin: auto;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.9;

    color: #75665a;
}



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



/* Video */

.customer-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .8s ease,
        filter .5s ease;
}


.customer-video-card:hover .customer-video {

    transform: scale(1.04);

    filter: brightness(.88);
}


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

.video-play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 50%;

    background: rgba(40, 25, 20, .35);

    backdrop-filter: blur(8px);

    color: #fff;

    font-size: 14px;

    cursor: pointer;

    z-index: 10;

    transition:
        background .3s ease,
        transform .3s ease,
        opacity .3s ease;
}


.video-play-btn:hover {

    background: #bd8b35;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* Pause icon */

.customer-video-card.playing .video-play-btn {

    opacity: 1;
}


/* Slightly smaller pause symbol */

.customer-video-card.playing
.video-play-btn i {

    font-size: 13px;
}


.video-play-btn i {

    margin-left: 3px;
}


/* ==========================================
   VIDEO INFO
========================================== */

.customer-video-info {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 70px 20px 22px;

    background:
        linear-gradient(
            to top,
            rgba(35,20,14,.75),
            transparent
        );

    color: white;

    z-index: 2;
}


.customer-video-info span {

    display: block;

    margin-bottom: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #e2bd73;
}


.customer-video-info strong {

    font-family: "Cormorant Garamond", serif;

    font-size: 21px;

    font-weight: 500;
}


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

.customer-video-cta {

    max-width: 1120px;

    margin: 45px auto 0;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background: #f5ede1;

    border: 1px solid #e5d8c7;

    border-radius: 4px;
}


.customer-video-cta span {

    display: block;

    margin-bottom: 3px;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    color: #a17b43;
}


.customer-video-cta h3 {

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;

    color: #54251b;
}


.customer-video-cta h3 em {

    font-family: "Italianno", cursive;

    font-size: 37px;

    font-weight: 400;

    color: #bd8b35;
}


.customer-video-cta a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 21px;

    background: #54251b;

    color: #fff !important;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    transition: .3s ease;
}


.customer-video-cta a:hover {

    background: #bd8b35;

    transform: translateY(-2px);
}



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

@media (max-width: 767px) {

    .customer-video-section {

        padding: 75px 0 80px;
    }

    .customer-video-heading {

        padding: 0 15px;

        margin-bottom: 40px;
    }

    .customer-video-heading h2 {

        font-size: 48px;
    }

    .customer-video-heading h2 em {

        font-size: 60px;
    }

    .customer-video-heading p {

        font-size: 11px;
    }

    .customer-video-card {

        height: 390px;
    }


    .customer-video-info {

        padding: 55px 13px 15px;
    }

    .customer-video-info strong {

        font-size: 17px;
    }


    .video-play-btn {

        width: 48px;
        height: 48px;

        font-size: 11px;
    }


    .customer-video-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 22px 20px;

        margin-top: 30px;
    }

    .customer-video-cta a {

        width: 100%;

        justify-content: center;
    }

}


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

@media (max-width: 480px) {

    .customer-video-card {

        height: 520px;
    }

}

/* ==========================================
   Button Play
========================================== */

.customer-video-card.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.customer-video-card.playing:hover .video-play-btn {
    opacity: 1;
}

/* =========================================
   Saaheli — OUR STORY
========================================= */

.Saaheli-story {
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
    background: #f5ede1;
    color: #54251b;
}


/* =========================================
   HEADING
========================================= */

.story-heading {
    margin-bottom: 70px;
}


.story-label {
    display: inline-block;

    margin-bottom: 16px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #a67b32;
}


/* =========================================
   DIVIDER
========================================= */

.story-divider {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin: 25px auto 22px;
}


/* =========================================
   FOUNDERS
========================================= */

.founders-wrapper {
    position: relative;
    z-index: 2;
}


.founder-card {
    height: 100%;

    transition:
        transform .55s cubic-bezier(.22, 1, .36, 1);
}


.founder-card-center {
    margin-top: 38px;
}


.founder-card:hover {
    transform: translateY(-12px);
}


/* =========================================
   FOUNDER IMAGE
========================================= */

.founder-photo {
    position: relative;

    height: 465px;

    overflow: hidden;

    background: #d9cbbb;

    border-radius: 3px;
}


.founder-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.22, 1, .36, 1);
}


.founder-card:hover .founder-photo img {
    transform: scale(1.07);
}


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

.photo-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(54, 26, 19, .42),
            rgba(54, 26, 19, 0) 55%
        );

    transition:
        background .5s ease;
}


.founder-card:hover .photo-overlay {
    background:
        linear-gradient(
            to top,
            rgba(54, 26, 19, .25),
            rgba(54, 26, 19, 0) 60%
        );
}


/* =========================================
   FOUNDER NUMBER
========================================= */

.founder-index {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .7);

    border-radius: 50%;

    background: rgba(84, 37, 27, .3);

    backdrop-filter: blur(8px);

    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: 15px;

    z-index: 3;

    transition:
        background .4s ease,
        transform .4s ease;
}


.founder-card:hover .founder-index {
    background: #bd8b35;

    transform: rotate(8deg);
}


/* =========================================
   IMAGE BRAND MARK
========================================= */

.founder-view {
    position: absolute;

    left: 25px;
    bottom: 22px;

    z-index: 3;

    color: #fff;

    font-family: "Italianno", cursive;

    font-size: 60px;

    opacity: .9;
}


/* =========================================
   FOUNDER DETAILS
========================================= */

.founder-details {
    padding: 25px 10px 5px;

    text-align: center;
}


.founder-role {
    display: block;

    margin-bottom: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2.5px;

    color: #a67b32;
}


.founder-details h3 {
    margin: 0 0 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;

    font-weight: 600;

    color: #54251b;
}


.founder-details p {
    max-width: 285px;

    margin: 0 auto;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.85;

    color: #766052;
}


/* =========================================
   STORY STATEMENT
========================================= */

.story-statement {
    position: relative;

    margin-top: 50px;

    padding: 55px 50px 48px;

    text-align: center;

    background: rgba(255, 250, 240, .58);

    border-top: 1px solid rgba(189, 139, 53, .35);

    border-bottom: 1px solid rgba(189, 139, 53, .35);
}


.quote-symbol {
    height: 25px;

    font-family: Georgia, serif;

    font-size: 65px;

    line-height: .7;

    color: #bd8b35;
}


.story-statement h3 {
    margin: 15px 0 12px;

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;

    font-weight: 500;

    color: #54251b;
}


.story-statement h3 span {
    font-family: "Italianno", cursive;

    font-size: 50px;

    color: #bd8b35;
}


.story-statement p {
    max-width: 650px;

    margin: auto;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #756153;
}


.story-signature {
    margin-top: 25px;

    font-family: "Italianno", cursive;

    font-size: 38px;

    color: #54251b;
}


/* =========================================
   SCROLL REVEAL
========================================= */

.story-reveal {
    opacity: 0;

    transform: translateY(70px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.22, 1, .36, 1);
}


.story-reveal.story-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   STAGGER
========================================= */

.founders-wrapper
.col-lg-4:nth-child(1)
.story-reveal {
    transition-delay: .05s;
}


.founders-wrapper
.col-lg-4:nth-child(2)
.story-reveal {
    transition-delay: .18s;
}


.founders-wrapper
.col-lg-4:nth-child(3)
.story-reveal {
    transition-delay: .31s;
}


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

@media (max-width: 991px) {

    .Saaheli-story {
        padding: 90px 0;
    }


    .founder-photo {
        height: 390px;
    }


    .founder-card-center {
        margin-top: 25px;
    }


    .story-heading {
        margin-bottom: 55px;
    }

}


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

@media (max-width: 767px) {

    .Saaheli-story {
        padding: 75px 0 80px;
    }


    .story-heading {
        padding: 0 15px;

        margin-bottom: 45px;
    }


    .story-heading h2 {
        font-size: 47px;
    }


    .story-heading h2 span {
        font-size: 60px;
    }


    .story-heading p {
        font-size: 11px;

        line-height: 1.8;
    }


    .story-divider {
        margin: 20px auto;
    }


    .founders-wrapper {
        padding: 0 12px;
    }


    .founder-card-center {
        margin-top: 0;
    }


    .founder-photo {
        height: 475px;
    }


    .founder-details {
        padding: 22px 8px 30px;
    }


    .founder-details h3 {
        font-size: 27px;
    }


    .story-statement {
        margin: 45px 12px 0;

        padding: 42px 20px;
    }


    .story-statement h3 {
        font-size: 31px;
    }


    .story-statement h3 span {
        font-size: 43px;
    }


    .story-statement p {
        font-size: 10px;
    }

}


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

@media (max-width: 400px) {

    .story-heading h2 {
        font-size: 41px;
    }


    .story-heading h2 span {
        font-size: 53px;
    }


    .founder-photo {
        height: 430px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .story-reveal,
    .founder-card,
    .founder-photo img,
    .founder-index {

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}

/* ==========================================
   EXHIBITION POPUP
========================================== */

.exhibition-popup {

    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    z-index: 999999;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity .5s ease,
        visibility .5s ease;

}


/* ==========================================
   ACTIVE POPUP
========================================== */

.exhibition-popup.active {

    visibility: visible;

    opacity: 1;

}


/* ==========================================
   DARK BACKGROUND
========================================== */

.exhibition-popup-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(35, 19, 14, .78);

    backdrop-filter: blur(8px);

}


/* ==========================================
   POPUP BOX
========================================== */

.exhibition-popup-box {

    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow: hidden;

    background: #fffaf1;

    border: 1px solid rgba(189,139,53,.45);

    box-shadow:
        0 30px 100px rgba(0,0,0,.35);

    transform:
        translateY(40px)
        scale(.95);

    opacity: 0;

    transition:
        transform .7s cubic-bezier(.22,1,.36,1),
        opacity .5s ease;

}


/* Open animation */

.exhibition-popup.active
.exhibition-popup-box {

    transform:
        translateY(0)
        scale(1);

    opacity: 1;

}


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

.exhibition-close {

    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    background: rgba(60,30,20,.5);

    backdrop-filter: blur(8px);

    z-index: 20;

    cursor: pointer;

    transition: .3s ease;
}


.exhibition-close:hover {

    background: #bd8b35;

    transform: rotate(90deg);

}


.exhibition-close span {

    position: absolute;

    left: 10px;

    top: 18px;

    width: 17px;

    height: 1px;

    background: #fff;

}


.exhibition-close span:first-child {

    transform: rotate(45deg);

}


.exhibition-close span:last-child {

    transform: rotate(-45deg);

}

/* ==========================================
   EXHIBITION GOOGLE MAP
========================================== */

.exhibition-popup-map {

    width: 100%;

    height: 560px;

    overflow: hidden;

    background: #e8dfd2;
}


.exhibition-popup-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    border: 0;
}


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

.exhibition-popup-content {

    height: 100%;

    min-height: 560px;

    padding: 65px 50px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #fffaf1;

}


/* ==========================================
   EYEBROW
========================================== */

.popup-eyebrow {

    display: block;

    margin-bottom: 15px;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #a17b43;

}


/* ==========================================
   HEADING
========================================== */

.exhibition-popup-content h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 48px;

    line-height: .95;

    font-weight: 600;

    color: #54251b;

}


.exhibition-popup-content h2 em {

    display: block;

    margin-top: 6px;

    font-family:
        "Italianno",
        cursive;

    font-size: 60px;

    font-weight: 400;

    color: #bd8b35;

}


/* ==========================================
   DIVIDER
========================================== */

.popup-divider {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 24px 0;

}


.popup-divider span {

    width: 30px;

    height: 1px;

    background: #bd8b35;

}


.popup-divider i {

    font-size: 8px;

    font-style: normal;

    color: #bd8b35;

}


/* ==========================================
   DESCRIPTION
========================================== */

.popup-intro {

    max-width: 390px;

    margin: 0 0 25px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.9;

    color: #756255;

}


/* ==========================================
   EVENT DETAILS
========================================== */

.popup-event-details {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 28px;

}


.popup-detail {

    display: flex;

    align-items: center;

    gap: 14px;

}


.popup-detail-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d9c39a;

    color: #bd8b35;

    font-size: 12px;

}


.popup-detail small {

    display: block;

    margin-bottom: 3px;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.5px;

    color: #a17b43;

}


.popup-detail strong {

    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

    font-weight: 600;

    color: #54251b;

}


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

.popup-exhibition-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: fit-content;

    padding: 13px 20px;

    background: #54251b;

    color: #fff !important;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    transition: .3s ease;

}


.popup-exhibition-btn:hover {

    background: #bd8b35;

    transform: translateY(-2px);

}


.popup-exhibition-btn i {

    font-size: 9px;

}


/* ==========================================
   MAYBE LATER
========================================== */

.popup-later {

    width: fit-content;

    margin-top: 13px;

    padding: 0;

    border: none;

    background: transparent;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 1px;

    color: #8c7969;

    cursor: pointer;

    transition: .3s ease;

}


.popup-later:hover {

    color: #54251b;

}


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

@media (max-width: 767px) {

    .exhibition-popup {

        padding: 15px;

    }


    .exhibition-popup-box {

        max-height: 92vh;

        overflow-y: auto;

    }


    .exhibition-popup-map {
    height: 280px;
}


    .exhibition-popup-content {

        min-height: auto;

        padding: 38px 25px 30px;

    }


    .exhibition-popup-content h2 {

        font-size: 38px;

    }


    .exhibition-popup-content h2 em {

        font-size: 50px;

    }


    .popup-intro {

        font-size: 10px;

    }


    .popup-event-details {

        margin-bottom: 22px;

    }


    .exhibition-close {

        top: 10px;
        right: 10px;

    }

}


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

@media (max-width: 400px) {

    .exhibition-popup-map {
    height: 280px;
}


    .exhibition-popup-content {

        padding: 30px 20px 25px;

    }


    .exhibition-popup-content h2 {

        font-size: 34px;

    }


    .exhibition-popup-content h2 em {

        font-size: 45px;

    }

}


/* ==========================================
   FLOATING EXHIBITION BUTTON
========================================== */

.floating-exhibition-btn {

    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 99998;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 20px 8px 8px;

    border: 1px solid rgba(189, 139, 53, .7);

    border-radius: 50px;

    background: #54251b;

    color: #fff;

    cursor: pointer;

    box-shadow:
        0 8px 30px rgba(50, 25, 18, .25);

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


/* ==========================================
   ICON
========================================== */

.floating-btn-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #bd8b35;

    color: #fff;

    font-size: 12px;

    transition:
        transform .4s ease,
        background .3s ease;
}


/* ==========================================
   TEXT
========================================== */

.floating-btn-text {

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.35;

    letter-spacing: 1.4px;

    text-align: left;

    color: #fff;
}


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

.floating-exhibition-btn:hover {

    transform: translateY(-5px);

    background: #6a3022;

    box-shadow:
        0 12px 35px rgba(50, 25, 18, .35);
}


.floating-exhibition-btn:hover
.floating-btn-icon {

    transform: rotate(360deg);

    background: #d4a64c;
}


/* ==========================================
   PULSE EFFECT
========================================== */

.floating-exhibition-btn::before {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(189, 139, 53, .35);

    border-radius: 50px;

    animation:
        exhibitionPulse 2.5s infinite;

    pointer-events: none;
}


@keyframes exhibitionPulse {

    0% {

        transform: scale(1);

        opacity: .8;

    }

    70% {

        transform: scale(1.08);

        opacity: 0;

    }

    100% {

        transform: scale(1.08);

        opacity: 0;

    }

}


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

@media (max-width: 767px) {

    .floating-exhibition-btn {

        left: 15px;

        bottom: 15px;

        padding: 7px 12px 7px 7px;

    }


    .floating-btn-icon {

        width: 34px;

        height: 34px;

        font-size: 10px;

    }


    .floating-btn-text {

        font-size: 6px;

        letter-spacing: 1.1px;

    }

}

/* ==========================================
   SAAHALE CONTACT SECTION
========================================== */

.saahale-contact {

    position: relative;

    padding: 100px 0 105px;

    background: #f7e8c8;

    overflow: hidden;

    color: #54251b;

}


/* ==========================================
   DECORATIVE BACKGROUND
========================================== */

.saahale-contact::before {

    content: "S";

    position: absolute;

    right: -30px;

    bottom: -90px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 300px;

    font-weight: 600;

    line-height: 1;

    color: rgba(84, 37, 27, .035);

    pointer-events: none;

}


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

.contact-intro {

    padding-right: 50px;

}

.contact-intro h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(55px, 6vw, 78px);

    font-weight: 500;

    line-height: .82;

    color: #54251b;

}


.contact-description {

    max-width: 430px;

    margin: 28px 0 30px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 15px;

    line-height: 1.85;

    color: #705d50;

}


/* ==========================================
   CONTACT INFO
========================================== */

.contact-info {

    display: flex;

    align-items: center;

    gap: 14px;

    width: fit-content;

    margin-bottom: 17px;

    text-decoration: none;

    color: #54251b;

}


.contact-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #bd8b35;

    color: #fff;

    font-size: 11px;

    transition:
        transform .3s ease,
        background .3s ease;

}


.contact-info:hover .contact-icon {

    transform: translateY(-3px);

    background: #54251b;

}


.contact-info small {

    display: block;

    margin-bottom: 2px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 6px;

    font-weight: 600;

    letter-spacing: 1.7px;

    color: #a67b32;

}


.contact-info strong {

    display: block;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 15px;

    font-weight: 500;

    color: #54251b;

}


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

.contact-connect-wrapper {

    padding-left: 20px;

}


/* ==========================================
   FEATURE EXHIBITION CARD
========================================== */

.contact-feature-card {

    position: relative;

    min-height: 285px;

    display: flex;

    align-items: center;

    padding: 40px 45px;

    overflow: hidden;

    background: #54251b;

    color: #fff;

    box-shadow:
        0 18px 45px rgba(84, 37, 27, .13);

}


/* Gold border */

.contact-feature-card::before {

    content: "";

    position: absolute;

    inset: 10px;

    border: 1px solid rgba(212, 175, 55, .35);

    pointer-events: none;

}


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

.feature-card-content {

    position: relative;

    z-index: 2;

    max-width: 450px;

}


.feature-card-content > span {

    display: block;

    margin-bottom: 11px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 2.5px;

    color: #d9ad5b;

}


.feature-card-content h3 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 47px;

    font-weight: 500;

    line-height: .9;

    color: #fff;

}


.feature-card-content h3 em {

    font-family:
        "Italianno",
        cursive;

    font-size: 65px;

    font-weight: 400;

    color: #d9ad5b;

}


.feature-card-content p {

    max-width: 400px;

    margin: 18px 0 22px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 12px;

    line-height: 1.8;

    color: rgba(255,255,255,.72);

}


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

.contact-exhibition-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 18px;

    border: 1px solid #d9ad5b;

    background: #d9ad5b;

    color: #54251b;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.contact-exhibition-btn i {

    font-size: 8px;

    transition:
        transform .3s ease;

}


.contact-exhibition-btn:hover {

    background: transparent;

    color: #d9ad5b;

    transform: translateY(-2px);

}


.contact-exhibition-btn:hover i {

    transform: translateX(5px);

}


/* ==========================================
   DECORATION
========================================== */

.feature-card-decoration {

    position: absolute;

    right: 30px;

    bottom: -30px;

    width: 170px;

    height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(217,173,91,.25);

    border-radius: 50%;

}


.feature-card-decoration::before {

    content: "";

    position: absolute;

    width: 115px;

    height: 115px;

    border: 1px solid rgba(217,173,91,.22);

    border-radius: 50%;

}


.feature-card-decoration span {

    position: relative;

    font-size: 24px;

    color: #d9ad5b;

}


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

.contact-social-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 15px;

    padding: 24px 28px;

    background: rgba(255,255,255,.58);

    border: 1px solid rgba(84,37,27,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.contact-social-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(84,37,27,.08);

}


.contact-social-card small {

    display: block;

    margin-bottom: 5px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #a67b32;

}


.contact-social-card h4 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    font-weight: 500;

    color: #54251b;

}


.contact-social-card h4 span {

    font-family:
        "Italianno",
        cursive;

    font-size: 32px;

    color: #bd8b35;

}


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

.instagram-btn {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 14px;

    border: 1px solid rgba(84,37,27,.25);

    text-decoration: none;

    color: #54251b;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease;

}


.instagram-btn > i:first-child {

    font-size: 14px;

}


.instagram-btn > i:last-child {

    font-size: 7px;

    color: #bd8b35;

}


.instagram-btn:hover {

    background: #54251b;

    color: #fff;

}


/* ==========================================
   QUOTE
========================================== */

.contact-quote {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 28px;

}


.contact-quote span {

    font-size: 10px;

    color: #bd8b35;

}


.contact-quote p {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 17px;

    font-style: italic;

    color: #705d50;

}


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

@media (max-width: 991px) {

    .saahale-contact {

        padding: 85px 0;

    }


    .contact-intro {

        padding-right: 0;

        margin-bottom: 50px;

    }


    .contact-connect-wrapper {

        padding-left: 0;

    }


    .contact-feature-card {

        min-height: 280px;

    }

}


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

@media (max-width: 767px) {

    .saahale-contact {

        padding: 70px 0 80px;

    }


    .contact-intro {

        padding: 0 18px;

    }


    .contact-intro h2 {

        font-size: 54px;

    }


    .contact-description {

        font-size: 10px;

        margin-top: 24px;

    }


    .contact-connect-wrapper {

        padding: 0 12px;

    }


    .contact-feature-card {

        min-height: 330px;

        padding: 35px 28px;

    }


    .feature-card-content h3 {

        font-size: 40px;

    }


    .feature-card-content h3 em {

        font-size: 55px;

    }


    .feature-card-decoration {

        right: -50px;

        bottom: -50px;

        width: 150px;

        height: 150px;

    }


    .contact-social-card {

        align-items: flex-start;

        flex-direction: column;

        padding: 22px;

    }


    .contact-social-card h4 {

        font-size: 23px;

    }


    .contact-quote {

        padding: 0 15px;

    }


    .contact-quote p {

        font-size: 15px;

    }

}

.customer-video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #54251b;
    aspect-ratio: 9 / 16;
}

/* =========================================
   POSTER IMAGE
========================================= */

.customer-video-poster {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 70px);

    object-fit: cover;

    z-index: 2;

    transition: opacity 0.35s ease;
}


/* =========================================
   VIDEO
========================================= */

.customer-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 70px);

    object-fit: cover;

    opacity: 0;

    z-index: 1;

    transition: opacity 0.35s ease;
}


/* =========================================
   WHEN VIDEO IS PLAYING
========================================= */

.customer-video-card.playing .customer-video {
    opacity: 1;
    z-index: 3;
}

.customer-video-card.playing .customer-video-poster {
    opacity: 0;
}


/* =========================================
   PLAY / PAUSE BUTTON
========================================= */

.video-play-btn {
    position: absolute;

    top: 42%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border: 1.5px solid #fff;

    background: rgba(84, 37, 27, 0.75);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    cursor: pointer;

    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);

    background: #54251b;
}

.video-play-btn i {
    font-size: 18px;
}


/* =========================================
   CUSTOMER VIDEO SECTION
========================================= */

.customer-video-section {
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
}


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

.customer-video-card {
    position: relative;

    width: 100%;
    height: 420px;

    overflow: hidden;

    border-radius: 14px;

    background: #54251b;
}


/* =========================================
   POSTER
========================================= */

.customer-video-poster {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 2;

    transition: opacity 0.35s ease;
}


/* =========================================
   VIDEO
========================================= */

.customer-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    z-index: 1;

    transition: opacity 0.35s ease;
}


/* =========================================
   PLAYING
========================================= */

.customer-video-card.playing .customer-video {
    opacity: 1;
    z-index: 3;
}

.customer-video-card.playing .customer-video-poster {
    opacity: 0;
}


/* =========================================
   PLAY / PAUSE BUTTON
========================================= */

.video-play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border: 1px solid #fff;

    background: rgba(84, 37, 27, 0.8);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 20;

    cursor: pointer;

    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


/* =========================================
   VIDEO INFORMATION
========================================= */

.customer-video-info {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 15px 18px;

    background: #54251b;

    z-index: 20;
}

.customer-video-info span {
    display: block;

    font-size: 9px;

    letter-spacing: 3px;

    color: #d4af37;

    text-transform: uppercase;

    margin-bottom: 4px;
}

.customer-video-info strong {
    display: block;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 17px;

    font-weight: 500;
}


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

@media (max-width: 991px) {

    .customer-video-card {
        height: 500px;
    }

}


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

@media (max-width: 575px) {

    .customer-video-section {
        padding: 50px 15px;
    }

    .customer-video-card {
        height: 520px;
    }

}


/* ==========================================
   GLOBAL SCROLL REVEAL EFFECT
========================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.scroll-reveal.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   SCROLL REVEAL - LEFT
========================================== */

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.scroll-reveal-left.scroll-visible {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   SCROLL REVEAL - RIGHT
========================================== */

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.scroll-reveal-right.scroll-visible {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   CUSTOMER VIDEO STAGGER
========================================== */

.customer-video-card.scroll-reveal {
    transition-delay: 0s;
}

.customer-video-card:nth-child(2).scroll-reveal {
    transition-delay: 0.12s;
}

.customer-video-card:nth-child(3).scroll-reveal {
    transition-delay: 0.24s;
}

.customer-video-card:nth-child(4).scroll-reveal {
    transition-delay: 0.36s;
}


/* ==========================================
   WHY CHOOSE - STAGGER
========================================== */

.feature-box.scroll-reveal {
    transition-delay: 0s;
}

.feature-box:nth-child(2).scroll-reveal {
    transition-delay: 0.12s;
}

.feature-box:nth-child(3).scroll-reveal {
    transition-delay: 0.24s;
}

.feature-box:nth-child(4).scroll-reveal {
    transition-delay: 0.36s;
}


/* ==========================================
   CONTACT CARDS
========================================== */

.contact-info.scroll-reveal {
    transition-duration: 0.7s;
}


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

@media (max-width: 767px) {

    .scroll-reveal {
        transform: translateY(30px);
    }

    .scroll-reveal-left {
        transform: translateX(-30px);
    }

    .scroll-reveal-right {
        transform: translateX(30px);
    }

}

/* ==========================================
   OUR COLLECTION
   ONE-BY-ONE SCROLL EFFECT
========================================== */


.collection-card {
    opacity: 0;
    transform: translateY(60px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.collection-card.collection-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   OUR COLLECTION - HOVER EFFECT
========================================== */

.collection-card {
    transition: transform 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
}

/* ==========================================
   WHAT OUR CUSTOMERS SAY
   ONE-BY-ONE SCROLL EFFECT
========================================== */

.customer-testimonial-card {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.customer-testimonial-card.customer-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   PRODUCT SHARE BUTTON
========================================== */

.collection-card {
    position: relative;
}

.product-share-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 9px 15px;

    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.95);

    color: #54251b;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.product-share-btn i {
    font-size: 13px;
}

.product-share-btn:hover {
    background: #D4AF37;
    color: #fff;

    transform: translateY(-3px);
}


/* Mobile */

@media (max-width: 576px) {

    .product-share-btn {
        padding: 8px 11px;
        font-size: 12px;
    }

}