/* ===========================
   GOOGLE FONT
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#FAF8F5;
    color:#1E1E1E;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:85px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(200,155,60,.15);

    z-index:999;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100%;

}

/* ===========================
   LOGO
=========================== */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo h2{

    font-family:'Playfair Display',serif;

    color:#8B1E1E;

    font-size:26px;

    font-weight:700;

}
.logo h2{
    font-size:18px;
    line-height:1.1;
}

.logo span{

    display:block;

    font-size:11px;

    letter-spacing:3px;

    color:#777;

}
.logo span{
    font-size:10px;
    letter-spacing:4px;
}
.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/* ===========================
   MENU
=========================== */

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:#222;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#C89B3C;

    transition:.35s;

}

.nav-links a:hover{

    color:#8B1E1E;

}

.nav-links a:hover::after{

    width:100%;

}

/* ===========================
   BUTTONS
=========================== */

.nav-right{

    display:flex;

    align-items:center;

    gap:12px;

}

.lang-btn,

.whatsapp-btn,

.call-btn{

    height:48px;

    padding:0 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    font-weight:600;

    transition:.35s;

}

.lang-btn{

    border:1px solid #ddd;

    background:#fff;

    color:#222;

    cursor:pointer;

}

.whatsapp-btn{

    border:1px solid #C89B3C;

    color:#8B1E1E;

}

.call-btn{

    background:#C89B3C;

    color:#fff;

}

.call-btn:hover{

    background:#8B1E1E;

}

.whatsapp-btn:hover{

    background:#C89B3C;

    color:#fff;

}

.lang-btn:hover{

    border-color:#C89B3C;

}

/* ===========================
   MOBILE ICON
=========================== */

.menu-btn{

    display:none;

    font-size:24px;

    cursor:pointer;

}
.logo img{
    width:50px;
    height:50px;
    object-fit:contain;
}
/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 0;
    background:hwb(60 96% 2%);
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.hero-content{

    flex:1;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    background:#fff;

    border:1px solid rgba(200,155,60,.25);

    border-radius:50px;

    color:#8B1E1E;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:58px;

    line-height:1.15;

    color:#1E1E1E;

    margin-bottom:25px;

}


.hero-content h1 span{

    color:#8B1E1E;

}

.hero-content p{

    font-size:20px;

    color:#555;

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

.hero-rating{

    font-size:18px;

    color:#C89B3C;

}

.hero-rating span{

    color:#555;

    margin-left:10px;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==========================================
            ABOUT SECTION
==========================================*/

.about{
    padding:120px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/*==========================================
            LEFT IMAGE
==========================================*/

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.4s;
}

.about-image:hover img{
    transform:scale(1.02);
}

/* Experience Card */

.experience-card{

    position:absolute;

    bottom:35px;

    right:-35px;

    width:190px;

    background:#fff;

    padding:28px 20px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    border:1px solid rgba(200,155,60,.18);

}

.experience-card h2{

    font-size:50px;

    color:#8B1E1E;

    font-family:'Playfair Display',serif;

    line-height:1;

    margin-bottom:10px;

}

.experience-card p{

    color:#666;

    font-size:15px;

    font-weight:600;

}

/*==========================================
            RIGHT CONTENT
==========================================*/

.about-content{

    position:relative;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:#FFF8ED;

    border:1px solid rgba(200,155,60,.25);

    border-radius:50px;

    color:#8B1E1E;

    font-weight:600;

    margin-bottom:25px;

}

.section-tag i{

    color:#C89B3C;

}

.about-content h2{

    font-family:'Playfair Display',serif;

    font-size:56px;

    color:#222;

    line-height:1.15;

    margin-bottom:15px;

}

.about-content h2 span{

    color:#8B1E1E;

}

.about-content h3{

    font-size:22px;

    color:#C89B3C;

    font-weight:600;

    margin-bottom:22px;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:35px;

}

/*==========================================
            FEATURES
==========================================*/

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:45px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:#ffffff;
    padding:18px 22px;
    border-radius:16px;
    border:1px solid rgba(200,155,60,.15);
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.35s ease;
}

.feature-item:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border-color:#C89B3C;
}

.feature-item i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#C89B3C;
    color:#fff;
    border-radius:50%;
    font-size:18px;
    flex-shrink:0;
}

.feature-item span{
    font-size:16px;
    font-weight:600;
    color:#333;
}

/*==========================================
            BUTTONS
==========================================*/

.about-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:10px;
}

.about-buttons .primary-btn,
.about-buttons .secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s ease;
}

.about-buttons .primary-btn{
    background:linear-gradient(135deg,#8B1E1E,#C89B3C);
    color:#fff;
    box-shadow:0 15px 35px rgba(139,30,30,.20);
}

.about-buttons .primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(139,30,30,.30);
}

.about-buttons .secondary-btn{
    background:#fff;
    color:#8B1E1E;
    border:2px solid #C89B3C;
}

.about-buttons .secondary-btn:hover{
    background:#C89B3C;
    color:#fff;
    transform:translateY(-4px);
}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:991px){

    .about{
        padding:80px 0;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-content h3{
        font-size:20px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .about-buttons .primary-btn,
    .about-buttons .secondary-btn{
        width:100%;
    }

    .experience-card{
        right:15px;
        bottom:15px;
        width:170px;
    }

    .experience-card h2{
        font-size:42px;
    }

}
/*==========================================
            SERVICES SECTION
==========================================*/

.services{
    padding:120px 0;
    background:#faf8f5;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-heading span{
    display:inline-block;
    padding:10px 24px;
    background:#FFF8ED;
    color:#8B1E1E;
    border:1px solid rgba(200,155,60,.25);
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    color:#222;
    margin-bottom:20px;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/*==========================================
            SERVICES GRID
==========================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*==========================================
            SERVICE CARD
==========================================*/

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    border:1px solid rgba(200,155,60,.15);

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#8B1E1E,#C89B3C);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*==========================================
            ICON
==========================================*/

.service-card i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:linear-gradient(135deg,#8B1E1E,#C89B3C);

    color:#fff;

    font-size:28px;

    margin-bottom:25px;

}

/*==========================================
            TEXT
==========================================*/

.service-card h3{

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#222;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

/*==========================================
            BUTTON
==========================================*/

.service-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    background:linear-gradient(135deg,#8B1E1E,#C89B3C);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.book-btn{

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:190px;
    height:62px;

    padding:0 8px 0 28px;

    border-radius:50px;

    background:linear-gradient(135deg,#8B1E1E,#D49A35);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.book-btn span{

    color:#fff;

}

.arrow-box{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    transition:.35s;

}

.arrow-box i{

    color:#fff;
    font-size:18px;

}

.book-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(139,30,30,.30);

}

.book-btn:hover .arrow-box{

    transform:translateX(6px);

    background:rgba(255,255,255,.25);

}
/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:991px){

    .services{
        padding:80px 0;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:40px;
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:16px;
    }

}
.service-image img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-content{
    padding:25px;
}

.service-card{
    display:flex;
    flex-direction:column;
}

.service-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.service-content a{
    margin-top:auto;
}
.section-title{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
}

.section-title span{
    color:#B8860B;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:48px;
    margin:15px 0;
}

.section-title h2 span{
    color:#8B1E1E;
}

.section-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}
/*================ BOOKING PROCESS ================*/

.booking-process{

    padding:100px 8%;
    background:#fff;

}

.process-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.step{

    position:absolute;

    top:18px;

    right:18px;

    font-size:14px;

    font-weight:700;

    color:#B8860B;

}

.icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#FFF7E6;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.4s;

}

.icon i{

    font-size:36px;

    color:#B8860B;

}

.process-card:hover .icon{

    background:#B8860B;

    transform:rotate(10deg) scale(1.08);

}

.process-card:hover .icon i{

    color:#fff;

}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}
/*==========================
        GALLERY
===========================*/

.gallery{
    padding:100px 8%;
    background:#fffaf5;
}

.gallery .section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.gallery .section-title span{
    color:#C89B3C;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery .section-title h2{
    margin:12px 0;
    font-size:48px;
    font-weight:700;
    color:#222;
}

.gallery .section-title h2 span{
    color:#8B1E1E;
}

.gallery .section-title p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    position:relative;

    height:320px;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.gallery-item.large{

    grid-column:span 2;

    height:420px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    border:2px solid #D4AF37;

}

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:25px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.82)
    );

    opacity:0;

    transition:.4s;

}

.overlay h3{

    color:#fff;

    font-size:24px;

    font-weight:600;

    transform:translateY(20px);

    transition:.4s;

}

.gallery-item:hover .overlay{

    opacity:1;

}

.gallery-item:hover .overlay h3{

    transform:translateY(0);

}

/* Tablet */

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-item.large{

grid-column:span 2;

height:350px;

}

}

/* Mobile */

@media(max-width:768px){

.gallery{

padding:70px 20px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item,

.gallery-item.large{

grid-column:span 1;

height:280px;

}

.gallery .section-title h2{

font-size:36px;

}

}

/*=========================================
            CONTACT SECTION
=========================================*/

.contact{
    padding:120px 8%;
    background:linear-gradient(180deg,#ffffff 0%,#fffaf4 100%);
    position:relative;
    overflow:hidden;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:center;
    margin-top:70px;
}

/*=========================
      LEFT SIDE
=========================*/

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:#ffffff;
    border-radius:22px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    border:1px solid rgba(212,175,55,.15);
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.info-card i{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#D4AF37,#b8891d);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:24px;
    flex-shrink:0;
}

.info-card h3{
    font-size:20px;
    color:#222;
    margin-bottom:6px;
}

.info-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/*=========================
      RIGHT SIDE
=========================*/

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:30px;
    border:1px solid rgba(212,175,55,.15);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:18px 20px;
    border:1px solid #ddd;
    border-radius:14px;
    outline:none;
    background:#fff;
    font-size:16px;
    transition:.35s;
    font-family:inherit;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#D4AF37;
    box-shadow:0 0 15px rgba(212,175,55,.25);

}

.contact-form textarea{
    min-height:170px;
    resize:none;
}

.contact-form button{

    border:none;
    padding:18px;
    background:linear-gradient(135deg,#8B1E1E,#5e1111);
    color:#fff;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;

}

.contact-form button:hover{

    background:linear-gradient(135deg,#D4AF37,#b8891d);
    color:#222;
    transform:translateY(-4px);

}

.contact-form button i{

    margin-right:10px;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;
gap:40px;

}

.contact-info{

order:2;

}

.contact-form{

order:1;

}

}

@media(max-width:768px){

.contact{

padding:80px 20px;

}

.contact-wrapper{

gap:30px;

}

.contact-form{

padding:25px;

}

.info-card{

padding:20px;

}

.info-card i{

width:60px;
height:60px;
font-size:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

padding:15px;

}

.contact-form button{

padding:16px;

}

}
/*=========================================
               FOOTER
=========================================*/

.footer{

    background:#111111;
    color:#ffffff;
    padding:90px 8% 0;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
    padding-bottom:60px;

}

/*=========================
      LOGO
=========================*/

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

.footer-box p{

    color:#bfbfbf;
    line-height:1.9;
    font-size:15px;

}

/*=========================
     HEADINGS
=========================*/

.footer-box h3{

    color:#D4AF37;
    font-size:22px;
    margin-bottom:25px;
    position:relative;

}

.footer-box h3::after{

    content:"";
    width:45px;
    height:3px;
    background:#D4AF37;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:5px;

}

/*=========================
      LINKS
=========================*/

.footer-box a{

    display:block;
    color:#d5d5d5;
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s;

}

.footer-box a:hover{

    color:#D4AF37;
    transform:translateX(8px);

}

/*=========================
      CONTACT
=========================*/

.footer-box p{

    margin-bottom:16px;

}

.footer-box p i{

    color:#D4AF37;
    margin-right:10px;
    width:22px;

}

/*=========================
    SOCIAL ICONS
=========================*/

.footer-social{

    display:flex;
    gap:15px;
    margin-top:25px;

}

.footer-social a{

    width:48px;
    height:48px;
    border-radius:50%;
    background:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.35s;
    font-size:18px;

}

.footer-social a:hover{

    background:#D4AF37;
    color:#111;
    transform:translateY(-6px);

}

/*=========================
      BOTTOM
=========================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.footer-bottom p{

    color:#bfbfbf;
    font-size:15px;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

padding:70px 20px 0;

}

.footer-grid{

grid-template-columns:1fr;
gap:40px;

}

.footer-bottom{

flex-direction:column;
text-align:center;

}

.footer-logo{

width:150px;

}

}
/*=========================================
          TESTIMONIAL SECTION
=========================================*/

.testimonials{
    padding:120px 8%;
    background:linear-gradient(180deg,#fffaf5 0%,#ffffff 100%);
    overflow:hidden;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

/*=========================
        CARD
=========================*/

.testimonial-card{

    position:relative;
    background:#fff;
    padding:40px 35px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.15);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-12px);
    border-color:#D4AF37;
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.testimonial-card::before{

    content:"❝";
    position:absolute;
    top:10px;
    right:25px;
    font-size:110px;
    color:rgba(212,175,55,.12);
    font-family:serif;

}

/*=========================
       STARS
=========================*/

.stars{

    color:#D4AF37;
    font-size:22px;
    letter-spacing:5px;
    margin-bottom:25px;

}

/*=========================
      REVIEW
=========================*/

.review{

    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
    font-style:italic;

}

/*=========================
      CLIENT
=========================*/

.client{

    display:flex;
    align-items:center;
    gap:18px;
    padding-top:20px;
    border-top:1px solid #eee;

}

.client img{

    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #D4AF37;
    box-shadow:0 8px 20px rgba(212,175,55,.25);

}

.client h4{

    font-size:20px;
    color:#222;
    margin-bottom:6px;
    font-weight:700;

}

.client span{

    color:#999;
    font-size:15px;

}

/*=========================
    HOVER IMAGE
=========================*/

.testimonial-card:hover .client img{

    transform:scale(1.08);
    transition:.35s;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonials{

padding:80px 20px;

}

.testimonial-grid{

grid-template-columns:1fr;

gap:25px;

}

.testimonial-card{

padding:30px 25px;

}

.client img{

width:65px;
height:65px;

}

.client h4{

font-size:18px;

}

.review{

font-size:15px;

}

}
/*=========================================
                FAQ
=========================================*/

.faq{

    padding:120px 8%;
    background:linear-gradient(180deg,#fff 0%,#fffaf5 100%);

}

.faq-container{

    max-width:950px;
    margin:70px auto 0;

}

.faq-item{

    background:#fff;
    border-radius:22px;
    margin-bottom:22px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.15);
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-4px);
    border-color:#D4AF37;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=========================
      QUESTION
=========================*/

.faq-question{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 30px;
    cursor:pointer;
    user-select:none;

}

.faq-question h3{

    font-size:20px;
    color:#222;
    font-weight:600;

}

/*=========================
      ICON
=========================*/

.faq-question span{

    width:45px;
    height:45px;
    background:#D4AF37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:bold;
    transition:.35s;

}

/*=========================
      ANSWER
=========================*/

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 30px;
    color:#666;
    font-size:16px;
    line-height:1.9;

}

/*=========================
     ACTIVE
=========================*/

.faq-item.active{

    border-color:#D4AF37;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);
    background:#8B1E1E;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:768px){

.faq{

padding:80px 20px;

}

.faq-question{

padding:20px;

}

.faq-question h3{

font-size:17px;
width:85%;

}

.faq-answer p{

padding:0 20px 25px;

}

.faq-question span{

width:40px;
height:40px;
font-size:22px;

}

}
/*=========================================
             GALLERY LIGHTBOX
=========================================*/

.lightbox{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.92);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99999;

}

.lightbox.active{

opacity:1;

visibility:visible;

}

.lightbox-img{

max-width:90%;

max-height:85%;

border-radius:15px;

box-shadow:0 20px 60px rgba(0,0,0,.5);

animation:zoom .35s;

}

@keyframes zoom{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.close{

position:absolute;

top:35px;

right:45px;

font-size:55px;

color:#fff;

cursor:pointer;

transition:.3s;

}

.close:hover{

color:#D4AF37;

transform:rotate(90deg);

}

@media(max-width:768px){

.lightbox-img{

max-width:95%;

}

.close{

font-size:40px;

top:20px;

right:25px;

}

}
/*=========================================
              WEBSITE LOADER
=========================================*/

#loader{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:120px;

    margin-bottom:20px;

    animation:logoFloat 2s infinite;

}

.loader-content h2{

    color:#8B1E1E;

    font-size:34px;

    margin-bottom:30px;

    letter-spacing:3px;

}

.loading-bar{

    width:260px;

    height:8px;

    background:#eee;

    border-radius:20px;

    overflow:hidden;

}

.loading-bar span{

    display:block;

    width:0%;

    height:100%;

    background:linear-gradient(90deg,#8B1E1E,#D4AF37);

    animation:loading 2s linear forwards;

}

@keyframes loading{

0%{

width:0;

}

100%{

width:100%;

}

}

@keyframes logoFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}
/*=========================================
              COUNTER SECTION
=========================================*/

.counter-section{

    padding:100px 8%;

    background:linear-gradient(135deg,#7B1E1E,#D4AF37);

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.counter-card{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:40px 20px;

    transition:.4s;

}

.counter-card:hover{

    transform:translateY(-10px);

}

.counter-card h2{

    font-size:48px;

    color:#8B1E1E;

    margin-bottom:10px;

}

.counter-card p{

    color:#555;

    font-size:18px;

}

@media(max-width:992px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.counter-grid{

grid-template-columns:1fr;

}

}
/* ==========================
   MOBILE NAVBAR
========================== */

@media (max-width: 768px){

.header{
    height:75px;
}

.logo img{
    width:42px;
    height:42px;
}

.logo h2{
    font-size:16px;
}

.logo span{
    font-size:8px;
    letter-spacing:2px;
}

/* Hide Desktop Menu */



.whatsapp-btn,
.call-btn,
.lang-btn{
    display:none;
}

/* Show Menu Button */

.menu-btn{
    display:block;
    font-size:28px;
    color:#8B1E1E;
}

}

@media (max-width:768px){

.nav-links{

position:fixed;
top:75px;
left:-100%;

width:100%;
height:calc(100vh - 75px);

background:#fff;

display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;

padding-top:50px;
gap:25px;

transition:.4s;

z-index:999;

}

.nav-links.active{

left:0;

}

.nav-links li{

width:90%;

}

.nav-links a{

display:block;
padding:15px;
text-align:center;
border-radius:10px;

}

.nav-links a:hover{

background:#FAF8F5;

}

}
@media (max-width:768px){

.hero{
    padding:120px 20px 60px;
}

.hero-container{
    flex-direction:column;
    gap:35px;
}

.hero-content{
    text-align:center;
}

.hero-content h1{
    font-size:52px;
    line-height:1.15;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
}

.hero-buttons a{
    width:100%;
    justify-content:center;
}

.hero-image img{
    max-width:320px;
}

}
@media(max-width:768px){

.about-image img{
    width:100%;
}

.experience-card{
    right:10px;
    bottom:10px;
    width:140px;
}

}
@media(max-width:768px){

.hero{
    min-height:auto;
}

}
/* ==========================
   PREMIUM FLOATING BUTTONS
========================== */

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-buttons a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.floating-call{
    background:#8B1E1E;
}

.floating-whatsapp{
    background:#25D366;
}

/* Hover Label */

.floating-buttons a::after{
    content:attr(data-text);
    position:absolute;
    right:70px;
    background:#222;
    color:#fff;
    padding:10px 16px;
    border-radius:30px;
    white-space:nowrap;
    opacity:0;
    transform:translateX(15px);
    transition:.3s;
    font-size:14px;
    font-weight:600;
}

.floating-buttons a:hover{
    transform:scale(1.12);
}

.floating-buttons a:hover::after{
    opacity:1;
    transform:translateX(0);
}

/* WhatsApp Pulse */

.floating-whatsapp{
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

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);
}

}

@media(max-width:768px){

.floating-buttons{
right:15px;
bottom:15px;
}

.floating-buttons a{
width:56px;
height:56px;
font-size:22px;
}

.floating-buttons a::after{
display:none;
}

}
/* ==========================
   Sticky Navbar Effect
========================== */

.header.scrolled{
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(20px);
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    border-bottom:1px solid rgba(200,155,60,.2);
    transition:.35s ease;
}

.nav-links a.active{
    color:#8B1E1E;
}

.nav-links a.active::after{
    width:100%;
}

/* ==========================
   Scroll Progress Bar
========================== */

#scroll-progress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,#c99b3c,#f4d03f,#c99b3c);
    z-index:10000;
    transition:width .1s linear;
}
/*=========================================
      FINAL MOBILE OPTIMIZATION
      Paste at END of style.css
=========================================*/

@media (max-width:768px){

/* Container */

.container{
    width:92%;
    max-width:100%;
    margin:auto;
}

/* All Sections */

section{
    padding:60px 0 !important;
}

/* Section Title */

.section-title,
.section-heading{
    margin-bottom:40px;
}

.section-title h2,
.section-heading h2{
    font-size:30px !important;
    line-height:1.3;
}

.section-title p,
.section-heading p{
    font-size:15px;
    line-height:1.7;
}

/* Hero */

.hero{
    padding:100px 0 60px;
    min-height:auto;
}

.hero-content h1{
    font-size:34px !important;
    line-height:1.25;
}

.hero-content p{
    font-size:16px;
}

.hero-image img{
    max-width:280px;
}

/* About */

.about-container{
    gap:35px;
}

.about-content h2{
    font-size:30px !important;
}

.about-content h3{
    font-size:18px;
}

.about-content p{
    font-size:15px;
}

.experience-card{
    width:120px;
    padding:15px;
}

.experience-card h2{
    font-size:30px;
}

/* Services */

.services-grid{
    gap:20px;
}

.service-card{
    border-radius:18px;
    overflow:hidden;
}

.service-image img{
    height:200px;
}

.service-content{
    padding:20px;
}

.service-content h3{
    font-size:22px;
}

.service-content p{
    font-size:15px;
}

/* Buttons */

.book-btn,
.service-content a{
    width:100%;
    justify-content:center;
    height:52px;
    font-size:15px;
}

/* Gallery */

.gallery-grid{
    gap:15px;
}

.gallery-item,
.gallery-item.large{
    height:220px;
}

/* Testimonials */

.testimonial-card{
    padding:25px;
}

/* FAQ */

.faq-question{
    padding:18px;
}

.faq-question h3{
    font-size:17px;
}

/* Contact */

.contact-wrapper{
    gap:25px;
}

.contact-form{
    padding:22px;
}

.info-card{
    padding:18px;
}

/* Counter */

.counter-grid{
    gap:15px;
}

.counter-card{
    padding:25px;
}

.counter-card h2{
    font-size:34px;
}

.counter-card p{
    font-size:15px;
}

/* Footer */

.footer-grid{
    gap:25px;
}

.footer-logo{
    width:120px;
}

.footer-bottom{
    text-align:center;
}

}