/* Reset and Base Styles */
:root {
    --primary-color: #5d5648; /* Dark Olive/Brown */
    --secondary-color: #f7f5ed; /* Off White */
    --accent-color: #d4c4b7; /* Lighter Brown/Beige */
    --text-dark: #333333;
    --text-light: #ffffff;
    --btn-bg: var(--primary-color);
    --btn-text: var(--text-light);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 120px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    background-color: #f7f5ed;
}

.shutter-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-camera {
    font-size: 4rem;
    color: var(--secondary-color);
    animation: cameraFocus 2s infinite;
}

.shutter-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: flash 2s infinite;
    pointer-events: none;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 10px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes cameraFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes flash {
    0%, 80% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    85% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); box-shadow: 0 0 50px 20px #fff; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

.preloader-hidden {
    opacity: 0;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.bg-light {
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 86, 72, 0.4);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(250, 249, 246, 0.95); Removed to fix containing block issue */
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto; /* Center without transform */
    width: 90%;
    max-width: 1200px;
    /* border-radius: 50px; Moved to ::before */
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); Moved to ::before */
    z-index: 1000;
    /* backdrop-filter: blur(10px); Removed to fix containing block issue */
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: -1;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    width: 40%;
    justify-content: space-around;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above the slide menu */
    position: relative;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    clip-path: inset(0); /* Clips the fixed ::before to hero section only */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .hero-slide::before {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 300px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Mobile About Section */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        height: 250px;
        order: -1; /* Image first on mobile */
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-text {
        width: 100%;
        padding: 0 15px;
    }
}

/* Gallery Categories Layout */
.gallery-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-section {
    width: 100%;
}

.category-header {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-left: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-slider .gallery-item {
    min-width: 300px;
    height: 400px;
    scroll-snap-align: start;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .gallery-categories {
        gap: 0;
    }

    .category-slider {
        padding: 0;
        gap: 0;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .category-slider .gallery-item {
        min-width: 100vw;
        width: 100vw;
        height: auto;
        min-height: 60vh;
        max-height: 85vh;
        scroll-snap-align: center;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        flex-shrink: 0;
        margin: 0 10px;
        min-width: calc(100vw - 20px);
        width: calc(100vw - 20px);
    }
    
    .category-slider .gallery-item img {
        width: 100%;
        height: auto;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 15px;
    }
    
    .category-slider .gallery-item::after {
        display: none;
    }
    
    .category-header {
        display: none;
    }
    
    .category-section {
        margin-bottom: 50px;
        position: relative;
    }
    
    .category-label-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 60px 20px 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

.category-section {
    position: relative;
    width: 100%;
}

.category-label-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    z-index: 10;
    pointer-events: none;
    padding: 80px 20px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 70%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.category-label-overlay::before {
    content: '';
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.category-label-overlay::after {
    content: '';
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

/* Old styles kept for reference or cleanup */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Mobile: Show full image without cropping */
@media screen and (max-width: 768px) {
    .gallery-item img {
        height: auto;
        object-fit: contain;
    }
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay for shadow effect */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slide-label {
    display: none; /* Hide per-slide labels */
}

.gallery-label {
    display: none; /* Hide old label style */
}

/* .gallery-item:hover .gallery-label {
    transform: translateY(0);
} Removed hover effect */

/* Gear Section */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.gear-item {
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gear-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gear-item h3 {
    margin-bottom: 10px;
}

/* Inquiry Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border: 2px solid black;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    clip-path: inset(0); /* Clips the fixed ::before to this section only */
    color: var(--text-light);
    padding: 40px 0 20px;
}

.footer::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background set via inline style from PHP/admin panel */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .footer::before {
        background-size: cover !important;
        background-position: center center !important;
    }
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    margin-bottom: 20px;
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Scroll Animations */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 0.8rem 1.5rem;
        top: 15px;
    }

    .nav-links {
        position: fixed; /* Fixed to viewport for full height */
        right: 0;
        top: 0;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background-color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Start from top */
        padding-top: 100px; /* Space from top */
        width: 70%; /* Width of the sidebar */
        max-width: 300px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing */
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
        z-index: 1001; /* Ensure it is above the navbar */
        overflow-y: auto;
    }

    .nav-links li {
        margin: 8px 0;
        opacity: 0;
        width: 100%;
        text-align: center;
        transform: translateX(20px);
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 15px 20px;
        width: 100%;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a:hover,
    .nav-links a:active {
        background-color: rgba(0,0,0,0.05);
        color: var(--primary-color);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }
    
    /* Animate Links with stagger */
    .nav-links.nav-active li {
        animation: navLinkFade 0.4s ease forwards;
    }
    
    .nav-links.nav-active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.nav-active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.nav-active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.nav-active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.nav-active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.nav-active li:nth-child(6) { animation-delay: 0.35s; }

    .burger {
        display: block;
        z-index: 1002; /* Ensure it's above the slide menu */
    }

    .about-content {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    align-items: start;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Lightbox */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px); /* Modern blur effect */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100vh;
    padding: 0;
    animation: zoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#lightbox-img {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    display: block;
    transition: opacity 0.4s ease-in-out; /* Smooth fade transition */
    opacity: 1;
}

#lightbox-img.fade-out {
    opacity: 0;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    width: auto;
    background: rgba(0,0,0,0.6);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    z-index: 10002;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-lightbox:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.slideshow-btn {
    position: absolute;
    top: 20px;
    right: 90px;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.slideshow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 10001;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-caption {
    margin-top: 15px;
    text-align: center;
    color: #f1f1f1;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    width: 100%;
}

/* Responsive adjustments for Lightbox */
@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-top: -20px;
        background-color: rgba(0, 0, 0, 0.5); /* Darker bg for visibility on mobile */
    }
    
    .prev { left: 10px; }
    .next { right: 10px; }
    
    .close-lightbox {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 30px;
    }

    .slideshow-btn {
        top: 10px;
        right: 60px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Lightbox Loader */
.lightbox-loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    display: none;
    z-index: 10002;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Video Slider */
.video-slider-container,
.full-width-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-radius: 15px;
}

.video-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-slide,
.full-width-video-content {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.video-slide video,
.full-width-video-content video {
    width: 100%;
    height: 100%;
    min-height: 50vh; /* Ensure good height on mobile */
    max-height: 85vh;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

/* YouTube Embed Container */
.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: auto;
    white-space: nowrap;
    z-index: 5;
    pointer-events: none; /* Allows clicking through the label if needed */
}

.video-prev, .video-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s ease;
    border-radius: 50%;
    user-select: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    margin: 0 20px;
}

.video-prev {
    left: 0;
}

.video-next {
    right: 0;
}

.video-prev:hover, .video-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(93, 86, 72, 0.5);
}

@media screen and (max-width: 768px) {
    .video-slide video,
    .full-width-video-content video {
        min-height: auto;
        max-height: 60vh;
        height: auto;
        object-fit: contain;
    }
    
    .video-slider-container,
    .full-width-video {
        background: #000;
    }
    
    .video-label {
        font-size: 0.9rem;
        padding: 10px 20px;
        top: 15px;
        width: auto;
        max-width: 70%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .video-prev, .video-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 8px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
    }
    
    .video-prev:hover, .video-next:hover {
        background: rgba(0, 0, 0, 0.7);
    }
}

@media screen and (max-width: 480px) {
    .video-slide video,
    .full-width-video-content video {
        max-height: 50vh;
    }
    
    .video-label {
        font-size: 0.8rem;
        padding: 8px 16px;
        top: 10px;
        max-width: 60%;
        letter-spacing: 1px;
    }
    
    .video-prev, .video-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0 5px;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    overflow: hidden;
    clip-path: inset(0); /* Clips the fixed ::before to this section only */
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.stats-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background set via inline style from PHP/admin panel */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .stats-section::before {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .stats-section {
        padding: 30px 0;
    }
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    padding: 15px;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(var(--secondary-color), var(--accent-color));
    background: linear-gradient(var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item h3.counter {
    min-width: 80px;
    text-align: center;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Floating Connect Button */
.floating-connect {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.connect-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.connect-toggle-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.connect-toggle-btn .fa-times {
    display: none;
}

.floating-connect.active .connect-toggle-btn .fa-comments {
    display: none;
}

.floating-connect.active .connect-toggle-btn .fa-times {
    display: block;
}

.floating-connect.active .connect-toggle-btn {
    transform: rotate(180deg);
    background: #c0392b;
}

.connect-options {
    position: absolute;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-connect.active .connect-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.connect-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.connect-btn:hover {
    transform: scale(1.1);
}

.connect-btn.whatsapp {
    background: #25D366;
}

.connect-btn.instagram {
    background: #E1306C;
}


/* Desktop Gallery Styles */
@media screen and (min-width: 769px) {
    .category-section {
        margin-bottom: 60px;
        padding: 0 50px;
    }

    .category-label-overlay {
        display: none;
    }

    .category-slider {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        overflow: visible;
        padding: 0;
    }

    .category-slider .gallery-item {
        min-width: auto;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #f0ede8;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 4/3;
        height: auto;
    }

    .category-slider .gallery-item img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .category-slider .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    .category-slider .gallery-item::after {
        display: none;
    }
}

/* Desktop Lightbox Styles */
@media screen and (min-width: 769px) {
    .lightbox {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 40px;
    }

    .lightbox-content {
        width: auto;
        height: auto;
        max-width: 1200px;
        max-height: 90vh;
        padding: 0;
        position: relative;
        background: transparent;
        border-radius: 0;
    }

    #lightbox-img {
        max-width: 100%;
        max-height: 80vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 4px;
        box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    }

    .lightbox-caption {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 15px;
        background: transparent;
        padding: 5px 0;
        text-align: center;
        backdrop-filter: none;
        border-radius: 0;
        font-size: 1.1rem;
    }

    .close-lightbox {
        top: 30px;
        right: 40px;
        font-size: 50px;
        opacity: 0.8;
    }
    
    .close-lightbox:hover {
        opacity: 1;
        transform: rotate(90deg);
    }
    
    .lightbox .prev, .lightbox .next {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lightbox .prev:hover, .lightbox .next:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-50%) scale(1.1);
    }
    
    .lightbox .prev {
        left: 40px;
    }
    
    .lightbox .next {
        right: 40px;
    }
}

/* Reviews Section */
#reviews {
    background-color: var(--secondary-color);
    overflow: hidden;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.review-card {
    background: var(--secondary-color);
    width: 350px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid black;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header-text {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-style: italic;
}

.review-header-text i {
    font-size: 0.8rem;
    color: var(--accent-color);
    vertical-align: super;
}

.review-content {
    position: relative;
    margin-top: 20px;
}

.client-img-wrapper {
    position: absolute;
    top: -30px;
    left: 0;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.client-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-box {
    padding: 50px 20px 20px 20px;
    border-radius: 20px;
    border-top-left-radius: 60px;
    color: #fff;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Theme Colors for Cards */
.color-1 { background: linear-gradient(135deg, #5d5648, #4a443a); }
.color-2 { background: linear-gradient(135deg, #8c7b6c, #756658); }
.color-3 { background: linear-gradient(135deg, #a69688, #8f8073); }

.client-info h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.client-role {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.quote-inline {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0 5px;
}

/* Mobile Slider Logic */
@media screen and (max-width: 768px) {
    .reviews-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 40px;
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .reviews-container::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        flex: 0 0 85%;
        width: 85%;
        scroll-snap-align: center;
        margin-right: 0;
        margin-bottom: 0;
    }
}


/* Full Gallery Page Styles */
#full-gallery-container {
    padding-top: 20px;
}

.gallery-category-section {
    margin-bottom: 60px;
}

.gallery-category-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: capitalize;
}

.gallery-page-card {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #f0ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}

.gallery-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-page-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-page-card:hover img {
    transform: scale(1.1);
}

/* Gallery Card Label */
.gallery-card-label {
    display: none; /* Hidden on desktop by default */
}


/* Mobile Accordion Styles for Gallery */
/* Desktop Default Styles for Header */
.gallery-category-header {
    margin-bottom: 20px;
}

.gallery-category-header img {
    display: none; /* Hidden on desktop */
}

.gallery-category-header h3 {
    font-size: 2rem;
    color: #333;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: capitalize;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .gallery-category-header {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 15px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-category-header img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .gallery-category-header:hover img {
        transform: scale(1.02);
    }

    .gallery-category-header h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        color: white;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        text-align: center;
        border-bottom: none;
        font-size: 1.8rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        display: block; /* Override inline-block */
    }

    .gallery-category-section .categories-grid {
        display: none; /* Hidden by default on mobile */
        animation: fadeIn 0.5s ease;
        margin-top: 10px;
    }

    .gallery-category-section .categories-grid.active {
        display: grid; /* Show when active */
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Mobile Gallery Card - Full width single column with card view */
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 5px;
    }
    
    .gallery-page-card {
        aspect-ratio: unset;
        border-radius: 16px;
        background: #f8f6f3;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-page-card img {
        max-width: 100%;
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 12px;
    }
    
    /* Gallery Card Label - Mobile */
    .gallery-card-label {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        margin-top: 10px;
        background: linear-gradient(135deg, rgba(50, 50, 50, 0.95), rgba(30, 30, 30, 0.95));
        color: #fff;
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        border-radius: 10px;
        text-transform: capitalize;
    }
    
    .gallery-page-card:hover {
        transform: none;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .gallery-page-card:hover img {
        transform: none;
    }
    
    .gallery-category-section {
        margin-bottom: 30px;
    }
    
    .gallery-category-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .gallery-category-header {
        border-radius: 12px;
    }
    
    .gallery-category-header h3 {
        font-size: 1.3rem;
        padding: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr !important;
        padding: 0;
        gap: 16px;
    }
    
    .gallery-page-card {
        border-radius: 14px;
        aspect-ratio: unset;
        background: #f8f6f3;
        padding: 10px;
    }
    
    .gallery-page-card img {
        border-radius: 10px;
        width: 100%;
        height: auto;
    }
    
    .gallery-card-label {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 8px;
        margin-top: 8px;
    }
    
    .gallery-category-section {
        margin-bottom: 25px;
    }
    
    .gallery-category-title {
        font-size: 1.3rem;
    }
    
    /* Gallery section title padding fix */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}



/* Support Page Styles */
.support-header {
    padding-top: 120px;
    text-align: center;
}

.chat-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.chat-box {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    align-self: flex-start;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
    border: 1px solid #eee;
}

.user-message {
    align-self: flex-end;
    background: var(--primary-color);
    color: var(--text-light);
    border-bottom-right-radius: 5px;
}

.chat-input-area {
    padding: 15px;
    background: var(--secondary-color);
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-input-area button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

.quick-questions {
    padding: 10px 15px;
    background: var(--secondary-color);
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.quick-questions::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.quick-btn {
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.quick-btn:hover {
    background: var(--primary-color);
    color: #fff;
}



/* Support Page Refinements */
.support-hero {
    height: 60vh;
    min-height: 400px;
}

.chat-container {
    border: 1px solid rgba(0,0,0,0.05);
}

.chat-header {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chat-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    padding: 3px;
}

.chat-header-info {
    flex: 1;
    min-width: 0;
}

.chat-header-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-header-info span {
    font-size: 0.8rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4cd137;
    border-radius: 50%;
    display: inline-block;
}



/* Support Page Layout Improvements */
.support-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.support-info {
    flex: 1;
    min-width: 300px;
}

.support-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.support-info p {
    margin-bottom: 30px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.chat-wrapper {
    flex: 1.5;
    min-width: 350px;
}

/* Adjust Chat Container for Grid */
.support-layout .chat-container {
    margin: 0; /* Remove auto margin */
    max-width: 100%; /* Fill the column */
    height: 650px; /* Slightly taller */
}

/* Reduce Hero Height to save space */
.support-hero {
    height: 50vh; /* Reduced from 60vh */
    min-height: 350px;
}

@media (max-width: 768px) {
    .support-layout {
        flex-direction: column;
    }
    
    .support-info {
        padding-right: 0;
        order: 2;
    }
    
    .chat-wrapper {
        width: 100%;
        order: 1;
        min-width: unset;
    }
    
    .support-layout .chat-container {
        height: 500px;
    }
    
    .chat-header {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .chat-header img {
        width: 40px;
        height: 40px;
    }
    
    .chat-header-info h3 {
        font-size: 1rem;
    }
    
    .chat-header-info span {
        font-size: 0.75rem;
    }
    
    .chat-box {
        padding: 15px;
    }
    
    .chat-message {
        max-width: 90%;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .chat-input-area {
        padding: 10px;
    }
    
    .chat-input-area input {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .chat-input-area button {
        width: 40px;
        height: 40px;
    }
    
    .quick-questions {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .quick-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .support-info h2 {
        font-size: 1.5rem;
    }
    
    .info-item {
        gap: 15px;
        padding: 12px;
    }
    
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .support-page-section {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .support-layout {
        gap: 25px;
    }
    
    .support-layout .chat-container {
        height: 450px;
    }
    
    .chat-header {
        padding: 10px 12px;
    }
    
    .chat-header img {
        width: 35px;
        height: 35px;
    }
    
    .chat-header-info h3 {
        font-size: 0.9rem;
    }
    
    .chat-message {
        max-width: 95%;
        font-size: 0.85rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .support-info {
        min-width: unset;
    }
    
    .support-page-section {
        padding-top: 90px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
}



/* Support Page No-Hero Fix */
.support-page-section {
    padding-top: 140px; /* Clear the absolute navbar */
    min-height: 100vh;
}

/* Gallery Page No-Hero Fix */
.gallery-page-section {
    padding-top: 140px; /* Clear the absolute navbar */
    min-height: 100vh;
}

@media screen and (max-width: 768px) {
    .gallery-page-section {
        padding-top: 100px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-page-section {
        padding-top: 90px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
