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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f6f3ef;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

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

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

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

:root{
    --gold:#c6a46c;
    --gold-dark:#d4af37;
    --text:#666;
    --dark:#111;
    --white:#fff;
    --transition:.4s;
}

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

header{
    position:absolute;
    top:0;
    width:100%;
    z-index:1000;
    padding:25px 0;
}

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

.logo{
    color:#fff;
    font-size:34px;
    font-weight:700;
    letter-spacing:2px;
    font-family:'Cormorant Garamond',serif;
}

.logo span{
    color:var(--gold-dark);
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#fff;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--gold-dark);
}

/* =========================================================
   HERO VIDEO SLIDER
========================================================= */

.hero-slider{
    position:relative;
    width:100%;
    height:78vh;
    min-height:640px;
    overflow:hidden;
}

.video-slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.video-slide.active{
    opacity:1;
    z-index:1;
}

.video-slide video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
}

.hero-content{
    position:absolute;
    z-index:5;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
}

.hero-content h1{
    font-size:60px;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.hero-btns{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

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

.btn,
.branch-btn,
.about-btn,
.cta-btn{
    transition:var(--transition);
}

.btn{
    padding:15px 35px;
    border:1px solid #fff;
    color:#fff;
    font-size:14px;
    text-transform:uppercase;
    backdrop-filter:blur(5px);
}

.btn:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
}

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

.primary-btn:hover{
    transform:translateY(-5px);
    color:#111;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#111;
}

/* =========================================================
   COMMON SECTION TITLES
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:50px;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

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

.section-text{
    font-size:17px;
    line-height:1.9;
    color:var(--text);
}

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

.featured{
    background:#fff;
    padding:80px 0;
}

.brands{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:40px;
    align-items:center;
    text-align:center;
}

.brand-box{
    font-size:28px;
    font-weight:600;
    opacity:.7;
}

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



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

.story-box{
    position:relative;
    z-index:2;
    background:rgb(239 90 40);
    padding:60px;
    color:#fff;
    width:550px;
    max-width:100%;
}

.story-box h2{
    font-size:52px;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}

.story-box p{
    line-height:1.9;
    font-size:15px;
}

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

.menu-section{
    padding:100px 0;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.menu-card{
    background:#fff;
    overflow:hidden;
    transition:var(--transition);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

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

.menu-img{
    height:320px;
    overflow:hidden;
}

.menu-img img{
    height:100%;
    object-fit:cover;
    transition:.5s;
}

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

.menu-content{
    padding:25px;
    text-align:center;
}

.menu-content h3{
    font-size:28px;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.menu-content p{
    color:#666;
    line-height:1.7;
    font-size:14px;
}

/* =========================================================
   BRANCH HERO SLIDER
========================================================= */
/* =========================================================
   GLOBAL CSS
========================================================= */

:root{
    --gold:#c6a46c;
    --dark:#111111;
    --text:#666666;
    --white:#ffffff;
    --bg:#f8f5ef;
    --transition:0.4s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

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

.primary-btn,
.secondary-btn,
.about-btn,
.branch-btn,
.cta-btn{
    transition:var(--transition);
}

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

.primary-btn:hover{
    transform:translateY(-4px);
    color:#111;
}

.secondary-btn:hover{
    transform:translateY(-4px);
}

/* =========================================================
   HERO SECTION
========================================================= */
/* Navbar height */
.branch-hero-slider{
    margin-top:79px;
}

/* Hero Section */
.branch-slide{
    position:relative;
    height:85vh;
    min-height:650px;
    overflow:hidden;
}

.branch-banner{
    width:100%;
    height:100%;
    object-fit:cover;
}

.branch-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.15) 100%
    );
}

.branch-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 10;
    color: #fff;

    /* Gray transparent background */
    
    padding: 20px 25px;
    border-radius: 10px;
}

.branch-tag{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.branch-content h1{
    font-size:40px;
    line-height:1.1;
    margin-bottom:20px;
	background: rgb(83 80 80 / 65%);
	padding-left:20px;
}

.branch-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
    opacity:.95;
	background: rgb(83 80 80 / 65%);
	padding-left:20px;
	
}

.branch-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#ff6b00;
    color:#fff;
}

.call-btn:hover{
    background:#e85f00;
    color:#fff;
    transform:translateY(-3px);
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    background:#1ebd59;
    color:#fff;
    transform:translateY(-3px);
}

/* Navigation */
.branch-prev,
.branch-next{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.branch-prev:hover,
.branch-next:hover{
    background:#ff6b00;
    color:#fff;
}

/* Mobile */
@media(max-width:768px){

    .branch-hero-slider{
        margin-top:80px;
    }

    .branch-slide{
        height:70vh;
        min-height:500px;
    }

    .branch-content h1{
        font-size:34px;
    }

    .branch-content p{
        font-size:15px;
    }

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

/* =========================================
   QUICK INFO SECTION
========================================= */

.quick-info{
    position: relative;
    margin-top: -70px;
    z-index: 10;
    padding-bottom: 40px;
}

.quick-info .row{
    justify-content: center;
}

/* COLUMN FIX */

.quick-info .col-lg-3,
.quick-info .col-md-6{
    display: flex;
}

/* CARD */

.info-box{
    width: 100%;
    background: #fff;

    border-radius: 24px;

    padding: 30px 20px;

    text-align: center;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    transition: 0.4s ease;

    border: 1px solid rgba(0,0,0,0.05);

    min-height: 240px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* HOVER */

.info-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ICON */

.info-box i{
    width: 70px;
    height: 70px;

    border-radius: 18px;

    background: rgba(198,164,108,0.12);

    color: #c6a46c;

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

    font-size: 30px;

    margin-bottom: 20px;
}

/* TITLE */

.info-box h4{
    font-size: 24px;
    margin-bottom: 10px;

    color: #111;

    font-family: 'Cormorant Garamond', serif;
}

/* TEXT */

.info-box p{
    font-size: 14px;
    line-height: 1.7;

    color: #666;

    margin: 0;
}

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

@media(max-width:991px){

    .quick-info{
        margin-top: -40px;
    }

    .info-box{
        min-height: 220px;
    }
}

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

@media(max-width:767px){

    .quick-info{
        margin-top: 0;
        padding: 60px 0 20px;
    }

    .info-box{
        min-height: auto;
        padding: 28px 20px;
    }

    .info-box h4{
        font-size: 22px;
    }

    .info-box i{
        width: 62px;
        height: 62px;

        font-size: 26px;
    }
}

/* =========================================
   BRANCH ABOUT SECTION
========================================= */

.branch-about-section{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(
        to bottom,
        #f8f5ef 0%,
        #ffffff 100%
    );
    overflow: hidden;
}

/* GLOW EFFECTS */

.about-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.about-glow.glow-1{
    width: 280px;
    height: 280px;
    background: rgba(198,164,108,0.12);
    top: -100px;
    left: -100px;
}

.about-glow.glow-2{
    width: 240px;
    height: 240px;
    background: rgba(0,0,0,0.04);
    bottom: -80px;
    right: -80px;
}

/* CONTAINER */

.branch-about-section .container{
    position: relative;
    z-index: 2;
}

/* =========================================
   IMAGE AREA
========================================= */

.branch-about-image-wrapper{
    position: relative;
    padding-right: 80px;
    padding-bottom: 70px;
}

/* MAIN IMAGE */

.branch-about-image{
    position: relative;
    overflow: hidden;
    border-radius: 35px;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.12);
}

.branch-about-image img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: 0.6s ease;
}

.branch-about-image:hover img{
    transform: scale(1.06);
}

/* FLOATING IMAGE */

.branch-floating-img{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 230px;

    border-radius: 28px;
    overflow: hidden;

    border: 8px solid #fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.18);
}

.branch-floating-img img{
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* EXPERIENCE CARD */

.experience-card{
    position: absolute;
    top: 40px;
    left: -20px;

    background: #111;
    color: #fff;

    padding: 24px 30px;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.18);
}

.experience-card h3{
    font-size: 42px;
    color: #c6a46c;
    margin-bottom: 5px;
    line-height: 1;
}

.experience-card span{
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

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

.branch-about-content{
    padding-left: 25px;
}

/* SUBTITLE */

.section-subtitle{
    display: inline-block;

    color: #c6a46c;

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

/* TITLE */

.section-title{
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;

    color: #111;

    margin-bottom: 24px;

    font-family: 'Cormorant Garamond', serif;
}

/* TEXT */

.section-text{
    font-size: 16px;
    line-height: 1.9;

    color: #666;

    margin-bottom: 38px;
}

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

.about-features{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* FEATURE BOX */

.about-feature-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;

    background: #fff;

    padding: 24px;

    border-radius: 24px;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.05);

    transition: 0.4s ease;
}

.about-feature-box:hover{
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */

.about-feature-box i{
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    border-radius: 18px;

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

    background: rgba(198,164,108,0.12);

    color: #c6a46c;

    font-size: 28px;
}

/* FEATURE TITLE */

.about-feature-box h4{
    font-size: 22px;
    color: #111;
    margin-bottom: 8px;

    font-family: 'Cormorant Garamond', serif;
}

/* FEATURE TEXT */

.about-feature-box p{
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

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

.about-buttons{
    display: flex;
    align-items: center;
    gap: 18px;

    flex-wrap: wrap;

    margin-top: 40px;
}

/* BUTTON */

.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 100px;

    text-decoration: none;

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

    transition: 0.4s ease;
}

/* PRIMARY */

.primary-btn{
    background: #c6a46c;
    color: #111;
}

.primary-btn:hover{
    background: #111;
    color: #fff;
    transform: translateY(-4px);
}

/* SECONDARY */

.secondary-btn{
    background: #fff;
    color: #111;

    border: 1px solid #ddd;
}

.secondary-btn:hover{
    background: #111;
    color: #fff;
    border-color: #111;
}

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

@media(max-width:1199px){

    .section-title{
        font-size: 46px;
    }

    .branch-about-image img{
        height: 560px;
    }
}

@media(max-width:991px){

    .branch-about-section{
        padding: 90px 0;
    }

    .branch-about-image-wrapper{
        padding-right: 40px;
        margin-bottom: 30px;
    }

    .branch-about-content{
        padding-left: 0;
    }

    .section-title{
        font-size: 40px;
    }

    .branch-about-image img{
        height: 520px;
    }
}

@media(max-width:767px){

    .branch-about-section{
        padding: 70px 0;
    }

    .branch-about-image-wrapper{
        padding-right: 0;
        padding-bottom: 40px;
    }

    .branch-about-image{
        border-radius: 24px;
    }

    .branch-about-image img{
        height: 400px;
    }

    .branch-floating-img{
        width: 170px;
        border-width: 5px;
    }

    .branch-floating-img img{
        height: 170px;
    }

    .experience-card{
        left: 15px;
        top: 15px;

        padding: 18px 20px;
    }

    .experience-card h3{
        font-size: 28px;
    }

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

    .section-text{
        font-size: 15px;
    }

    .about-feature-box{
        flex-direction: column;
        padding: 22px;
    }

    .about-buttons{
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn{
        width: 100%;
        text-align: center;
    }
}

@media(max-width:575px){

    .branch-about-image img{
        height: 340px;
    }

    .branch-floating-img{
        width: 140px;
    }

    .branch-floating-img img{
        height: 140px;
    }

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

    .about-feature-box h4{
        font-size: 20px;
    }
}

/* EXPERIENCE */

.experience-card{
    position:absolute;
    top:40px;
    left:-30px;
    background:#111;
    color:#fff;
    padding:26px 32px;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.experience-card h3{
    font-size:42px;
    color:var(--gold);
    margin-bottom:4px;
}

.experience-card span{
    font-size:14px;
    color:rgba(255,255,255,0.75);
}

/* CONTENT */

.branch-about-content{
    padding-left:20px;
}

.section-subtitle {
    display: inline-block;
    color: #ef5a2b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
}

.section-title:hover {
    color: #ef5a2b;
}
.branch-about-content .section-title {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111;
    transition: .4s;
}

.section-text{
    font-size:15px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:38px;
}

/* Luxry Gallery Section*/

.luxury-gallery-section{
    background: #0f0f0f;
    overflow: hidden;
    position: relative;
}

.section-subtitle{
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-top-text{
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: auto;
}

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

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

.large-item{
    height: 520px;
}

.small-item{
    height: 245px;
}

.wide-item{
    height: 245px;
}

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
                rgba(0,0,0,0.75),
                rgba(0,0,0,0.15));
    display: flex;
    align-items: end;
    padding: 30px;
}

.gallery-overlay h3{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.carousel-control-prev,
.carousel-control-next{
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button{
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

@media(max-width:991px){

    .large-item{
        height: 400px;
    }

    .small-item,
    .wide-item{
        height: 220px;
    }

    .section-title{
        font-size: 36px;
    }

}

@media(max-width:768px){

    .large-item,
    .small-item,
    .wide-item{
        height: 250px;
    }

    .section-title{
        font-size: 30px;
    }

    .gallery-overlay h3{
        font-size: 22px;
    }

}

/* FEATURES */

.about-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.about-feature-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:22px 24px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:var(--transition);
}

.about-feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.about-feature-box i{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(198,164,108,0.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}

.about-feature-box h4{
    font-size:20px;
    color:#111;
    margin-bottom:8px;
}

.about-feature-box p{
    color:var(--text);
    line-height:1.8;
    margin:0;
}

/* ABOUT BUTTONS */

.about-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.about-btn{
    padding:16px 34px;
    border-radius:100px;
    font-weight:600;
}

.about-btn.secondary-btn{
    border:1px solid #ddd;
    color:#111;
    background:#fff;
}

.about-btn.secondary-btn:hover{
    background:#111;
    color:#fff;
}


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

.section{
    position: relative;
    padding: 110px 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #f8f5ef 100%
    );
    overflow: hidden;
}

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

.section-subtitle{
    display: inline-block;

    color: #c6a46c;

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

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 15px;
}

.section-title{
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;

    color: #111;

    margin-bottom: 0;

    font-family: 'Cormorant Garamond', serif;
}

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

.facility-card{
    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: 45px 30px;

    text-align: center;

    height: 100%;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 15px 45px rgba(0,0,0,0.06);

    transition: all 0.4s ease;
}

/* TOP GOLD LINE */

.facility-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 80px;
    height: 4px;

    background: linear-gradient(
        to right,
        #c6a46c,
        #e0c28f
    );

    border-radius: 0 0 20px 20px;
}

/* HOVER */

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

    box-shadow:
        0 25px 65px rgba(0,0,0,0.10);
}

/* ICON */

.facility-card i{
    width: 85px;
    height: 85px;

    margin: auto auto 28px;

    border-radius: 24px;

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

    background: rgba(198,164,108,0.12);

    color: #c6a46c;

    font-size: 38px;

    transition: 0.4s ease;
}

/* ICON HOVER */

.facility-card:hover i{
    background: #c6a46c;
    color: #111;

    transform: rotateY(180deg);
}

/* TITLE */

.facility-card h4{
    font-size: 28px;
    line-height: 1.3;

    color: #111;

    margin-bottom: 12px;

    font-family: 'Cormorant Garamond', serif;
}

/* OPTIONAL TEXT */

.facility-card p{
    font-size: 15px;
    line-height: 1.8;

    color: #666;

    margin: 0;
}

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

@media(max-width:1199px){

    .section-title{
        font-size: 46px;
    }

    .facility-card{
        padding: 40px 24px;
    }
}

@media(max-width:991px){

    .section{
        padding: 90px 0;
    }

    .section-title{
        font-size: 40px;
    }

    .facility-card{
        padding: 38px 22px;
    }

    .facility-card h4{
        font-size: 24px;
    }
}

@media(max-width:767px){

    .section{
        padding: 70px 0;
    }

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

    .facility-card{
        border-radius: 24px;

        padding: 35px 20px;
    }

    .facility-card i{
        width: 72px;
        height: 72px;

        font-size: 30px;

        border-radius: 20px;
    }

    .facility-card h4{
        font-size: 22px;
    }
}

@media(max-width:575px){

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

    .facility-card{
        padding: 30px 18px;
    }

    .facility-card i{
        width: 65px;
        height: 65px;

        font-size: 28px;
    }

    .facility-card h4{
        font-size: 20px;
    }
}


/* =========================================
		   BRANCH MENU SECTION
		========================================= */

		.branch-menu-section {

			position: relative;

			padding: 110px 0;

			background:
				linear-gradient(to bottom,
				#ffffff 0%,
				#f8f5ef 100%);

			overflow: hidden;
		}

		/* Shapes */

		.menu-shape {

			position: absolute;

			border-radius: 50%;

			filter: blur(90px);
		}

		.shape-1 {

			width: 260px;
			height: 260px;

			background: rgba(198,164,108,0.12);

			top: -80px;
			right: -80px;
		}

		.shape-2 {

			width: 220px;
			height: 220px;

			background: rgba(0,0,0,0.04);

			bottom: -60px;
			left: -60px;
		}

		/* Top Text */

		.menu-top-text {

			max-width: 700px;

			margin: auto;
		}

		/* Card */

		.branch-menu-card {

			background: #fff;

			border-radius: 28px;

			overflow: hidden;

			display: flex;
			align-items: center;

			height: 100%;

			box-shadow:
				0 18px 50px rgba(0,0,0,0.06);

			transition: 0.4s;
		}

		.branch-menu-card:hover {

			transform: translateY(-8px);

			box-shadow:
				0 28px 70px rgba(0,0,0,0.1);
		}

		/* Image */

		.menu-img {

			width: 42%;

			height: 100%;

			overflow: hidden;

			flex-shrink: 0;
		}

		.menu-img img {

			width: 100%;
			height: 100%;

			min-height: 250px;

			object-fit: cover;

			transition: 0.5s;
		}

		.branch-menu-card:hover .menu-img img {

			transform: scale(1.08);
		}

		/* Content */

		.menu-info {

			padding: 30px;
		}

		.menu-top {

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

			gap: 15px;

			margin-bottom: 15px;
		}

		.menu-top h4 {

			font-size: 24px;

			color: #111;

			margin: 0;
		}

		.menu-price {

			background: rgba(198,164,108,0.12);

			color: #c6a46c;

			padding: 8px 16px;

			border-radius: 100px;

			font-size: 14px;
			font-weight: 700;
		}

		.menu-info p {

			font-size: 15px;
			line-height: 1.9;

			color: #666;

			margin-bottom: 24px;
		}

		/* Button */

		.menu-btn {

			display: inline-flex;
			align-items: center;
			gap: 10px;

			text-decoration: none;

			color: #111;

			font-weight: 600;

			transition: 0.3s;
		}

		.menu-btn i {

			transition: 0.3s;
		}

		.menu-btn:hover {

			color: #c6a46c;
		}

		.menu-btn:hover i {

			transform: translateX(5px);
		}

		/* Mobile */

		@media(max-width:991px){

			.branch-menu-card {

				flex-direction: column;
			}

			.menu-img {

				width: 100%;
			}

			.menu-img img {

				min-height: 260px;
			}
		}

		@media(max-width:767px){

			.branch-menu-section {

				padding: 80px 0;
			}

			.menu-info {

				padding: 24px;
			}

			.menu-top {

				flex-direction: column;
				align-items: flex-start;
			}

			.menu-top h4 {

				font-size: 22px;
			}
		}

		/* end featured menu */

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

.luxury-cta-section{
    position:relative;
    padding:0 0 120px;
    background:linear-gradient(to bottom,#ffffff 0%,#f7f4ee 100%);
    overflow:hidden;
}

.luxury-cta-wrapper{
    position:relative;
    background:linear-gradient(135deg,#111111 0%,#1b1b1b 100%);
    border-radius:40px;
    padding:70px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,0.18);
}

.luxury-cta-wrapper::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(198,164,108,0.14),transparent 70%);
    top:-200px;
    right:-120px;
}

/* BADGE */

.cta-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:100px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#d4b06a;
    font-size:14px;
    margin-bottom:24px;
}

/* TITLE */

.cta-title{
    font-size:54px;
    line-height:1.15;
    color:#fff;
    margin-bottom:24px;
}

/* TEXT */

.cta-text{
    color:rgba(255,255,255,0.7);
    font-size:16px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

/* BUTTONS */

.cta-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:17px 30px;
    border-radius:100px;
    font-weight:600;
}

.cta-primary-btn{
    background:var(--gold);
    color:#111;
}

.cta-primary-btn:hover{
    background:#fff;
    color:#111;
}

.cta-secondary-btn{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.1);
}

.cta-secondary-btn:hover{
    background:#25d366;
    border-color:#25d366;
    color:#fff;
}

/* IMAGE */

.cta-image-wrapper{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    height:100%;
}

.cta-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:500px;
}

.cta-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.55),rgba(0,0,0,0.1));
}

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

@media(max-width:1199px){

    .cta-title{
        font-size:46px;
    }

    .luxury-cta-wrapper{
        padding:60px;
    }
}

@media(max-width:991px){

    .branch-slide{
        height:72vh;
        min-height:560px;
    }

    .branch-content h1{
        font-size:52px;
    }

    .branch-about-section{
        padding:90px 0;
    }

    .branch-about-image-wrapper{
        padding-right:40px;
    }

    .section-title{
        font-size:40px;
    }

    .branch-about-image img{
        height:520px;
    }

    .luxury-cta-wrapper{
        padding:45px 35px;
    }

    .cta-title{
        font-size:40px;
    }

    .cta-image-wrapper img{
        min-height:400px;
    }
}

@media(max-width:767px){

    .branch-slide{
        height:82vh;
        min-height:640px;
    }

    .branch-content{
        text-align:center;
        padding-top:120px;
    }

    .branch-content h1{
        font-size:38px;
    }

    .branch-content p{
        font-size:15px;
    }

    .branch-info-wrap,
    .branch-buttons{
        justify-content:center;
    }

    .branch-prev,
    .branch-next{
        display:none;
    }

    .quick-info{
        margin-top:40px;
    }

    .branch-about-image-wrapper{
        padding-right:0;
        padding-bottom:40px;
    }

    .branch-floating-img{
        width:180px;
    }

    .branch-floating-img img{
        height:180px;
    }

    .experience-card{
        left:15px;
        top:15px;
        padding:18px 22px;
    }

    .experience-card h3{
        font-size:30px;
    }

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

    .section-text{
        font-size:15px;
    }

    .about-feature-box{
        flex-direction:column;
    }

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

    .about-btn{
        text-align:center;
    }

    .luxury-cta-section{
        padding-bottom:80px;
    }

    .luxury-cta-wrapper{
        padding:35px 24px;
        border-radius:28px;
    }

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

    .cta-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .cta-btn{
        width:100%;
    }

    .cta-image-wrapper img{
        min-height:320px;
    }
}



/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.4s;
    animation:pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

@keyframes pulseWhatsapp{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

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

@media(max-width:1199px){

    .cta-title{
        font-size:46px;
    }
}

@media(max-width:991px){

    .menu-grid,
    .testimonial-grid,
    .brands,
    .footer-grid,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

    .branch-slide{
        height:72vh;
        min-height:560px;
    }

    .branch-content h1{
        font-size:52px;
    }

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

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .menu-grid,
    .testimonial-grid,
    .brands,
    .footer-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

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

    .story-box{
        padding:35px;
    }

    .cta-flex{
        flex-direction:column;
        text-align:center;
    }

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

    .branch-slide{
        height:82vh;
        min-height:640px;
    }

    .branch-content{
        text-align:center;
        padding-top:120px;
    }

    .branch-content h1{
        font-size:38px;
    }

    .branch-content p{
        font-size:15px;
    }

    .branch-info-wrap,
    .branch-buttons{
        justify-content:center;
    }

    .branch-prev,
    .branch-next{
        display:none;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
    }

    .whatsapp-float svg{
        width:26px;
        height:26px;
    }
}


/* Start About Us Page */
/* =========================================
ABOUT HERO
========================================= */
.about-hero-section{
    position: relative;
    padding: 160px 0;
    background: url('<?= base_url('uploads/about/about.jpg') ?>') center center/cover no-repeat;
    overflow: hidden;
}

.about-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-subtitle{
    display: inline-block;
    padding: 8px 22px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1{
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}

.about-breadcrumb ol{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

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

.about-story-section{
    padding: 120px 0;
}

.about-image-wrapper{
    position: relative;
}

.about-image-wrapper img{
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.experience-badge{
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: #f06133;
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(220,53,69,0.3);
}

.experience-badge h3{
    font-size: 38px;
    margin-bottom: 5px;
}

.section-subtitle{
    color: #f06133;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.about-content h2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.quote-box{
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #f06133;
    border-radius: 15px;
    margin-top: 30px;
}

.quote-box i{
    font-size: 30px;
    color: #f06133;
}

.quote-box p{
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: 600;
}

.stats-section{
    padding: 100px 0;
    background: #111;
}

.stats-box{
    background: rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 25px;
    color: #fff;
    transition: 0.4s;
}

.stats-box:hover{
    transform: translateY(-10px);
    background: #f06133;
}

.stats-box i{
    font-size: 40px;
    margin-bottom: 15px;
}

.stats-box h2{
    font-size: 50px;
    font-weight: 700;
}

.vision-mission-section{
    padding: 120px 0;
    background: #f8f9fa;
}

.vision-card{
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.4s;
}

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

.vision-icon{
    width: 80px;
    height: 80px;
    background: #f06133;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
}

.vision-card h3{
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.vision-card p{
    color: #666;
    line-height: 1.8;
}

.core-values-section{
    padding: 120px 0;
}

.section-title{
    font-size: 50px;
    font-weight: 700;
}

.value-card{
    background: #fff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: 0.4s;
    height: 100%;
}

.value-card:hover{
    transform: translateY(-10px);
    background: #f06133;
    color: #fff;
}

.value-card i{
    font-size: 48px;
    margin-bottom: 20px;
    color: #f06133;
}

.value-card:hover i{
    color: #fff;
}

.value-card h5{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media(max-width:768px){

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

    .about-content h2{
        font-size: 36px;
    }

    .section-title{
        font-size: 36px;
    }

    .experience-badge{
        right: 15px;
        padding: 20px;
    }

    .vision-card{
        padding: 35px 25px;
    }

}


.about-page-title{
    position: relative;
    padding: 90px 0 80px;
    background: url('<?= base_url('uploads/about/about.jpg') ?>') center center/cover no-repeat;
    overflow: hidden;
}

.about-overlay{
    position: absolute;
    inset: 0;
    background: #ef5a28;
}

.about-page-title .container{
    position: relative;
    z-index: 2;
}

.page-subtitle{
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-page-title h1{
    font-size: 60px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
    font-weight: 300;
    margin-bottom: 24px;
	color:#fff;
}

.about-breadcrumb ol{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.about-breadcrumb ol li{
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    position: relative;
}

.about-breadcrumb ol li a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.about-breadcrumb ol li a:hover{
    color: #f06133;
}

.about-breadcrumb ol li.active{
    color: #f06133;
    font-weight: 600;
}

.about-breadcrumb ol li:not(:last-child)::after{
    content: "/";
    margin-left: 12px;
    color: rgba(255,255,255,0.5);
}

@media(max-width:768px){

    .about-page-title{
        padding: 70px 0;
    }

    .about-page-title h1{
        font-size: 38px;
    }

}
/* End  About Us Page */


/* Start Services Page */
/* =========================================
PAGE TITLE
========================================= */

.services-page-title{
    padding: 140px 0 80px;
    background: #ef5a28;
    color: #fff;
    text-align: center;
}

.services-page-title h1{
   font-size: 60px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
    font-weight: 300;
    margin-bottom: 24px;
}

.services-page-title p{
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.services-section{
    padding: 100px 0;
    background: #f9f9f9;
}

.service-card{
    background: #fff;
    padding: 45px 35px;
    text-align: center;
    border-radius: 25px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

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

.icon-circle{
    width: 90px;
    height: 90px;
    background: rgba(200,169,107,0.12);
    margin: auto auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i{
    font-size: 2.5rem;
    color: #c8a96b;
}

.service-card h4{
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p{
    color: #666;
    line-height: 1.8;
}

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

.why-section{
    padding: 100px 0;
    background: #fff;
}

.section-subtitle{
    color: #c8a96b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title{
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 15px;
}

.feature-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.feature-box:hover{
    transform: translateY(-10px);
}

.feature-box i{
    font-size: 3rem;
    color: #c8a96b;
    margin-bottom: 20px;
}

.feature-box h5{
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box p{
    color: #666;
    line-height: 1.8;
}

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

.service-stats-section{
    padding: 100px 0;
    background: #f9f9f9;
}

.stats-box{
    background: linear-gradient(135deg, #111, #222);
    padding: 60px 40px;
    border-radius: 30px;
    color: #fff;
}

.stats-box h2{
    font-size: 3rem;
    color: #c8a96b;
    font-weight: 800;
}

.stats-box p{
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
}

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

@media(max-width:991px){

    .services-page-title{
        padding: 120px 0 70px;
    }

    .services-page-title h1{
        font-size: 2.8rem;
    }

    .section-title{
        font-size: 2.2rem;
    }

    .services-section,
    .why-section,
    .service-stats-section{
        padding: 80px 0;
    }

}

@media(max-width:767px){

    .services-page-title h1{
        font-size: 2.2rem;
    }

    .section-title{
        font-size: 1.8rem;
    }

    .service-card,
    .feature-box{
        padding: 35px 25px;
    }

    .stats-box{
        padding: 45px 25px;
    }

    .stats-box h2{
        font-size: 2.2rem;
    }

}

@media(max-width:576px){

    .services-page-title{
        padding: 110px 0 60px;
    }

    .services-page-title h1{
        font-size: 1.9rem;
    }

    .section-title{
        font-size: 1.5rem;
    }

    .stats-box h2{
        font-size: 2rem;
    }

}
/* End Services Page */

/* Start Events Page */
/* =========================================
PAGE TITLE
========================================= */

.events-page-title{
    padding: 140px 0 80px;
    background: #ef5a28;
    color: #fff;
    text-align: center;
}

.events-page-title h1{
    font-size: 60px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
    font-weight: 300;
    margin-bottom: 24px;
}

.events-breadcrumb ol{
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-breadcrumb a{
    color: #c8a96b;
    text-decoration: none;
}

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

.events-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.event-card{
    position: relative;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

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

.event-content{
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #fff;
}

.event-content h3{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.event-price{
    display: inline-block;
    background: #c8a96b;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.event-content p{
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

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

.event-features-section{
    padding: 100px 0;
    background: #fff;
}

.section-subtitle{
    color: #c8a96b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title{
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 15px;
}

.feature-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: 0.4s;
    height: 100%;
}

.feature-box:hover{
    transform: translateY(-10px);
}

.feature-box i{
    font-size: 3rem;
    color: #c8a96b;
    margin-bottom: 20px;
}

.feature-box h5{
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box p{
    color: #666;
    line-height: 1.8;
}

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

.events-cta-section{
    padding: 100px 0;
    background: linear-gradient(135deg,#c62828,#ff6b6b);
    color: #fff;
}

.events-cta-section h2{
    font-size: 3rem;
    font-weight: 800;
}

.events-cta-section p{
    margin: 20px 0 35px;
    font-size: 1.1rem;
}

.cta-btn{
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #111;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
}

.cta-btn:hover{
    background: #111;
    color: #fff;
}

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

.testimonial-section{
    padding: 100px 0;
    background: #fff;
}

.testimonial-box{
    padding: 40px 30px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    height: 100%;
}

.testimonial-box p{
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

@media(max-width:991px){

    .events-page-title{
        padding: 120px 0 70px;
    }

    .events-page-title h1{
        font-size: 2.8rem;
    }

    .section-title{
        font-size: 2.2rem;
    }

    .events-section,
    .event-features-section,
    .events-cta-section,
    .testimonial-section{
        padding: 80px 0;
    }

}

@media(max-width:767px){

    .events-page-title h1{
        font-size: 2.2rem;
    }

    .event-card{
        height: 450px;
    }

    .event-content{
        padding: 30px;
    }

    .event-content h3{
        font-size: 1.6rem;
    }

    .events-cta-section h2{
        font-size: 2rem;
    }

    .section-title{
        font-size: 1.8rem;
    }

}

@media(max-width:576px){

    .events-page-title{
        padding: 110px 0 60px;
    }

    .events-page-title h1{
        font-size: 1.9rem;
    }

    .event-card{
        height: 400px;
    }

    .event-content{
        padding: 25px;
    }

    .events-cta-section h2{
        font-size: 1.7rem;
    }

}


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

.swiper{
    width: 100%;
    overflow: hidden;
}

.swiper-slide{
    height: auto;
}

.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #c8a96b;
    opacity: 0.5;
}

.swiper-pagination-bullet-active{
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev{
    color: #c8a96b;
}
/* End Events Page */