/* =====================================================
   Global
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1F1F1F;
    background: #F8F5F0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*===================================================
HEADER
===================================================*/

.site-header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header-wrapper{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

/* Logo */

.header-logo img{
    max-height:70px;
    width:auto;
    display:block;
}

/* Main Navigation */

.main-navigation{
    flex:1;
    display:flex;
    justify-content:center;
}

.main-navigation ul{
    display:flex;
    align-items:center;
    gap:25px;
    margin:0;
    padding:0;
}

.main-navigation ul li{
    list-style:none;
}

.main-navigation ul li a{
    color:#222;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    position: relative;
    font-family: sans-serif;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active{
    color:#8b5a2b;
}

.main-navigation ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4A762;
    transition:.3s;
}

.main-navigation ul li a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#8b5a2b;
    border-radius:10px;
}

/* Right Section */

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

/* Search */

.header-search{
    width:280px;
}

.header-search form{
    display:flex;
    align-items:center;
}

.header-search input{
    width:100%;
    height:46px;
    border:1px solid #ddd;
    border-right:none;
    border-radius:30px 0 0 30px;
    padding:0 18px;
    outline:none;
    font-size:14px;
    background:#fff;
}

.header-search button{
    width:55px;
    height:46px;
    border:none;
    cursor:pointer;
    background:#3B2618;
    color:#fff;
    border-radius:0 30px 30px 0;
    transition:.3s;
}

.header-search button:hover{
    background:#D4A762;
}

/* App Button */

.download-app-btn{
    width:46px;
    height:46px;
    background:#D4A762;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    font-size:18px;
}

.download-app-btn:hover{
    background:#3B2618;
    color:#fff;
}

/* User */

.user-btn{
    width:46px;
    height:46px;
    background:#3B2618;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    font-size:18px;
}

.user-btn:hover{
    background:#D4A762;
    color:#fff;
}

/* Menu Button */

.mobile-menu-btn{
    width:46px;
    height:46px;
    border:none;
    background:#D4A762;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:.3s;
}

.mobile-menu-btn:hover{
    background:#3B2618;
}

/*===================================================
MOBILE SIDEBAR
===================================================*/

.mobile-sidebar{
    position:fixed;
    top:0;
    right:-320px;
    width:320px;
    height:100vh;
    background:#ffffff;
    z-index:99999;
    overflow-y:auto;
    transition:.4s;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
}

.mobile-sidebar.active{
    right:0;
}

.mobile-sidebar-header{
    padding:25px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.mobile-sidebar-header img{
    max-width:150px;
}

.mobile-search{
    padding:20px;
}

.mobile-search input{
    width:100%;
    height:45px;
    border:1px solid #ddd;
    border-radius:30px;
    padding:0 15px;
}

.mobile-sidebar ul{
    padding:0;
    margin:0;
}

.mobile-sidebar ul li{
    list-style:none;
}

.mobile-sidebar ul li a{
    display:block;
    padding:15px 25px;
    color:#1F1F1F;
    border-bottom:1px solid #f3f3f3;
    font-weight:500;
}

.mobile-sidebar ul li a:hover{
    background:#D4A762;
    color:#fff;
}

/*===================================================
RESPONSIVE
===================================================*/

@media(max-width:1200px){

    .header-search{
        width:220px;
    }

    .main-navigation ul{
        gap:25px;
    }

}

@media(max-width:991px){

    .main-navigation{
        display:none;
    }

    .header-search{
        display:none;
    }

    .header-wrapper{
        min-height:80px;
    }

}

@media(max-width:576px){

    .header-logo img{
        max-height:55px;
    }

    .download-app-btn,
    .user-btn,
    .mobile-menu-btn{
        width:42px;
        height:42px;
    }

    .mobile-sidebar{
        width:280px;
    }

}

/*=========================================
QUICK FEATURES
=========================================*/

.quick-features-section{

    background: linear-gradient(
        90deg,
        #7a4a22,
        #9a6032
    );

    padding:20px 0;
}

.quick-features-wrapper{

    display:flex;
    gap:18px;

    overflow-x:auto;

    scrollbar-width:none;

    -ms-overflow-style:none;

    padding:0 10px;
}

.quick-features-wrapper::-webkit-scrollbar{
    display:none;
}

.quick-feature-card{

    min-width:130px;

    height:90px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(212,167,98,.8);

    border-radius:12px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:#fff;

    transition:.3s;

    flex-shrink:0;
}

.quick-feature-card i{

    font-size:24px;

    color:#D4A762;
}

.quick-feature-card span{

    font-size:14px;

    font-weight:500;

    text-align:center;
}

.quick-feature-card:hover{

    background:#D4A762;

    color:#fff;

    transform:translateY(-3px);
}

.quick-feature-card:hover i{
    color:#fff;
}


@media(max-width:768px){
  .quick-features-wrapper{
    gap: 10px;
    padding: 0;
    }

 .quick-feature-card {
    min-width: 118px;
    height: 78px;
    }
}
/*=========================================
HERO SECTION
=========================================*/

.hero-section{

    position:relative;

    height:60vh;

    min-height:520px;

    background:url('../images/banners/hero.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(20,20,20,.75),
        rgba(20,20,20,.60)
    );
}

.hero-content{

    position:relative;

    z-index:10;

    max-width:700px;

    color:#fff;
}

.hero-subtitle{

    color:#D4A762;

    font-size:18px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.hero-content h1{

    font-size:64px;

    font-weight:800;

    margin-top:10px;

    margin-bottom:10px;

    line-height:1.1;
}

.hero-content h2{

    color:#D4A762;

    font-size:30px;

    font-weight:600;

    margin-bottom:20px;
}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#f3f3f3;

    margin-bottom:30px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:35px;
}

.btn-book-table{

    background:#D4A762;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-book-table:hover{

    background:#fff;

    color:#3B2618;
}

.btn-view-menu{

    border:2px solid #fff;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    transition:.3s;
}

.btn-view-menu:hover{

    background:#fff;

    color:#3B2618;
}

.hero-highlights{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.hero-badge{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    padding:10px 16px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:8px;

    backdrop-filter:blur(10px);
}

.hero-badge i{

    color:#D4A762;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .hero-section{

        height:500px;
    }

    .hero-content h1{

        font-size:48px;
    }

}

@media(max-width:768px){

    .hero-section{

        height:420px;
    }

    .hero-content h1{

        font-size:34px;
    }

    .hero-content h2{

        font-size:22px;
    }

    .hero-content p{

        font-size:15px;
    }

    .hero-highlights{

        display:none;
    }

}

/*=========================================
OUR SERVICES
=========================================*/

.services-section{
    padding:30px 0;
    background:#f8f5f0;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1F1F1F;
    margin-bottom:10px;
}

.section-heading p{
    font-size:18px;
    color:#777;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.service-card i{
    font-size:42px;
    color:#D4A762;
    margin-bottom:20px;
}

.service-card h4{
    font-size:20px;
    font-weight:600;
    color:#1F1F1F;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .services-section{
        padding: 40px 0;
    }

    .section-heading h2{
        font-size:32px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .service-card{
        padding:25px 15px;
    }

    .service-card i{
        font-size:32px;
    }

    .service-card h4{
        font-size:16px;
    }

}

/*=========================================
TABLE RESERVATION BANNER
=========================================*/

.reservation-banner{

    position:relative;

    padding:120px 0;

    background:url('../images/banners/reservation.jpg');

    background-size:cover;

    background-position:center;

    border-radius:20px;

    overflow:hidden;

    margin:80px 0;
}

.reservation-overlay{

    position:absolute;

    inset:0;

    background:rgba(80,45,20,.55);

    backdrop-filter:blur(2px);
}

.reservation-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:900px;

    margin:auto;

    color:#fff;
}

.reservation-content h2{

    font-size:60px;

    font-weight:800;

    color:#D4A62A;

    margin-bottom:15px;
}

.reservation-content h3{

    font-size:42px;

    font-weight:700;

    margin-bottom:25px;
}

.reservation-content p{

    max-width:800px;

    margin:auto;

    font-size:22px;

    line-height:1.7;

    margin-bottom:40px;
}

.reservation-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 45px;

    background:#D4A62A;

    color:#111;

    font-size:22px;

    font-weight:700;

    border-radius:12px;

    transition:.3s;
}

.reservation-btn:hover{

    background:#fff;
}

.reservation-features{

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:45px;

    flex-wrap:wrap;
}

.reservation-features div{

    font-size:20px;

    color:#fff;

    display:flex;

    align-items:center;

    gap:10px;
}

.reservation-features i{

    color:#D4A62A;
}

/* Mobile */

@media(max-width:768px){

    .reservation-banner{

        padding:70px 20px;
    }

    .reservation-content h2{

        font-size:42px;
    }

    .reservation-content h3{

        font-size:28px;
    }

    .reservation-content p{

        font-size:16px;
    }

    .reservation-btn{

        width:100%;

        justify-content:center;

        font-size:18px;
    }

    .reservation-features{

        gap:15px;
    }

    .reservation-features div{

        font-size:16px;
    }

}

/*=========================================
DINING EXPERIENCE
=========================================*/

.dining-experience-section{

    padding:20px 0;

    background:#f8f5f0;
}

.section-heading{

    text-align:center;

    margin-bottom:60px;
}

.section-heading span{

    color:#D4A762;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;
}

.section-heading h2{

    font-size:48px;

    font-weight:700;

    color:#1f1f1f;

    margin:10px 0 15px;
}

.section-heading p{

    color:#777;

    font-size:18px;
}

.dining-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.dining-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.dining-card:hover{

    transform:translateY(-10px);
}

.dining-image{

    height:260px;

    overflow:hidden;
}

.dining-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;
}

.dining-card:hover img{

    transform:scale(1.08);
}

.dining-content{

    padding:30px;
}

.dining-content h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    color:#2a2a2a;
}

.dining-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

.dining-btn{

    display:inline-block;

    padding:12px 28px;

    background:#D4A762;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.dining-btn:hover{

    background:#3B2618;

    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .dining-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .dining-experience-section{

        padding:70px 0;
    }

    .section-heading h2{

        font-size:34px;
    }

    .dining-grid{

        grid-template-columns:1fr;
    }

    .dining-image{

        height:220px;
    }

}

/*=========================================
OUR SPECIALTIES
=========================================*/

.specialties-section{

    padding: 60px 0;

    background:#f8f8f8;
}

.specialties-section .section-heading{

    text-align:center;

    margin-bottom:40px;
}

.specialties-section .section-heading h2{

    font-size:48px;

    font-weight:700;

    color:#222;

    margin-bottom:10px;
}

.specialties-section .section-heading p{

    color:#666;

    font-size:18px;
}

.specialties-tabs{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:50px;
}

.specialties-tabs button{

    padding:12px 30px;

    border:1px solid #D4A762;

    background:#fff;

    color:#333;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;
}

.specialties-tabs button.active,
.specialties-tabs button:hover{

    background:#D4A762;

    color:#fff;
}

.specialties-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.food-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.food-card:hover{

    transform:translateY(-8px);
}

.food-card img{

    width:100%;

    height:250px;

    object-fit:cover;
}

.food-content{

    padding:25px;
}

.food-content h4{

    font-size:28px;

    margin-bottom:12px;

    font-weight:700;
}

.food-content p{

    color:#666;

    line-height:1.6;

    margin-bottom:15px;
}

.food-price{

    color:#D4A762;

    font-size:28px;

    font-weight:700;
}

/* Tablet */

@media(max-width:991px){

    .specialties-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .specialties-section{

        padding:70px 0;
    }

    .specialties-section .section-heading h2{

        font-size:34px;
    }

    .specialties-grid{

        grid-template-columns:1fr;
    }

    .food-card img{

        height:220px;
    }

}

/*=========================================
APP DOWNLOAD SECTION
=========================================*/

.app-download-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #6b4226,
        #8a5a34
    );
}

.app-download-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;
}

.app-content{

    flex:1;

    color:#fff;
}

.app-tag{

    color:#D4A762;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;
}

.app-content h2{

    font-size:54px;

    font-weight:700;

    margin:15px 0 25px;
}

.app-content p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:30px;
}

.app-features{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.app-features li{

    margin-bottom:15px;

    font-size:18px;
}

.app-features i{

    color:#D4A762;

    margin-right:10px;
}

.app-buttons{

    display:flex;

    gap:15px;
}

.app-store-btn,
.play-store-btn{

    padding:15px 30px;

    border-radius:12px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.app-store-btn{

    background:#D4A762;

    color:#111;
}

.play-store-btn{

    background:#fff;

    color:#111;
}

.app-store-btn:hover,
.play-store-btn:hover{

    transform:translateY(-3px);
}

.app-image{

    flex:1;

    text-align:center;
}

.app-image img{

    max-width:350px;

    width:100%;
}

/* Mobile */

@media(max-width:991px){

    .app-download-wrapper{

        flex-direction:column;
    }

    .app-content{

        text-align:center;
    }

    .app-buttons{

        justify-content:center;
    }

}

@media(max-width:768px){

    .app-content h2{

        font-size:36px;
    }

    .app-content p{

        font-size:16px;
    }

    .app-buttons{

        flex-direction:column;
    }

}

/*==================================
CUSTOMER REVIEWS SLIDER
==================================*/

.reviews-slider{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding-bottom:15px;

    scrollbar-width:none;
}

.reviews-slider::-webkit-scrollbar{

    display:none;
}

/* Desktop */

.review-card{

    flex:0 0 calc(33.333% - 20px);

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;
}

.review-card:hover{

    transform:translateY(-8px);
}

/* Tablet */

@media(max-width:991px){

    .review-card{

        flex:0 0 calc(50% - 15px);
    }
}

/* Mobile */

@media(max-width:767px){

    .review-card{

        flex:0 0 90%;
    }
}

/*=========================================
TESTIMONIALS SECTION
=========================================*/

.testimonials-section{

    padding:100px 0;

    background:#f8f5f0;
}

.testimonials-section .section-heading{

    text-align:center;

    margin-bottom:60px;
}

.testimonials-section .section-heading span{

    color:#D4A762;

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:1px;
}

.testimonials-section .section-heading h2{

    font-size:48px;

    margin:15px 0;

    color:#222;
}

.testimonials-section .section-heading p{

    color:#666;

    font-size:18px;
}

.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;
}

.testimonial-card:hover{

    transform:translateY(-8px);
}

.review-stars{

    color:#D4A762;

    font-size:22px;

    margin-bottom:20px;
}

.review-text{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;
}

.review-user{

    display:flex;

    align-items:center;

    gap:15px;
}

.review-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;
}

.review-user h4{

    margin:0;

    color:#222;
}

.review-user span{

    color:#888;

    font-size:14px;
}

/* Stats */

.review-stats{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.stat-box{

    background:#fff;

    text-align:center;

    padding:35px 20px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.stat-box h3{

    color:#D4A762;

    font-size:36px;

    margin-bottom:10px;
}

.stat-box p{

    color:#666;
}

/* Tablet */

@media(max-width:991px){

    .testimonials-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .review-stats{

        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .testimonials-section{

        padding:70px 0;
    }

    .testimonials-section .section-heading h2{

        font-size:34px;
    }

    .testimonials-grid{

        grid-template-columns:1fr;
    }

    .review-stats{

        grid-template-columns:1fr;
    }

    .testimonial-card{

        padding:25px;
    }

}

/*=========================================
GALLERY SECTION
=========================================*/

.gallery-section{

    padding:100px 0;

    background:#ffffff;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    grid-auto-rows:250px;

    gap:20px;

    margin-top:50px;
}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    cursor:pointer;
}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

.gallery-large{

    grid-column:span 2;

    grid-row:span 2;
}

.gallery-wide{

    grid-column:span 2;
}

.gallery-btn{

    text-align:center;

    margin-top:50px;
}

.gallery-btn a{

    display:inline-block;

    background:#D4A762;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.gallery-btn a:hover{

    background:#3B2618;
}

/* Tablet */

@media(max-width:991px){

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .gallery-large{

        grid-column:span 2;
    }

    .gallery-wide{

        grid-column:span 2;
    }

}

/* Mobile */

@media(max-width:768px){

    .gallery-section{

        padding:70px 0;
    }

    .gallery-grid{

        grid-template-columns:1fr;

        grid-auto-rows:250px;
    }

    .gallery-large,
    .gallery-wide{

        grid-column:auto;

        grid-row:auto;
    }

}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-choose-section{

    padding: 60px 0;

    background:#f8f5f0;
}

.why-choose-slider{

    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px 5px 20px;
    scrollbar-width:none;
}

.why-choose-slider::-webkit-scrollbar{
    display:none;
}

.why-card{
    flex:0 0 calc(25% - 20px);
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.why-card:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.why-icon{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#D4A762;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    color:#fff;
    font-size:30px;
}

.why-card h4{

    font-size:24px;

    margin-bottom:15px;
}

.why-card p{

    color:#666;

    line-height:1.8;
}

/* Stats */

.why-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;
}

.why-stat{

    background:#3B2618;

    color:#fff;

    text-align:center;

    padding:35px 20px;

    border-radius:18px;
}

.why-stat h3{

    color:#D4A762;

    font-size:42px;

    margin-bottom:10px;
}

.why-stat p{

    margin:0;
}

/* Mobile */

@media(max-width:768px){

    .why-choose-section{

        padding: 40px 0;
    }

    .why-choose-slider {
        gap: 12px;
        padding: 10px 5px 20px;
    }

    .why-card {
        flex: 0 0 calc(50% - 20px);
        background: #fff;
        border-radius: 20px;
        padding: 20px 10px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
        transition: all .3s ease;
    }
    
    .why-card h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
     
    .why-card p {
        color: #666;
        font-size: 14px;
    }
    .why-stats{

        grid-template-columns:1fr;
    }

}
/*======================================================
   About Us
======================================================*/
.about-hero{
    padding:80px 0;
    background:linear-gradient(135deg,#4b2e1f,#8b5e34);
    color:#fff;
}

.about-tag{
    display:inline-block;
    background:#d8aa5c;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.about-hero h1{
    font-size:55px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.about-hero h1 span{
    color:#d8aa5c;
}

.about-hero p{
    font-size:18px;
    opacity:.95;
}

.btn-gold{
    background:#d8aa5c;
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.btn-gold:hover{
    background:#c8943f;
    color:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-weight:700;
    color:#4b2e1f;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-5px);
}

.why-card i{
    font-size:40px;
    color:#d8aa5c;
    margin-bottom:15px;
}

.founder-section{
    background:#faf6f0;
}

.founder-social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-btn{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#d8aa5c;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
}

.social-btn:hover{
    background:#4b2e1f;
    color:#fff;
    transform:translateY(-3px);
}

.counter-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.counter-box h3{
    color:#d8aa5c;
    font-size:36px;
    font-weight:700;
}

.cta-section{
    background:#4b2e1f;
    color:#fff;
    text-align:center;
    padding:70px 0;
}

@media(max-width:768px){

    .about-hero{
        text-align:center;
        padding:60px 0;
    }

    .about-hero h1{
        font-size:36px;
    }

    .section-title{
        margin-bottom:30px;
    }
}

/* =====================================================
   Footer
===================================================== */

.site-footer {
    background: #3B2618;
    color: #fff;
    padding-top: 70px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 128px;
    margin-bottom: 12px;

}

.footer-widget p {
    color: #ddd;
    line-height: 1.8;
    font-size: 14px;
}

.footer-widget h4 {
    color: #D4A762;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.footer-widget ul li {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 15px;
}

.footer-widget ul li a {
    color: #ddd;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #D4A762;
}

/* Social */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: #D4A762;
}

/* Contact */

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #D4A762;
    margin-top: 4px;
}

/* Button */

.footer-book-btn {
    display: inline-block;
    margin-top: 15px;
    background: #D4A762;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    transition: .3s;
}

.footer-book-btn:hover {
    background: #fff;
    color: #3B2618;
}

/* Bottom Footer */

.footer-bottom {
    margin-top: 5px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-content p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}

.techm-logo {
    height: 28px;
}
/* =====================================================
   Responsive
===================================================== */

@media (max-width: 991px) {

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .footer-widget {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}