:root {
    /* Color Palette */
    --clr-cream: #E6D5C3;
    --clr-gold: #B57F50;
    --clr-brown-mid: #8B5E3C;
    --clr-brown-deep: #5A2E2E;
    --clr-black: #000000;
    --clr-dark: #0a0a0a;

    /* Theme Tokens (Dark Mode Default) */
    --bg-main: var(--clr-black);
    --bg-secondary: var(--clr-dark);
    --bg-card: rgba(139, 94, 60, 0.1);
    /* Transparent brown */
    --border-card: rgba(181, 127, 80, 0.2);
    --text-main: var(--clr-cream);
    --text-muted: rgba(230, 213, 195, 0.7);
    --accent: var(--clr-gold);
    --accent-hover: var(--clr-brown-mid);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* General Tokens */
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 25px;
    --border-radius-md: 15px;
}

/* Light Mode Tokens */
body.light-mode {
    --bg-main: #fdfaf7;
    /* Soft cream background */
    --bg-secondary: var(--clr-cream);
    --bg-card: #ffffff;
    --border-card: var(--clr-cream);
    --text-main: var(--clr-brown-deep);
    --text-muted: var(--clr-brown-mid);
    --accent: var(--clr-brown-mid);
    --accent-hover: var(--clr-brown-deep);
    --shadow-soft: 0 10px 30px rgba(139, 94, 60, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.secondary-bg {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--clr-black);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(181, 127, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
    transform: translateY(-5px);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.6rem 1.5rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

body.light-mode header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

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

.logo a {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

header.scrolled .logo a {
    text-shadow: none;
    color: #222222;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}

.logo a:hover {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(181, 127, 80, 0.6);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    position: relative;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    /* Stronger shadow when transparent */
    transition: var(--transition);
}

header.scrolled .nav-links a {
    text-shadow: none;
    /* Cleaner look when background is solid */
    opacity: 0.8;
    color: #222222;
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
    opacity: 1;
    color: var(--clr-brown-deep);
    /* Use a darker brown/accent on light background */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(181, 127, 80, 0.6);
    /* Glow effect */
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent);
    /* Matched to footer/brand accent */
    transition: var(--transition);
}

header.scrolled .theme-toggle {
    filter: none;
    color: var(--clr-brown-deep);
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
    color: var(--clr-brown-deep);
    filter: drop-shadow(0 0 10px rgba(181, 127, 80, 0.4));
}

body.light-mode .theme-toggle {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #f1f1f1;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.hero .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.hero .btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-8px) translateX(-50%);
    }
}

/* About Section Redesign */
.about-flex-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card-image {
    width: 100%;
    height: 270px;
    /* Further reduced */
    overflow: hidden;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-card-content {
    padding: 1.8rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-content .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.about-card-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.booking-note {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(181, 127, 80, 0.1);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 auto;
}

/* Founder Card Horizontal */
.founder-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Narrower image column */
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
    padding: 1.5rem;
    /* Inner card padding */
    gap: 2.5rem;
    /* Space between image and text */
    align-items: center;
    /* Vertically center */
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.founder-image {
    width: 100%;
    height: 350px;
    /* Fixed height for consistency */
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.founder-info {
    padding: 0.5rem;
    /* Reduced since card has padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.founder-info .role {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.founder-info .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 4rem 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-card);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    background: var(--accent);
    transform: translateY(-15px);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
    color: var(--clr-black);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Gallery Section */
.gallery.section {
    padding: 4rem 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-card);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent);
    color: var(--clr-black);
    border-color: var(--accent);
}

.gallery-container {
    position: relative;
    height: 500px;
    /* Increased height for single image */
    max-width: 900px;
    /* Center and constrain width */
    margin: 0 auto;
}

.category-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
}

.category-slider.active {
    display: block;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    height: 100%;
}

.slider-item {
    flex: 0 0 100%;
    /* Only one image visible */
    height: 100%;
    padding: 0;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-card);
}

.slider-item img:hover {
    transform: scale(1.05);
    /* Hover zoom */
    border-color: var(--accent);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
    pointer-events: none;
}

.slider-nav button {
    background: rgba(181, 127, 80, 0.2);
    backdrop-filter: blur(5px);
    color: var(--accent);
    border: 1px solid var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(181, 127, 80, 0.2);
}

.slider-nav button:hover {
    background: var(--accent);
    color: var(--clr-black);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(181, 127, 80, 0.5);
    /* Glow effect */
}

.slider-nav button:hover {
    background: var(--accent);
    color: var(--clr-black);
    transform: scale(1.1);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-card);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent);
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    /* Ensure wrapping on small screens */
}

.social-links a {
    font-size: 1.4rem;
    background: rgba(181, 127, 80, 0.1);
    /* Subtle accent tint */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(181, 127, 80, 0.2);
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(181, 127, 80, 0.25);
    border-color: var(--accent);
}

.contact-form form {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(181, 127, 80, 0.05);
}

.btn.full-width {
    width: 100%;
    border-radius: 12px;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #222222;
}

body.light-mode footer {
    background-color: #ffffff;
}

.footer-about .logo a {
    color: #222222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about p {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #555555;
}

header.scrolled .menu-toggle {
    color: #222222;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--accent);
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: #555555;
    font-size: 1.1rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #777777;
    font-size: 0.95rem;
}

.footer-bottom .credit {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom .credit a {
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom .credit a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }

    .hero h1 {
        font-size: 5rem;
    }
}


/* Removed tablet specific slider override */

@media (max-width: 992px) {
    .about-flex-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-card {
        grid-template-columns: 1.2fr 1.8fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    header {
        padding: 1.2rem 0;
    }

    nav.container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .logo a {
        font-size: 1.4rem !important;
        /* Adjusted for one-line fit */
        white-space: nowrap;
        display: block;
    }

    .theme-toggle {
        display: none !important;
        /* Removed from mobile */
    }

    .nav-controls {
        display: flex;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 2000;
    }

    .menu-toggle {
        display: block;
        z-index: 2001;
    }

    .hero {
        padding-top: 0;
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Reduced to fit screen */
        line-height: 1.1;
        width: 100%;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        margin-left: 0 !important;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
        /* Reduced vertical whitespace */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .slider-item {
        flex: 0 0 100%;
    }

    .gallery-container {
        height: 350px;
        max-width: 100%;
        overflow: hidden;
    }

    /* About Section Mobile Fix */
    .about-card {
        padding: 20px 15px;
    }

    .about-card-content {
        text-align: center;
        padding: 1.5rem 0 0;
    }

    .about-card-content .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-card-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .booking-note {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    /* Founder Section Mobile Fix */
    .founder-card {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .founder-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .founder-image img {
        border-radius: 50%;
        object-fit: cover;
    }

    .founder-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .founder-info .role {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .founder-info .description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    /* Services Section Mobile Fix */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 15px;
    }

    .service-card {
        width: 100%;
        padding: 25px 20px;
        text-align: center;
        height: auto;
        min-height: unset;
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        display: block;
        width: 100%;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Gallery Section Mobile Fix */
    .gallery-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 2rem;
    }

    .tab-btn {
        width: 100%;
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        margin: 0 !important;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 45px;
    }

    .tab-btn:last-child:nth-child(odd) {
        grid-column: 1 / span 2;
        width: 50%;
        justify-self: center;
    }

    .category-slider {
        position: relative;
        padding-bottom: 0;
    }

    .slider-track img {
        width: 100%;
        border-radius: 15px;
        object-fit: cover;
    }

    /* Navigation Arrow Fix */
    .slider-nav {
        position: absolute;
        bottom: 12px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 12px;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        top: auto !important;
        transform: none;
        z-index: 20;
    }

    /* GLASS DESIGN */
    .prev-btn,
    .next-btn {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.25) !important;
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        color: #fff !important;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        transition: all 0.3s ease;
        opacity: 0.9;
        position: relative;
        left: auto;
        right: auto;
    }

    .prev-btn::after,
    .next-btn::after {
        content: none;
    }

    /* HOVER/ACTIVE STATE */
    .prev-btn:active,
    .next-btn:active {
        background: var(--accent) !important;
        color: #000 !important;
        transform: scale(0.95);
    }

    /* Contact Section Mobile Fix */
    #contact {
        padding: 4rem 15px;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contact-info h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        background: rgba(181, 127, 80, 0.05);
        padding: 14px 16px;
        border-radius: 12px;
        width: 100%;
        gap: 12px;
        border: 1px solid rgba(181, 127, 80, 0.1);
    }

    .info-item i {
        font-size: 20px;
        color: var(--accent);
        min-width: 24px;
        text-align: center;
    }

    .info-item p,
    .info-item a {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
        margin: 0;
        color: var(--text-main);
    }

    .social-links.large {
        justify-content: center;
        margin-top: 1.5rem;
        gap: 15px;
        width: 100%;
    }

    .social-links.large a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        background: rgba(181, 127, 80, 0.1);
        border-color: rgba(181, 127, 80, 0.2);
    }

    /* Form Section Mobile Fix */
    .contact-form {
        padding: 0;
        margin-top: 1rem;
    }

    .contact-form h3 {
        display: none;
        /* Hide redundant title if necessary */
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
        border-radius: 8px;
        width: 100%;
    }

    .contact-form .btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 10px;
        margin-top: 5px;
    }

    /* Common Spacing Fix */
    .about-flex-container,
    .contact-grid {
        gap: 2.5rem;
    }

    footer {
        padding: 3rem 16px 1.5rem;
        width: 100%;
        overflow-x: hidden;
        text-align: center;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer-about,
    .footer-links,
    .footer-social {
        width: 100%;
    }

    .footer-about .logo {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding: 0;
    }

    .footer-social .social-links {
        justify-content: center;
        gap: 16px;
        margin-top: 10px;
    }

    .footer-bottom {
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }
}

/* MOBILE NAV DEFAULT HIDDEN */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: #f5ede6;
    z-index: 9999;
    transition: 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

/* ACTIVE STATE */
.mobile-nav.active {
    left: 0;
}

/* HEADER INSIDE SIDEBAR */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-nav-header h2 {
    font-size: 18px;
    color: #000;
}

#close-menu {
    font-size: 20px;
    cursor: pointer;
}

/* NAV LINKS */
.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    background: #f1e7dd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}

/* DARK MODE BUTTON */
.mobile-dark {
    margin-top: 30px;
    padding: 15px;
    background: #f1e7dd;
    border-radius: 12px;
}

/* HEADER */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box i {
    font-size: 20px;
    color: #a97142;
}

.logo-box h2 {
    font-size: 16px;
    line-height: 1.2;
}

.logo-box span {
    color: #a97142;
}

/* CLOSE BUTTON */
#close-menu i {
    font-size: 18px;
    cursor: pointer;
}

/* LINKS */
.mobile-links {
    margin-top: 20px;
    padding: 0;
}

.mobile-links li {
    list-style: none;
    margin-bottom: 12px;
}

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2d5c6;
    background: #f7efe7;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

/* ICON COLOR */
.mobile-links a i {
    color: #a97142;
}

/* HOVER */
.mobile-links a:hover {
    background: #a97142;
    color: #fff;
}

.mobile-links a:hover i {
    color: #fff;
}

/* DARK MODE */
.mobile-dark {
    margin-top: 25px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2d5c6;
    background: #f7efe7;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* MOBILE NAV (THEME COMPATIBLE) */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 9999;
    transition: 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

/* ACTIVE */
.mobile-nav.active {
    left: 0;
}

/* HEADER */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 15px;
}

.logo-box h2 {
    color: var(--text-main);
}

.logo-box span {
    color: var(--accent);
}

/* CLOSE ICON */
#close-menu i {
    color: var(--text-main);
}

/* LINKS */
.mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

/* ICON COLOR */
.mobile-links a i {
    color: var(--accent);
}

/* HOVER */
.mobile-links a:hover {
    background: var(--accent);
    color: var(--clr-black);
}

.mobile-links a:hover i {
    color: var(--clr-black);
}

/* DARK MODE BUTTON */
.mobile-dark {
    margin-top: 25px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

/* DARK MODE HOVER */
.mobile-dark:hover {
    background: var(--accent);
    color: var(--clr-black);
}
/* =========================
   DARK MODE HEADER FIX ONLY
========================= */

body:not(.light-mode) header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo */
body:not(.light-mode) .logo a {
    color: var(--text-main);
    text-shadow: none;
}

/* Nav links */
body:not(.light-mode) .nav-links a {
    color: var(--text-main);
    text-shadow: none;
    opacity: 0.85;
}

body:not(.light-mode) .nav-links a:hover,
body:not(.light-mode) .nav-links a.active {
    color: var(--accent);
}

/* Hamburger */
body:not(.light-mode) .menu-toggle {
    color: var(--text-main);
}/* =========================
   DARK MODE FOOTER FIX ONLY
========================= */

body:not(.light-mode) footer {
    background: #0a0a0a;
    color: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Text */
body:not(.light-mode) .footer-about p,
body:not(.light-mode) .footer-links a,
body:not(.light-mode) .footer-bottom {
    color: var(--text-muted);
}

/* Headings */
body:not(.light-mode) .footer-links h4,
body:not(.light-mode) .footer-social h4 {
    color: var(--accent);
}

/* Icons */
body:not(.light-mode) .social-links a {
    background: rgba(181, 127, 80, 0.1);
    border: 1px solid rgba(181, 127, 80, 0.2);
    color: var(--accent);
}

body:not(.light-mode) .social-links a:hover {
    background: var(--accent);
    color: #000;
}/* FIX TRANSPARENT HEADER ISSUE */
body:not(.light-mode) header.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
}
/* =========================
   MOBILE NAV DARK MODE ONLY
========================= */

body:not(.light-mode) .mobile-nav {
    background: #000;
    color: #fff;
}

/* Header */
body:not(.light-mode) .mobile-nav-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

body:not(.light-mode) .logo-box i {
    color: var(--accent);
}

body:not(.light-mode) .logo-box h2 {
    color: #fff;
}

body:not(.light-mode) .logo-box span {
    color: var(--accent);
}

/* Close icon */
body:not(.light-mode) #close-menu i {
    color: #fff;
}


/* =========================
   LINKS (CARDS)
========================= */

body:not(.light-mode) .mobile-links a {
    background: rgba(181, 127, 80, 0.08);
    border: 1px solid rgba(181, 127, 80, 0.2);
    color: #fff;
    transition: 0.3s ease;
}

body:not(.light-mode) .mobile-links a i {
    color: var(--accent);
}

/* Hover */
body:not(.light-mode) .mobile-links a:hover {
    background: var(--accent);
    color: #000;
}

body:not(.light-mode) .mobile-links a:hover i {
    color: #000;
}


/* =========================
   DARK MODE BUTTON
========================= */

body:not(.light-mode) .mobile-dark {
    background: rgba(181, 127, 80, 0.15);
    border: 1px solid rgba(181, 127, 80, 0.3);
    color: var(--accent);
    transition: 0.3s ease;
}

body:not(.light-mode) .mobile-dark i {
    color: var(--accent);
}

body:not(.light-mode) .mobile-dark:hover {
    background: var(--accent);
    color: #000;
}

body:not(.light-mode) .mobile-dark:hover i {
    color: #000;
}
/* =========================
   FINAL MOBILE NAV DARK FIX
========================= */

body:not(.light-mode) .mobile-nav {
    background: var(--bg-main);
}

/* Links (cards) */
body:not(.light-mode) .mobile-links a {
    background: rgba(181, 127, 80, 0.12);
    border: 1px solid rgba(181, 127, 80, 0.25);
    color: var(--text-main);
}

/* Icons */
body:not(.light-mode) .mobile-links a i {
    color: var(--accent);
}

/* Hover (premium feel) */
body:not(.light-mode) .mobile-links a:hover {
    background: var(--accent);
    color: #000;
}

body:not(.light-mode) .mobile-links a:hover i {
    color: #000;
}

/* Dark button */
body:not(.light-mode) .mobile-dark {
    background: rgba(181, 127, 80, 0.2);
    border: 1px solid rgba(181, 127, 80, 0.3);
    color: var(--accent);
}

body:not(.light-mode) .mobile-dark:hover {
    background: var(--accent);
    color: #000;
}



/* =========================
   MOBILE NAV PURE BLACK THEME
========================= */

body:not(.light-mode) .mobile-nav {
    background: #000 !important;
}


/* HEADER */
body:not(.light-mode) .mobile-nav-header {
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

body:not(.light-mode) .logo-box h2 {
    color: #fff !important;
}

body:not(.light-mode) .logo-box span {
    color: #B57F50 !important;
}

body:not(.light-mode) .logo-box i {
    color: #B57F50 !important;
}


/* =========================
   CARDS (NOW DARK 🔥)
========================= */

body:not(.light-mode) .mobile-links a {
    background: #111 !important;  /* DARK CARD */
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* ICON */
body:not(.light-mode) .mobile-links a i {
    color: #B57F50 !important;
}


/* HOVER (GOLD EFFECT) */
body:not(.light-mode) .mobile-links a:hover {
    background: #B57F50 !important;
    color: #000 !important;
}

body:not(.light-mode) .mobile-links a:hover i {
    color: #000 !important;
}


/* =========================
   DARK MODE BUTTON
========================= */

body:not(.light-mode) .mobile-dark {
    background: #111 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #B57F50 !important;
}

/* HOVER */
body:not(.light-mode) .mobile-dark:hover {
    background: #B57F50 !important;
    color: #000 !important;
}/* =========================
   REMOVE WHITE WRAPPER (FINAL FIX)
========================= */

/* Outer card wrapper (the white box) */
body:not(.light-mode) .mobile-links li {
    background: #111 !important;   /* dark outer */
    border-radius: 14px;
    padding: 6px;                 /* spacing around inner card */
}

/* Inner card */
body:not(.light-mode) .mobile-links a {
    background: #000 !important;  /* inner pure black */
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 10px;
}


/* OPTIONAL — subtle depth */
body:not(.light-mode) .mobile-links li {
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}