/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --grey-100: #F5F5F5;
    --grey-200: #E5E5E5;
    --grey-300: #D4D4D4;
    --grey-400: #A3A3A3;
    --grey-500: #737373;
    --grey-600: #525252;
    --grey-700: #404040;
    --grey-800: #262626;
    --grey-900: #171717;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--grey-900);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

a {
    text-decoration: none;
}

textarea {
    resize: none !important;
}

h1, h2, h3, h4, h5, h6 {
    width: 100% !important;
    word-break: break-word;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: var(--transition);
    padding: 8px 30px;
}

.navbar.navbar-scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background-color: rgba(20, 20, 20, 0.9);
    padding: 12px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
    padding: 0;
    max-width: 100%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo-image {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #a6874e;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background-color: #8d7242;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(166, 135, 78, 0.4);
}

.btn-nav-cta svg {
    transition: var(--transition);
}

.btn-nav-cta:hover svg {
    transform: translateX(4px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

@media (max-width: 968px) {
    body.menu-locked {
        overflow: hidden;
    }

    .navbar {
        top: 16px;
        width: calc(100% - 32px);
        padding: 6px 20px;
    }

    .navbar.navbar-scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 8px 24px;
    }

    .logo-image {
        height: 38px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 24px 0;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.8);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--white);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    /* Animate Hamburger into 'X' when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .btn-nav-cta {
        display: none;
    }
    
    .hero {
        padding: 180px 20px 80px;
        background-attachment: scroll;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-gold,
    .btn-hero-white {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 220px 60px 120px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('assets/13a09382-5605-4bf8-80ca-dd680a2664ea.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px 6px 8px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.badge-tag {
    background-color: #a6874e;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-family: var(--font-body);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUpHero 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

.hero-text p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 680px;
    opacity: 0;
    animation: fadeInUpHero 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: fadeInUpHero 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.6s;
}

.btn-hero-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: #a6874e;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 40px;
    transition: var(--transition);
}

.btn-hero-gold:hover {
    background-color: #8d7242;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 135, 78, 0.4);
}

.btn-hero-gold svg {
    transition: var(--transition);
}

.btn-hero-gold:hover svg {
    transform: translateX(4px);
}

.btn-hero-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 40px;
    transition: var(--transition);
}

.btn-hero-white:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-hero-white svg {
    transition: var(--transition);
}

.btn-hero-white:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.btn-primary svg {
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 1060px) {
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-text h1,
    .hero-text p {
        max-width: 100%;
    }
    
    .testimonial-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 100px 0 0;
    background-color: var(--grey-100);
    overflow: hidden;
}

.about-container {
    margin: 0 auto;
    padding: 0 60px;
}

.about-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.about-badge {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin: 0;
}

.about-right p {
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.8;
    margin: 0;
}

.about-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -60px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 5 - 100px));
    }
}

@media (max-width: 968px) {
    .about-container {
        padding: 0 20px;
    }
    
    .about-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-carousel {
        margin: 0 -20px;
    }
    
    .carousel-item {
        width: 300px;
        height: 220px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 5 - 100px));
        }
    }
}

.how-to-book {
    padding: 100px 0;
    background-color: #000000;
}

.how-to-book-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.how-to-book h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-item:hover .step-icon {
    transform: scale(1.08) rotate(3deg);
    background-color: #8d7242;
    box-shadow: 0 0 20px rgba(166, 135, 78, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: #a6874e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, box-shadow 0.4s ease;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.step-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.step-item:hover .step-arrow {
    transform: translateY(-50%) translateX(6px);
    color: #a6874e;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}

.step-item:last-child .step-arrow {
    display: none;
}

@media (max-width: 968px) {
    .how-to-book-container {
        padding: 0 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-arrow {
        top: auto;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }

    .step-item:hover .step-arrow {
        transform: translateX(50%) rotate(90deg) translateY(6px);
    }
}

/* ===================================
   FAQs SECTION
   =================================== */
.faqs {
    padding: 100px 0;
    background-color: var(--grey-100);
}

.faqs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faqs-left {
    position: sticky;
    top: 120px;
}

.faqs-badge {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.faqs-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faqs-left p {
    font-size: 16px;
    color: var(--grey-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    border-radius: 8px;
}

.btn-contact:hover {
    background-color: var(--grey-800);
    transform: translateX(4px);
}

.btn-contact svg {
    transition: var(--transition);
}

.btn-contact:hover svg {
    transform: translateX(4px);
}

.faqs-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--grey-300);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    color: var(--grey-700);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 24px 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-600);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 968px) {
    .faqs-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faqs-left {
        position: relative;
        top: 0;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 100px 0;
    background-color: #000000;
    margin: 10px;
    border-radius: 5px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-left > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item h4 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item p {
    font-size: 16px;
    color: var(--white);
    margin: 0;
}

.social-media h4 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: #a6874e;
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(166, 135, 78, 0.35);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .contact-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* ===================================
   SERVICES SECTION (CAROUSEL)
   =================================== */
.services-carousel-sec {
    padding: 120px 0;
    background-color: #fafafa;
    overflow: hidden;
}

.services-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-header-left {
    max-width: 700px;
}

.services-carousel-badge {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: #a6874e;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-carousel-header h2 {
    font-family: var(--font-body);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1.15;
    margin: 0;
}

.services-carousel-nav {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    color: var(--black);
    transition: var(--transition);
}

.carousel-nav-btn.active,
.carousel-nav-btn:hover {
    background-color: #a6874e;
    border-color: #a6874e;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(166, 135, 78, 0.25);
}

.services-carousel-wrapper {
    width: 100%;
    position: relative;
}

.services-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    -ms-overflow-style: none; /* Hide IE scrollbar */
    padding: 10px 0 40px;
}

.services-carousel-track::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbars */
}

.services-card {
    flex: 0 0 380px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(166, 135, 78, 0.08);
    border-color: rgba(166, 135, 78, 0.15);
}

.services-card-img {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
}

.services-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-card:hover .services-card-img img {
    transform: scale(1.05);
}

.services-card-info h3 {
    font-family: var(--font-body);
    font-size: 21px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.services-card-info p {
    font-size: 14px;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 67px;
}

.services-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.services-card-cta:hover {
    color: #a6874e;
}

.services-card-cta svg {
    transition: var(--transition);
}

.services-card-cta:hover svg {
    transform: translateX(4px);
}

.services-bottom-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-services-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: #a6874e;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    border-radius: 40px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-services-more:hover {
    background-color: #8d7242;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 135, 78, 0.3);
}

.btn-services-more svg {
    transition: var(--transition);
}

.btn-services-more:hover svg {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .services-carousel-container {
        padding: 0 20px;
    }

    .services-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-carousel-nav {
        align-self: flex-end;
    }

    .services-card {
        flex: 0 0 320px;
        padding: 20px;
    }

    @media (max-width: 480px) {
        .services-card {
            flex: 0 0 calc(100vw - 40px);
        }
    }

    .services-card-img {
        height: 200px;
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    padding: 80px 0;
    background-color: var(--grey-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--grey-600);
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 568px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects {
    padding: 100px 0;
    background-color: var(--white);
}

.projects h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 60px;
    text-align: center;
}

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

.project-card {
    background-color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.project-info p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 100px 0;
    background-color: var(--grey-100);
}

.services h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-item {
    background-color: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--black);
    transform: translateY(-5px);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #000000;
    padding: 60px 0 40px;
    color: var(--white);
    margin: 10px;
    border-radius: 5px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
}

.footer-links-grid a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

.scale-in {
    animation-name: scaleIn;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
    }
}
