@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    /* Color Palette - Premium "Royal & Realistic" */
    --color-maroon: #4a0404;
    /* Deep Garnet - More professional than pinkish maroon */
    --color-maroon-dark: #2a0000;
    /* Richer Depth */

    --color-gold: #b38b37;
    /* Antique Matte Gold - Realistic, not neon yellow */
    --color-gold-light: #e6dcc3;
    /* Champagne Tone */

    --color-beige: #faf7f2;
    /* Clean Ivory Background */
    --color-blush: #f4e4e4;
    /* Muted Rose - Sophisticated */

    --color-text-main: #1c1c1c;
    /* Soft Charcoal Black - Better for reading */
    --color-text-light: #f5f5f5;

    --color-white: #ffffff;
    --color-black: #000000;
    --color-whatsapp: #25D366;

    /* Typography - Fluid Sizes */
    --fs-h1: clamp(2rem, 6vw, 3.8rem);
    --fs-h2: clamp(1.6rem, 5vw, 2.5rem);
    --fs-h3: clamp(1.3rem, 4vw, 1.8rem);
    --fs-h4: clamp(1.2rem, 3vw, 1.8rem);
    --fs-p: clamp(1rem, 1.2vw, 1.2rem);
    --fs-ui: clamp(0.9rem, 1vw, 1.1rem);

    /* Typography Families */
    --font-heading: 'Cinzel', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text-main);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    letter-spacing: 0.3px;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

/* Typography Refinement for Next-Level Luxury */

/* 1. Headings: Regal & Authoritative */
h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.footer-col h3,
.cat-content h3,
.product-title,
.modal-title,
.section-header h2 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-maroon);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: var(--fs-h1);
    letter-spacing: 5px;
    font-weight: 800;
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

/* 2. Body Text & Paragraphs */
body,
li,
div,
input,
textarea,
p {
    font-family: var(--font-accent) !important;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-size: var(--fs-p);
}

p {
    margin-bottom: 1.5rem;
    color: #333;
}

/* 3. Accents: The "Next Level" Touch (Italicized Serif) */
.hero p,
.section-header p,
.modal-subtitle,
.footer-col p {
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.hero p {
    color: #f0f0f0;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* 4. UI Elements: Functional & Geometric (Buttons, Nav) */
.nav-links a,
.btn,
.header-cta,
button,
.footer-col a,
.filter-btn {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--fs-ui);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.store-info-text {
    margin-left: 25px;
    color: #555;
    font-size: var(--fs-p);
}

.owner-position {
    color: var(--color-gold);
    font-size: var(--fs-ui);
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--font-body) !important;
}

.owner-intro-text {
    font-size: var(--fs-p);
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .container {
        width: 92%;
        padding: 0 1rem;
    }

    .store-info-text {
        margin-left: 0;
        text-align: center;
    }
}

.section {
    overflow-x: hidden;
    padding: var(--spacing-xl) 0;
}

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    width: 100%;
}

.loading-state i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.loading-state p {
    color: #666;
    font-size: var(--fs-p);
}

.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    font-family: var(--font-heading) !important;
    font-weight: 700;
    font-size: var(--fs-ui);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-maroon);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--color-maroon);
    color: var(--color-white);
    border-color: var(--color-maroon);
}

.btn-primary:hover {
    background: var(--color-maroon-dark);
    border-color: var(--color-maroon-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.5rem 0;
    background: #000000;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0 4%;
}

@media (max-width: 1024px) {
    nav {
        gap: 1rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: 3rem;
    flex-grow: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Ensure mobile-specific elements are hidden on desktop */
.mobile-cta,
.mobile-search-trigger,
.mobile-toggle {
    display: none !important;
}

.logo img {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    /* Pure circular logo to hide the box */
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--color-gold);
    /* Royal gold frame */
    padding: 2px;
    background: #000;
}

header.scrolled .logo img {
    height: 55px;
    width: 55px;
}

.logo:hover img {
    transform: scale(1.05);
    /* Simple zoom instead of rotate */
}

/* Hide text if it accidentally remains or for accessibility text hiding techniques if needed */
.mobile-search-trigger {
    display: none;
}

.mobile-toggle {
    display: none;
}

.logo span {
    display: none;
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 2vw, 3rem);
}

.nav-links a {
    font-size: 1rem;
    /* Increased size */
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    color: #ffffff;
    /* White text for black header */
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
    /* Gold on hover */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-gold);
    /* Gold toggle icon */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Side Social Bar */
.side-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0.4rem;
    border-radius: 0 10px 10px 0;
    border: 1px solid rgba(179, 139, 55, 0.4);
    border-left: none;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    /* Entrance Animation */
    animation: sideBarSlideOut 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 1s;
    /* Wait for preloader */
    opacity: 0;
    pointer-events: auto;
}

@keyframes sideBarSlideOut {
    from {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.social-side-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.3rem 0;
    text-decoration: none;
    /* Pop Animation */
    opacity: 0;
    transform: scale(0);
    animation: iconPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes iconPopIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Staggered Delay for Icons */
.social-side-link:nth-child(1) {
    animation-delay: 1.5s;
}

.social-side-link:nth-child(2) {
    animation-delay: 1.6s;
}

.social-side-link:nth-child(3) {
    animation-delay: 1.7s;
}

.social-side-link:nth-child(4) {
    animation-delay: 1.8s;
}

.social-side-link:nth-child(5) {
    animation-delay: 1.9s;
}

.social-side-link i {
    transition: transform 0.3s ease;
}

.social-side-link:hover {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(179, 139, 55, 0.4);
}

.social-side-link:hover i {
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .side-social-bar {
        display: flex !important;
        width: 48px;
    }

    .hero-content,
    section.section,
    footer,
    .page-header {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    /* Systemic Mobile Content Fix - Refined */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 15px !important;
    }

    /* Global Typography Refinement for Mobile */
    /* Handled by clamp() in root, only adding overrides where necessary */

    .hero h1 {
        line-height: 1.1;
    }

    .hero p {
        margin-bottom: 2rem !important;
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
        font-size: 0.9rem !important;
    }

    /* Compact Side Bar for Mobile */
    .side-social-bar {
        width: 40px !important;
        padding: 0.5rem 0.2rem !important;
        display: flex !important;
    }

    .social-side-link {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
        margin: 0.2rem auto !important;
    }

    body {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix Header Alignment */
    header .container {
        padding-left: 5% !important;
        padding-right: 5% !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
}

.float-btn {
    width: 55px;
    height: 55px;
    /* Bigger buttons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Pulse removed as WhatsApp moved to side bar */
.float-top {
    background-color: var(--color-maroon);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse-maroon 2s infinite;
    /* Maroon Pulse */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-maroon {
    0% {
        box-shadow: 0 0 0 0 rgba(93, 0, 30, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(93, 0, 30, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(93, 0, 30, 0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Dark Overlay for better text contrast - KEY FIX */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Removed brightness filter as overlay handles it better */
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    z-index: 2;
    max-width: 1200px;
    padding: clamp(1.5rem, 5vw, 4rem);
    animation: fadeUp 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: var(--fs-h1);
    color: var(--color-white);
    margin-bottom: clamp(1rem, 3vh, 2rem);
    line-height: 1.15;
    letter-spacing: clamp(2px, 1vw, 5px);
    font-weight: 800;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
    word-wrap: break-word;
}

.hero p {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    margin-bottom: 3.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-gold-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



@media (max-width: 768px) {
    .hero {
        height: 85vh;
        /* Shorter on mobile */
    }

    .hero h1 {
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .hero p {
        margin-bottom: 2.5rem;
    }

    .hero .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        letter-spacing: 2px;
    }

    .hero .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Specific styling for hero buttons to pop */
.hero .btn {
    margin: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero .btn:not(.btn-primary) {
    background-color: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white bg */
    backdrop-filter: blur(5px);
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero .btn:not(.btn-primary):hover {
    background-color: var(--color-white);
    color: var(--color-maroon);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--color-maroon);
}

.section-header p {
    font-family: var(--font-accent);
    color: #666;
    font-style: italic;
}

/* Creative Page Header for Inner Pages */
.page-header {
    background: var(--color-maroon-dark);
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(5rem, 10vh, 8rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: radial-gradient(circle at center, #4a0404 0%, #1e0000 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%23b38b37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(179, 139, 55, 0.08) 0%, transparent 50%);
    animation: flareMove 15s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes flareMove {

    0%,
    100% {
        transform: translate(-10%, -10%);
    }

    50% {
        transform: translate(10%, 10%);
    }
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: heroFadeUp 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.page-header p {
    font-size: 1.65rem;
    max-width: 850px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-accent);
    font-style: italic;
    line-height: 1.6;
    animation: heroFadeUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.2s both;
}

@media (max-width: 1024px) {
    .page-header h1 {
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }

    .page-header h1 {
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-label::before,
    .page-label::after {
        width: 30px;
    }

    .page-label::before {
        left: -40px;
    }

    .page-label::after {
        right: -40px;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-label {
    display: inline-block;
    font-family: var(--font-heading) !important;
    color: var(--color-gold) !important;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    position: relative;
    padding: 0 clamp(10px, 3vw, 25px);
    margin-bottom: 1.5rem;
    animation: heroFadeUp 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.page-label::before,
.page-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: clamp(20px, 5vw, 40px);
    height: 1.5px;
    background: var(--color-gold);
}

.page-label::before {
    left: clamp(-50px, -6vw, -30px);
}

.page-label::after {
    right: clamp(-50px, -6vw, -30px);
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 5rem;
    }
}

/* Footer */
footer {
    background-color: #000000;
    color: var(--color-white);
    padding: 6rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(179, 139, 55, 0.2);
    /* Subtle gold top border */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-col h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col a {
    font-size: 1.1rem;
    /* Increased size */
    font-weight: 700;
    /* Bold */
    color: #ddd;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.footer-col a:hover {
    color: var(--color-gold);
    padding-left: 5px;
    /* Slight movement on hover */
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.category-card {
    position: relative;
    height: 500px;
    /* Taller for cinematic feel */
    overflow: hidden;
    border-radius: 2px;
    /* Sharp, premium corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-gold);
    /* Subtle gold frame on hover */
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.category-card:hover img {
    transform: scale(1.15);
    /* Smooth, slow zoom */
}

/* Cinematic Gradient Overlay */
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    /* Covers bottom half */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 60%, transparent);
    z-index: 1;
    opacity: 0.9;
    transition: opacity 0.5s ease;
}

.category-card:hover::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(42, 0, 14, 0.95), rgba(93, 0, 30, 0.6) 70%, transparent);
    /* Shifts to Maroon tint */
}

/* Content Interactions */
.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.category-card:hover .cat-content {
    transform: translateY(0);
}

.cat-content h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    border-bottom: 2px solid transparent;
    display: block;
    /* Force new line */
    width: 100%;
    padding-bottom: 10px;
    transition: border-color 0.4s ease;
}

.category-card:hover .cat-content h3 {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    /* Delayed entrance */
    font-family: 'Cinzel', serif !important;
}

.category-card:hover .cat-link {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-white);
}

.cat-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cat-link:hover i {
    transform: translateX(8px);
    color: var(--color-gold);
}

/* Text Visibility Fixes for Dark Backgrounds */
.section-dark,
footer {
    color: var(--color-text-light) !important;
}

.section-dark p,
footer p,
.section-dark li,
footer li {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-dark h2,
footer h3 {
    color: var(--color-gold) !important;
}

.section-dark .btn:not(.btn-primary) {
    border-color: var(--color-white);
    color: var(--color-white);
}

.section-dark .btn:not(.btn-primary):hover {
    background: var(--color-white);
    color: var(--color-maroon);
}

.footer-col i {
    color: var(--color-gold);
    margin-right: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: var(--color-gold);
}

/* Header CTA Button - Right Side Attraction */
.header-cta {
    font-size: 0.95rem;
    /* Increased from 0.8rem */
    padding: 0.7rem 1.8rem;
    /* Slightly larger padding */
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    border-radius: 50px;
    font-weight: 700;
    /* Bold */
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-family: 'Cinzel', serif !important;
    /* Premium Heading Font */
}

.header-cta:hover {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
}

@media (max-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.footer-link-email {
    color: #ddd;
    text-decoration: none;
    font-family: var(--font-body) !important;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.copyright p {
    font-family: var(--font-body) !important;
    font-size: 0.9rem;
}

/* Header Search Styles */
.header-search {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    margin-right: 0;
    flex-shrink: 0;
}

.search-container {
    position: relative;
    width: 280px;
}

.search-container input {
    width: 100%;
    padding: 0.7rem 5.5rem 0.7rem 1rem;
    border: 2px solid rgba(179, 139, 55, 0.3);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-container input:focus {
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(179, 139, 55, 0.2);
}

.search-mic-btn {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--color-gold);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.search-mic-btn:hover {
    opacity: 1;
    background: rgba(179, 139, 55, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.search-mic-btn i {
    font-size: 1rem;
}

/* Mic Active State (Listening) */
.search-mic-btn.listening {
    color: #ff4444;
    animation: pulse-mic 1.5s infinite;
    opacity: 1;
}

@keyframes pulse-mic {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    70% {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }

    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(179, 139, 55, 0.4);
}

.search-btn i {
    font-size: 0.9rem;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 600px;
    background: rgba(10, 0, 0, 0.98);
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    padding: 1rem;
}

.search-suggestions.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Header */
.search-header {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(179, 139, 55, 0.2);
}

/* Product Card in Search */
.search-product-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 0.8rem;
}

.search-product-card:last-child {
    margin-bottom: 0;
}

.search-product-card:hover {
    background: rgba(179, 139, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.search-product-img {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.search-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.search-product-category {
    color: var(--color-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.search-product-title {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.search-product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.search-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-view-btn:hover {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 139, 55, 0.3);
}

.search-view-btn i {
    font-size: 0.7rem;
}

.search-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-maroon);
    border: 1px solid var(--color-maroon);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-enquire-btn:hover {
    background: var(--color-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 0, 30, 0.3);
}

.search-enquire-btn i {
    font-size: 0.7rem;
}

/* View All Items Button */
.search-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-gold);
    border: none;
    color: var(--color-maroon-dark);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.search-view-all-btn:hover {
    background: var(--color-gold-light);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(179, 139, 55, 0.4);
}

.search-view-all-btn i {
    font-size: 0.9rem;
}

/* No Results */
.search-no-results {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-no-results i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.search-no-results p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.search-no-results small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Custom Scrollbar for Suggestions */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

@media (max-width: 1024px) {
    .search-suggestions {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid rgba(179, 139, 55, 0.2);
        margin: 0;
    }

    .header-search.mobile-active {
        display: block;
    }

    .search-container {
        width: 100%;
    }

    .search-suggestions {
        width: 100%;
        max-height: 65vh;
        overflow-y: auto;
        padding: 0;
        background: #0f0f0f;
        /* Deep solid dark background */
        border-bottom: 2px solid var(--color-gold);
    }

    /* Target the popular text specifically if it has a class, or generic text */
    .search-header {
        padding: 12px 15px;
        font-size: 0.8rem;
        color: var(--color-gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        background: #050505;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: sticky;
        top: 0;
        z-index: 10;
        font-weight: 600;
    }

    .search-product-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 15px;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: transparent;
    }

    .search-product-card:last-child {
        border-bottom: none;
    }

    .search-product-img {
        width: 70px;
        height: 90px;
        /* Slight portrait for fashion */
        flex-shrink: 0;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .search-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .search-product-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 2px;
    }

    .search-product-category {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: var(--color-gold);
        margin-bottom: 5px;
        font-weight: 500;
        opacity: 1;
    }

    .search-product-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.15rem;
        /* Larger and clearer */
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .search-product-actions {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .search-view-btn,
    .search-enquire-btn {
        flex: 1;
        display: flex;
        /* Enforce flex for centering */
        align-items: center;
        justify-content: center;
        gap: 8px;
        /* Clean gap between icon and text */
        padding: 10px 0;
        /* Comfortable touch target */
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
        /* Premium feel */
        text-align: center;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-weight: 600;
        /* Readable bold text */
        cursor: pointer;
    }

    .search-view-btn {
        background: rgba(255, 255, 255, 0.08);
        /* Subtle glass effect */
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
    }

    .search-enquire-btn {
        background: var(--color-gold);
        border: 1px solid var(--color-gold);
        color: #000;
        /* High contrast */
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
        /* Soft glow */
    }
}

/* Base style to hide mobile logo on desktop */
.mobile-menu-logo {
    display: none;
}


@media (max-width: 768px) {

    /* Mobile Navigation - Premium Full Screen Drawer */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 0 4rem 0;
        /* Add bottom padding for safety */
        z-index: 10000;
        /* Dominates floating actions (9999) */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(179, 139, 55, 0.1);
        overflow-y: auto;
        overflow-x: hidden;
        /* Prevent horizontal scroll inside drawer */
    }

    /* Active State (Slide In) */
    .nav-links.active {
        transform: translateX(0);
    }

    /* Sticky Mobile Logo Header - Dark Theme */
    .mobile-logo-container {
        position: sticky;
        top: 0;
        z-index: 20;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        /* Dark background matching drawer */
        backdrop-filter: blur(10px);
        padding: 0.8rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid rgba(179, 139, 55, 0.2);
        /* Subtle Gold Border */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        margin-bottom: 1.5rem;
    }

    /* Mobile Menu Logo styling - Enhanced for Dark BG */
    .mobile-menu-logo {
        height: 50px;
        /* Constrained Height */
        width: auto;
        display: block;
        flex-shrink: 0;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
        /* Subtle glow */
    }

    /* Links Styling */
    .nav-links a {
        display: block;
        margin: 1rem 0;
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        /* Balanced size */
        color: var(--color-white);
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        position: relative;
    }

    /* Hover/Active Effect on Links */
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-gold);
        transform: scale(1.05);
        text-shadow: 0 0 10px rgba(179, 139, 55, 0.4);
    }

    /* Staggered Animation for Links when Menu Opens */
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay each link slightly for waterfall effect */
    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(6) {
        transition-delay: 0.35s;
    }

    /* CTA */

    /* Mobile Search Overlay styling */
    .header-search {
        display: none;
        position: fixed;
        top: 70px;
        /* Adjusted */
        left: 0;
        width: 100%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid var(--color-gold);
        z-index: 1002;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .header-search.mobile-active {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }

    /* Ensure header actions are aligned */
    /* Mobile Header Layout Enhancements */
    header {
        padding: 1rem 0 !important;
        /* Fixed padding for consistency */
        transition: all 0.4s ease-in-out;
    }

    header.scrolled {
        padding: 0.5rem 0 !important;
        /* Shrink padding on scroll */
        background: rgba(0, 0, 0, 0.95);
        /* Ensure dark bg */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .logo img {
        height: 60px !important;
        width: 60px !important;
        border-radius: 50% !important;
        border: 1.5px solid var(--color-gold) !important;
        object-fit: cover !important;
        background: #000 !important;
        padding: 2px !important;
        transition: all 0.4s ease-in-out;
    }

    header.scrolled .logo img {
        height: 50px !important;
        width: 50px !important;
    }

    /* Ensure header actions are aligned and ON TOP */
    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /* Align to right */
        gap: 0.5rem;
        /* Tighter on mobile */
        height: 50px;
        position: relative;
        z-index: 10002;
        flex: 0 0 auto;
        /* Don't grow or shrink */
    }

    nav {
        gap: 0.5rem !important;
        /* Tighter gap between logo and actions */
    }

    header {
        background: #000000 !important;
        /* Always solid on mobile for better visibility */
    }

    .mobile-search-trigger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        color: var(--color-gold);
        cursor: pointer;
        padding: 0;
        transition: transform 0.3s;
        border-radius: 50%;
        background: transparent;
        flex-shrink: 0 !important;
    }

    .mobile-search-trigger:active {
        transform: scale(0.9);
        background: rgba(179, 139, 55, 0.1);
    }

    .search-container input {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: 1px solid var(--color-gold);
    }

    /* Reliable Toggle Button */
    /* Reliable Toggle Button */
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        color: var(--color-gold);
        cursor: pointer;
        position: relative;
        z-index: 1001;
        margin-left: 0;
        transition: all 0.3s ease;
        background: transparent;
        border-radius: 50%;
        padding: 0;
        flex-shrink: 0 !important;
        /* Prevent disappearance */
    }

    /* Strict Icon Centering */
    .mobile-toggle i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    /* Active State - Simple Rotate */
    .mobile-toggle.active {
        transform: rotate(180deg);
        color: var(--color-gold);
        background: transparent;
    }

    /* Ensure Header stays ON TOP of everything */
    header {
        z-index: 11000 !important;
        /* Ultimate Top Layer */
    }

    /* Menu Layer - Slides out BELOW header */
    .nav-links {
        z-index: 1000;
        top: 82px;
        /* Height of header (50px logo + 2rem padding) */
        height: calc(100vh - 82px);
        height: calc(100dvh - 82px);
        padding-top: 2rem;
        /* Clean top spacing */
    }

    /* Remove Internal Logo Header */
    .mobile-logo-container {
        display: none !important;
    }

    .mobile-menu-logo {
        display: none;
    }




    /* Omit previously duplicated mobile logo styles, handled by container now */

    /* Mobile Book Visit Button */
    .mobile-cta {
        display: flex !important;
        background: var(--color-gold);
        color: var(--color-maroon-dark);
        border: none;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        margin-top: 2rem;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 5px 20px rgba(179, 139, 55, 0.3);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.5s;
        flex-shrink: 0;
    }

    .nav-links.active .mobile-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-cta i {
        margin-right: 10px;
    }

    /* Animation Keyframes */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hide Desktop CTA in Header */
    .header-cta {
        display: none;
    }



    .logo img {
        height: 70px;
    }

    header.scrolled .logo img {
        height: 50px;
    }
}

/* Inquiry Modal Styles */
/* Premium Inquiry Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    /* Darker overlay */
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    /* Always flex */
    visibility: hidden;
    /* Hide via visibility */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fffafa;
    width: 95%;
    max-width: 600px;
    padding: clamp(1.2rem, 5vw, 3rem);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid var(--color-gold-light);
    border-top: 5px solid var(--color-maroon);
    max-height: 95vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) transparent;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s, transform 0.3s;
}

.modal-close:hover {
    color: var(--color-maroon);
    transform: rotate(90deg);
}

.modal-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-maroon);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--color-gold-light);
    padding-bottom: 1rem;
}

.modal-subtitle {
    text-align: center;
    color: #555;
    margin: 1rem 0 2rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-family: var(--font-accent) !important;
    font-style: italic;
}

.modal-product-name {
    color: var(--color-gold);
    font-weight: 700;
    font-family: 'Cinzel', serif !important;
}

/* Standard Form Groups - Visible by default */
.form-group {
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: none;
}

/* Animations Scope: Forms INSIDE MODALS only */
.modal-content .form-group,
.modal-content .form-row {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active .form-group,
.modal-overlay.active .form-row {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Precise Staggered sequence for modal fields */
.modal-overlay.active .form-row:nth-of-type(1) {
    transition-delay: 0.15s;
}

.modal-overlay.active .form-group:nth-of-type(1) {
    transition-delay: 0.25s;
}

.modal-overlay.active .form-group:nth-of-type(2) {
    transition-delay: 0.35s;
}

.modal-overlay.active .form-group:nth-of-type(3) {
    transition-delay: 0.45s;
}

.modal-overlay.active .form-group:nth-of-type(4) {
    transition-delay: 0.55s;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-maroon);
    font-family: 'Cinzel', serif !important;
    /* Premium Heading Font for labels */
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: 'Cormorant Garamond', serif !important;
    /* Elegant input text */
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    transition: all 0.3s;
}

.form-input::placeholder {
    color: #aaa;
    font-weight: 400;
    font-style: italic;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 15px rgba(179, 139, 55, 0.2);
    transform: scale(1.01);
}

.form-input:focus+label {
    color: var(--color-gold);
}

.modal-submit {
    width: 100%;
    background: var(--color-maroon);
    color: white;
    border: 1px solid var(--color-maroon);
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    font-family: 'Cinzel', serif !important;
}

.modal-submit:hover {
    background: transparent;
    color: var(--color-maroon);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(93, 0, 30, 0.2);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }



    .header-cta {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .modal-content {
        width: 100% !important;
        height: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 4rem 1rem 2rem !important;
        margin: 0 !important;
        top: 0 !important;
        left: 0 !important;
        position: fixed !important;
    }

    .modal-overlay {
        padding: 0 !important;
    }

    .modal-close {
        top: 1rem;
        right: 1.5rem;
        z-index: 1001;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

/* =========================================
   Shop Page Styles - Premium Collection
========================================= */

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .filter-bar {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        font-size: 0.95rem;
        padding-bottom: 0.3rem;
    }
}

.filter-btn {
    border: none;
    background: none;
    font-family: 'Cinzel', serif !important;
    font-size: 1.1rem;
    cursor: pointer;
    padding-bottom: 0.5rem;
    color: #888;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-maroon);
    transition: width 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--color-maroon);
}

.filter-btn.active::after,
.filter-btn:hover::after {
    width: 100%;
}

/* Consolidated Product Grid & Card System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Product Card - Simplified & Robust */
.product-card {
    background: #fff;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Image Area - Forces 1:1.3 or 1:1.5 Aspect Ratio usually */
.product-img {
    height: 520px;
    /* Taller for better "cover" look */
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
    /* Placeholder color while loading */
}

/* Hover Darken */
.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
}

.product-card:hover .product-img::after {
    opacity: 1;
}

/* Dual Image Handling - Force Perfect Cover */
.product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-img img.product-img-main {
    z-index: 2;
    opacity: 1;
}

.product-img img.product-img-hover {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.02);
    /* Very subtle scale change */
}

/* Smooth Fade Effect */
.product-card:hover .product-img img.product-img-main {
    opacity: 0;
}

.product-card:hover .product-img img.product-img-hover {
    opacity: 1;
    z-index: 3;
    transform: translate(-50%, -50%) scale(1);
}

/* Action Button */
.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    opacity: 0;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.product-actions .btn-sm {
    padding: 1.2rem 2.2rem !important;
    border-radius: 50px;
    background: var(--color-white) !important;
    color: var(--color-maroon) !important;
    font-weight: 700;
    border: none !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Product Details */
.product-info {
    padding: 2rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.product-category {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.product-title {
    font-size: 1.3rem;
    color: var(--color-maroon);
    font-family: 'Cinzel', serif;
    /* Consistent brand font */
    font-weight: 700;
}

/* Consolidating and cleaning up product actions */
@media (max-width: 600px) {
    .product-img {
        height: 380px;
        /* Smaller image on mobile */
    }
}

.product-actions .btn-sm {
    padding: 1rem 2.5rem !important;
    font-size: 0.9rem !important;
    background: #fff !important;
    color: var(--color-maroon) !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.product-actions .btn-sm::after {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.product-actions .btn-sm:hover {
    background: var(--color-gold) !important;
    color: #fff !important;
    transform: scale(1.05);
    /* Slight grow */
}

.product-actions .btn-sm:hover::after {
    transform: translateX(5px);
}

/* =========================================
   About Page Styles
========================================= */
.story-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-gold-light);
    width: 100%;
    /* Ensure responsiveness */
}

@media (max-width: 768px) {
    .story-section {
        flex-direction: column;
        gap: 2rem;
    }

    .story-image img {
        box-shadow: 10px 10px 0 var(--color-gold-light);
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--color-gold-light);
    transition: var(--transition-fast);
    background: #fff;
    border-radius: 4px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--color-gold);
}

.value-icon {
    font-size: 3rem;
    color: var(--color-maroon);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}


/* =========================================
   Gallery Page Styles
========================================= */
/* =========================================
   Gallery Page Styles
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 0, 30, 0.6);
    /* Maroon tint */
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-gold);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-title {
    margin-top: 10px;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* Video Thumbnail Styles */
.video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    z-index: 5;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    transition: transform 0.3s;
}

.gallery-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
}

.close-lightbox {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3002;
    transition: all 0.3s;
}

.close-lightbox:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 3002;
}

.lightbox-nav:hover {
    background: var(--color-gold);
    color: var(--color-maroon);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 3rem;
}

.lightbox-next {
    right: 3rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* Animation Classes */
.anim-next {
    animation: slideInRight 0.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.anim-prev {
    animation: slideInLeft 0.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =========================================
   Contact Page Premium Styles
========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: var(--spacing-md);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
    transform: skewX(-20deg) translateX(150px);
    transition: transform 0.5s;
}

.info-item:hover::before {
    transform: skewX(-20deg) translateX(-500px);
    transition: transform 0.5s 0.2s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: clamp(50px, 10vw, 65px);
    height: clamp(50px, 10vw, 65px);
    background: var(--color-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
    border: 2px solid var(--color-gold);
    box-shadow: 0 5px 15px rgba(74, 4, 4, 0.3);
}

.info-text h4 {
    margin-bottom: 0.5rem;
    color: var(--color-maroon);
    font-family: var(--font-heading) !important;
    font-size: var(--fs-h4);
    font-weight: 700;
}

.info-text p {
    color: #444;
    line-height: 1.6;
    font-size: var(--fs-p);
    font-family: var(--font-accent) !important;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 3.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-top: 6px solid var(--color-maroon);
    position: relative;
}

.contact-form h3 {
    font-family: var(--font-heading) !important;
    font-size: var(--fs-h3);
    margin-bottom: 0.5rem;
    color: var(--color-maroon);
}

.contact-form p {
    margin-bottom: 2rem;
    color: #666;
    font-family: var(--font-body) !important;
    font-size: var(--fs-p);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--color-text-main);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e0e0e0;
    background: #fcfcfc;
    font-size: 1rem;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(179, 139, 55, 0.1);
}

.scheduler-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .scheduler-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Map */
.map-container {
    margin-top: 6rem;
    height: 500px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 15px solid #fff;
    filter: contrast(1.1) saturate(0.8);
    /* Artistic map look */
    transition: filter 0.3s;
}

.map-container:hover {
    filter: none;
}

/* =========================================
   About Preview Section (Creative & Premium)
========================================= */
.about-preview-section {
    padding: 8rem 0;
    background-color: var(--color-beige);
    position: relative;
    overflow: hidden;
}

/* Background Texture */
.about-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(var(--color-gold-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    animation: rotateSlow 100s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
}

/* Image Composition */
.about-image-wrapper {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.about-image-main {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image-main {
    transform: translateY(-10px);
}

/* Gold Frame Offset */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold);
    z-index: 1;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover::before {
    transform: translate(10px, 10px);
}

/* Experience Badge */
.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-maroon);
    color: var(--color-white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--color-gold);
    animation: floatBadge 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .exp-badge {
        width: 85px;
        height: 85px;
        bottom: -15px;
        right: -5px;
        border-width: 3px;
    }

    .exp-number {
        font-size: 1.4rem;
    }

    .exp-text {
        font-size: 0.65rem;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.exp-badge span {
    display: block;
}

.exp-number {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    /* Larger */
    font-weight: 800;
    color: var(--color-gold);
    /* Keep number gold but bold */
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    /* Increased size */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: var(--color-white);
}

/* Text Content */
.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-gold);
}

.about-content p {
    margin-bottom: 2.5rem;
    color: #444;
}

/* Features List */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(179, 139, 55, 0.1);
    color: var(--color-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.feature-text {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .about-preview-section {
        padding: 5rem 0;
    }

    .about-content h2 {
        font-size: clamp(1.2rem, 3vw, 2.2rem);
    }

    .about-content p {
        font-size: 1.05rem;
    }
}

/* =========================================
   About Page Premium Styles
========================================= */

/* Story Section responsiveness */
/* Story Section responsiveness - Consolidated above */

/* Mission & Vision Creative Section */
.mission-vision-section {
    padding: 2rem 0 6rem;
    background: transparent;
    display: block;
    visibility: visible;
    opacity: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .mission-grid {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
}

.mission-content {
    background: var(--color-beige);
    padding: 3rem;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(179, 139, 55, 0.1);
    display: block;
    visibility: visible;
    opacity: 1;
}

.mission-content h3 {
    font-size: 1.8rem;
    color: var(--color-maroon);
    margin-bottom: 1.5rem;
}

.mission-content::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--color-gold);
    border-right: 4px solid var(--color-gold);
}

.vision-card {
    background: var(--color-maroon);
    color: var(--color-gold-light);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(74, 4, 4, 0.2);
}

.vision-card h3 {
    font-size: 1.8rem;
    color: var(--color-gold) !important;
    margin-bottom: 1.5rem;
}

.vision-card::before {
    content: '\f10e';
    /* FontAwesome Quote Mark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.15;
    color: var(--color-gold);
}

.vision-card p {
    color: var(--color-gold-light) !important;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vision-card {
    background: linear-gradient(135deg, var(--color-maroon) 0%, #5d001e 100%);
    padding: 3rem;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(93, 0, 30, 0.3);
    border: 2px solid var(--color-gold);
    display: block;
    visibility: visible;
    opacity: 1;
}

.vision-card h3 {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.vision-card p {
    color: var(--color-white);
    line-height: 1.8;
}

/* Timeline/Milestones */
.timeline-section {
    padding: 8rem 0;
    background: var(--color-beige);
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 5rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), var(--color-gold), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    margin-bottom: 5rem;
    position: relative;
    width: 50%;
    padding: 0 50px;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--color-maroon);
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 5px var(--color-white);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-content {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-date {
    font-family: var(--font-heading);
    color: var(--color-maroon);
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        padding-right: 15px;
        text-align: left !important;
        margin-bottom: 2.5rem;
    }

    .timeline-dot {
        left: 10px !important;
        width: 20px;
        height: 20px;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

/* Crafting Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--color-white);
    display: block;
    visibility: visible;
    opacity: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

.value-card {
    background: var(--color-beige);
    padding: 3.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(179, 139, 55, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--color-maroon);
}

.value-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-icon-box {
    width: 110px;
    height: 110px;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    color: var(--color-maroon);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.process-item:hover .process-icon-box {
    background: var(--color-maroon);
    color: var(--color-gold);
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 4, 4, 0.2);
}

.process-icon-box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed var(--color-gold-light);
    z-index: -1;
}

.process-item:last-child .process-icon-box::after {
    display: none;
}

@media (max-width: 1024px) {
    .process-icon-box::after {
        display: none;
    }
}

/* Preloader Premium Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--color-maroon) 0%, var(--color-maroon-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), visibility 1s;
    overflow: hidden;
}

/* Subtle Floating Particles */
#preloader::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(179, 139, 55, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    opacity: 0.4;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -50px);
    }
}

/* Preloader Premium Styles - The Best Version */
/* Professional Part-Based Skeleton Loader System */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0000;
    /* Richer Depth Black-Maroon */
    display: flex;
    flex-direction: column;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    overflow-y: auto;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.sk-container {
    padding: 0;
    width: 100%;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    animation: sk-in 0.6s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes sk-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Skeleton - Exact Match */
.sk-header {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 140px;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.sk-header-inner {
    width: 90%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-logo {
    width: 140px;
    height: 70px;
    border-radius: 8px;
}

.sk-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.sk-nav-item {
    width: 70px;
    height: 14px;
    border-radius: 20px;
}

.sk-cta-btn {
    width: 140px;
    height: 45px;
    border-radius: 50px;
}

/* Hero Section Skeleton - Exact Match */
.sk-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #1a0000 0%, #050000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 140px;
}

.sk-title {
    width: 60%;
    max-width: 700px;
    height: 60px;
    border-radius: 8px;
}

.sk-subtitle {
    width: 45%;
    max-width: 500px;
    height: 35px;
    border-radius: 6px;
}

.sk-text {
    width: 40%;
    max-width: 450px;
    height: 20px;
    border-radius: 4px;
}

.sk-btn-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.sk-btn {
    width: 180px;
    height: 55px;
    border-radius: 50px;
}

.sk-btn-primary {
    width: 200px;
}

.sk-btn-secondary {
    width: 160px;
}

/* Inner Page Header Skeleton */
.sk-page-header {
    background: radial-gradient(circle at center, #4a0404 0%, #1e0000 100%);
    min-height: 450px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    padding-top: 80px;
}

.sk-page-label {
    width: 120px;
    height: 14px;
    border-radius: 4px;
}

.sk-page-title {
    width: 70%;
    max-width: 800px;
    height: 70px;
    border-radius: 8px;
}

.sk-page-subtitle {
    width: 50%;
    max-width: 500px;
    height: 25px;
    border-radius: 4px;
}

/* About Split Skeleton */
.sk-about-split {
    padding: 100px 5%;
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .sk-about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 50px;
    }
}

.sk-split-img {
    height: 600px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sk-split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.sk-text-line {
    width: 100%;
    height: 20px;
    border-radius: 4px;
}

.sk-text-line.short {
    width: 60%;
}

.sk-text-line.med {
    width: 85%;
}

/* Section Skeleton */
.sk-section {
    padding: 100px 5%;
    background: #0a0000;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sk-section-title {
    width: 400px;
    height: 50px;
    border-radius: 6px;
    margin: 0 auto 4rem;
}

/* Category Grid Skeleton - Exact Match */
.sk-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sk-card {
    height: 500px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sk-card-img {
    flex: 1;
    background: linear-gradient(110deg, #1a0000 30%, #3d0014 50%, #1a0000 70%);
    background-size: 200% 100%;
    animation: sk-shimmer 2.5s infinite linear;
}

.sk-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(10, 0, 0, 0.5);
}

.sk-card-title {
    width: 70%;
    height: 24px;
    border-radius: 4px;
}

.sk-card-link {
    width: 100px;
    height: 16px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .sk-header {
        height: 80px;
    }

    .sk-header-inner {
        width: 100%;
        padding: 0 5%;
    }

    .sk-nav,
    .sk-cta-btn {
        display: none;
    }

    .sk-logo {
        width: 100px;
        height: 50px;
    }

    .sk-hero {
        padding-top: 80px;
        min-height: 60vh;
    }

    .sk-page-header {
        padding-top: 100px;
        min-height: 350px;
    }
}

.sk-logo,
.sk-nav-item,
.sk-cta-btn,
.sk-title,
.sk-subtitle,
.sk-text,
.sk-btn,
.sk-section-title,
.sk-card-title,
.sk-card-link,
.sk-page-label,
.sk-page-title,
.sk-page-subtitle,
.sk-split-img,
.sk-text-line {
    background: linear-gradient(110deg, #1a0000 30%, #3d0014 50%, #1a0000 70%);
    background-size: 200% 100%;
    animation: sk-shimmer 2.5s infinite linear;
    border: 1px solid rgba(179, 139, 55, 0.1);
}

@keyframes sk-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Skeleton */
@media (max-width: 1024px) {
    .sk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sk-nav {
        display: none;
    }

    .sk-cta-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .sk-hero {
        min-height: 60vh;
        padding: 3rem 5%;
    }

    .sk-title {
        width: 85%;
        height: 45px;
    }

    .sk-subtitle {
        width: 75%;
        height: 28px;
    }

    .sk-text {
        width: 70%;
        height: 18px;
    }

    .sk-btn-group {
        flex-direction: column;
        gap: 1rem;
    }

    .sk-btn,
    .sk-btn-primary,
    .sk-btn-secondary {
        width: 160px;
        height: 50px;
    }

    .sk-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sk-card {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .sk-header {
        padding: 1rem 4%;
        height: 75px;
    }

    .sk-logo {
        width: 100px;
        height: 50px;
    }

    .sk-section {
        padding: 3rem 4%;
    }

    .sk-section-title {
        width: 200px;
        height: 32px;
    }
}

/* Footer Styles */

@media (max-width: 768px) {
    .sk-nav {
        display: none;
    }

    .sk-hero {
        height: 300px;
    }

    .sk-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes loaderLine {

    0%,
    100% {
        transform: scaleX(0);
        opacity: 0;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loader-logo-wrapper {
        width: 140px;
        height: 140px;
    }

    .loader-img {
        width: 90px;
        height: 90px;
    }

    .loader-brand {
        font-size: 1.4rem;
        letter-spacing: 6px;
    }
}

/* Hide scrollbar when preloader is active */
body.preloader-active {
    overflow: hidden;
}

/* FAQ & Legal Page Premium Styles */
.faq-page-section {
    background-color: #fff;
    padding: 8rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 5rem;
}

.faq-category-title {
    font-size: 2.5rem;
    color: var(--color-maroon);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-heading);
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

.faq-item {
    background: #fdfaf5;
    border: 1px solid rgba(179, 139, 55, 0.1);
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 15px 40px rgba(179, 139, 55, 0.1);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    font-weight: 700;
    margin: 0;
    padding-right: 2rem;
}

.faq-question i {
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(1, 0, 0, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 2.5rem 2.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 1.25rem;
}

/* Support CTA Section */
.support-cta {
    margin-top: 6rem;
    padding: 5rem;
    background: var(--color-maroon);
    border-radius: 8px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '\f128';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 15rem;
    opacity: 0.05;
    color: var(--color-gold);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.support-cta h3 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.support-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #fff;
    opacity: 1;
}

.support-cta .btn-primary {
    background: var(--color-gold);
    color: var(--color-maroon);
    border-color: var(--color-gold);
}

.support-cta .btn-primary:hover {
    background: var(--color-white);
    color: var(--color-maroon);
    border-color: var(--color-white);
}

.support-cta .btn-outline {
    border-color: var(--color-gold-light);
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* Legal Pages Styling */
.legal-section {
    background: #fff;
    padding: 8rem 0;
}

.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-family: var(--font-accent);
    color: var(--color-gold);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.legal-content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--color-maroon);
    margin: 3rem 0 1.5rem;
    font-family: var(--font-heading);
}

.legal-content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .support-cta {
        padding: 3rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .exp-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -10px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

    .exp-text {
        font-size: 0.7rem;
    }
}

/* =========================================
   Customer Reviews Section - Premium Owl Carousel
========================================= */

/* Review Item Card */
.review-item {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(179, 139, 55, 0.1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Using AOS for reviews instead of infinite CSS to prevent conflicts */
.review-item[data-aos].aos-animate {
    animation: reviewFadeUp 0.8s ease forwards;
}

@keyframes reviewFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delay for carousel items if needed, 
   but Owl already animates. Let's add a subtle pop on hover */


.review-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
}

/* Review Stars */
.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.review-stars i {
    color: var(--color-gold);
    font-size: 1.3rem;
    animation: starPulse 2s ease-in-out infinite;
}

.review-stars i:nth-child(1) {
    animation-delay: 0s;
}

.review-stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.review-stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.review-stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.review-stars i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Review Text */
.review-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
    flex-grow: 1;
}

/* Review Author */
.review-author {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(179, 139, 55, 0.2);
}

.review-author strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-maroon);
    font-family: 'Cinzel', serif;
    margin-bottom: 0.3rem;
}

.review-author span {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel Custom Navigation */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-maroon) !important;
    color: var(--color-gold) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--color-gold) !important;
    color: var(--color-maroon) !important;
    transform: translateY(-50%) scale(1.1);
}

/* Owl Carousel Dots */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 2.5rem;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 0.4rem;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(179, 139, 55, 0.3);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: var(--color-gold);
    width: 30px;
    border-radius: 10px;
}

.owl-carousel .owl-dot:hover span {
    background: var(--color-maroon);
}

/* Star Rating Form (Interactive) */
.star-rating {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 1rem 0 1.5rem;
}

.star-rating i {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-rating i:hover,
.star-rating i.fa-solid {
    color: var(--color-gold);
    transform: scale(1.2);
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .review-item {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .review-text {
        font-size: 1rem;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    /* Tighter alignment */
    width: 48px;
    /* Slightly smaller */
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold), #b38b37);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 990;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: goldPulse 2s infinite;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #000;
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-5px);
    animation: none;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 85px;
        right: 15px;
        /* Tighter mobile margin */
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}