/* Custom Tailwind Configuration */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --gold: #C9A66B;
    --gold-dark: #8B6F47;
    --brown: #5C4033;
    --brown-dark: #3E2723;
    --beige: #F5F5DC;
    --white: #FFFFFF;
    --neutral-50: #FAFAF9;
    --neutral-100: #F5F5F4;
    --neutral-600: #57534E;
    --neutral-700: #44403C;
    --neutral-900: #1C1917;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--neutral-900);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Text Color */
.text-gold {
    color: var(--gold) !important;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--neutral-900);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

/* Testimonial Slider Styles */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 240px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    padding: 20px 18px 28px 18px;
}

.testimonial-slide-group {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    min-height: 180px;
    transition: opacity 0.5s;
}

.testimonial-slide-group.active {
    display: grid;
    opacity: 1;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 18px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 160px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--neutral-700);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 10px;
}

.testimonial-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-100);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-toast i {
    color: #4ADE80;
    font-size: 20px;
}

/*Navbar*/
.navbar {
    /* translucent background with subtle blur for a professional glass effect */
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 20px rgba(3, 7, 18, 0.04);
}

/* When the navbar should become more opaque (e.g., after scrolling) */
.navbar.navbar--opaque {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 28px rgba(3, 7, 18, 0.07);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    /* Make logo appear as a rounded oval/pill with slight padding and subtle shadow */
    height: 48px;
    width: 72px;
    /* wider than height for oval shape */
    object-fit: cover;
    border-radius: 24px;
    /* half of height for pill shape */
    padding: 4px 8px;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
}

.nav-link {
    color: var(--neutral-900);
    text-decoration: none;
    font-weight: 500;
    transition: color 180ms ease;
    padding: 0.5rem 0;
    position: relative;
    /* for underline */
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Smooth underline animation using transform for better performance */
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 220ms cubic-bezier(.2, .9, .2, 1);
    border-radius: 3px;
    opacity: 0.95;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-icon-link {
    position: relative;
    color: var(--neutral-900);
    font-size: 18px;
    transition: color 0.2s ease;
}

.nav-icon-link:hover {
    color: var(--gold);
}

/* Mobile Menu Button Styling */
#mobile-menu-btn {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

#mobile-menu-btn:hover {
    background: rgba(201, 166, 107, 0.1);
}

#mobile-menu-btn i {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Mobile Menu - Overlay Style */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 249, 0.98) 100%);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    z-index: 999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

/* Overlay backdrop */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 40px 24px 28px;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.08) 0%, rgba(201, 166, 107, 0.04) 100%);
    border-bottom: 2px solid rgba(201, 166, 107, 0.15);
    flex-shrink: 0;
}

.mobile-menu-logo {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: contain;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(201, 166, 107, 0.25);
    display: block;
}

.mobile-menu-tagline {
    font-size: 16px;
    color: var(--neutral-900);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px 16px;
    flex-shrink: 0;
    overflow: hidden;
}

/* Global Resets */
html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    /* Ensure no transforms affect fixed positioning context */
    transform: none !important;
}

/* WhatsApp floating action button (visible on all pages) */
.whatsapp-fab {
    position: fixed !important;
    /* Force fixed positioning */
    right: 20px;
    right: max(20px, env(safe-area-inset-right));
    bottom: 25px;
    bottom: max(25px, env(safe-area-inset-bottom));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 2147483647 !important;
    /* Maximum possible z-index */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    /* Hardware acceleration for smooth rendering and fixing stacking context issues */
    transform: translateZ(0);
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.whatsapp-fab i {
    font-size: 30px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-4px) scale(1.05) translateZ(0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab:active {
    transform: translateY(-2px) scale(1.02) translateZ(0);
}

/* Tablet styles (≤768px) */
@media (max-width: 768px) {
    .whatsapp-fab {
        width: 58px;
        height: 58px;
        right: 20px;
        right: max(20px, env(safe-area-inset-right));
        bottom: 25px;
        bottom: max(25px, env(safe-area-inset-bottom));
    }

    .whatsapp-fab i {
        font-size: 28px;
    }
}

/* Mobile styles (≤480px) */
@media (max-width: 480px) {
    .whatsapp-fab {
        width: 56px;
        height: 56px;
        /* More breathing room from edges to prevent cropping on curved screens */
        right: 18px;
        right: max(18px, env(safe-area-inset-right));
        bottom: 20px;
        bottom: max(20px, env(safe-area-inset-bottom));
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-fab i {
        font-size: 28px;
    }

    .whatsapp-fab:hover {
        transform: scale(1.05) translateZ(0);
    }
}

/* Small mobile styles (≤360px) */
@media (max-width: 360px) {
    .whatsapp-fab {
        width: 52px;
        height: 52px;
        right: 14px;
        right: max(14px, env(safe-area-inset-right));
        bottom: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-fab i {
        font-size: 26px;
    }
}

/* Call Now floating action button */
.callnow-fab {
    position: fixed !important;
    right: 20px;
    right: max(20px, env(safe-area-inset-right));
    bottom: 95px;
    /* Positioned above WhatsApp button */
    bottom: max(95px, calc(env(safe-area-inset-bottom) + 70px));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 102, 204, 0.35);
    z-index: 2147483646 !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateZ(0);
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.callnow-fab i {
    font-size: 28px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.callnow-fab:hover {
    transform: translateY(-4px) scale(1.05) translateZ(0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 102, 204, 0.45);
}

.callnow-fab:active {
    transform: translateY(-2px) scale(1.02) translateZ(0);
}

/* Tablet styles for Call Now button (≤768px) */
@media (max-width: 768px) {
    .callnow-fab {
        width: 58px;
        height: 58px;
        right: 20px;
        right: max(20px, env(safe-area-inset-right));
        bottom: 93px;
        bottom: max(93px, calc(env(safe-area-inset-bottom) + 68px));
    }

    .callnow-fab i {
        font-size: 26px;
    }
}

/* Mobile styles for Call Now button (≤480px) */
@media (max-width: 480px) {
    .callnow-fab {
        width: 56px;
        height: 56px;
        right: 18px;
        right: max(18px, env(safe-area-inset-right));
        bottom: 86px;
        bottom: max(86px, calc(env(safe-area-inset-bottom) + 66px));
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 102, 204, 0.4);
    }

    .callnow-fab i {
        font-size: 26px;
    }

    .callnow-fab:hover {
        transform: scale(1.05) translateZ(0);
    }
}

/* Small mobile styles for Call Now button (≤360px) */
@media (max-width: 360px) {
    .callnow-fab {
        width: 52px;
        height: 52px;
        right: 14px;
        right: max(14px, env(safe-area-inset-right));
        bottom: 78px;
        bottom: max(78px, calc(env(safe-area-inset-bottom) + 62px));
    }

    .callnow-fab i {
        font-size: 24px;
    }
}

/* Pulse animation for Call Now button */
@keyframes callnow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 102, 204, 0.35), 0 0 0 0 rgba(0, 102, 204, 0.6);
    }

    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 102, 204, 0.35), 0 0 0 12px rgba(0, 102, 204, 0);
    }
}

.callnow-fab {
    animation: callnow-pulse 2.5s infinite;
    animation-delay: 1.25s;
    /* Offset from WhatsApp pulse for visual interest */
}

/* Pulse animation to draw attention */
@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.whatsapp-fab {
    animation: whatsapp-pulse 2.5s infinite;
}

.mobile-nav-link {
    color: var(--neutral-900);
    text-decoration: none;
    font-weight: 600;
    padding: 16px 20px;
    margin: 6px 0;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.3px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInMenu 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    overflow: hidden;
}

.mobile-nav-link i {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 24px;
}

.mobile-nav-link span {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-link:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active page styling */
.mobile-nav-link.active {
    color: white;
}

.mobile-nav-link.active::before {
    opacity: 0.95;
    transform: scaleX(1);
}

.mobile-nav-link.active i {
    transform: scale(1.15);
}

.mobile-nav-link:hover:not(.active) {
    color: var(--gold);
    background: rgba(201, 166, 107, 0.12);
    transform: translateX(8px);
}

.mobile-nav-link:hover:not(.active) i {
    transform: translateX(4px);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('../img/Hero Section BG.jpeg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile Hero Improvements */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        /* Allow natural height instead of forcing 100vh */
        min-height: 85vh;
        /* Reduced from 100vh to prevent overlap */
        max-height: 90vh;
        /* Cap the maximum height */
        align-items: center;
        /* Center content vertically */
        justify-content: center;
        padding: 100px 0 60px 0;
        /* Top padding for navbar, bottom for spacing */
        background-attachment: scroll;
        background-position: center center;
    }

    .hero-content {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
        padding: 0 10px;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        padding: 0 15px;
        line-height: 1.6;
        opacity: 0.95;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero-buttons {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 15px;
        /* Increase space between buttons */
        width: 100%;
        padding: 0 30px;
        /* Add more horizontal padding */
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        /* Center buttons horizontally */
    }

    .btn-consultation,
    .btn-primary {
        flex: 1;
        width: 100%;
        /* Make buttons full-width */
        max-width: 280px;
        /* Set a max-width for larger screens */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
        /* Increase padding for a larger touch area */
        font-size: 14px;
        /* Slightly larger font */
        font-weight: 700;
        /* Bolder text */
        border-radius: 10px;
        /* Softer rounded corners */
        line-height: 1.4;
        transition: all 0.3s ease;
    }

    .btn-consultation {
        background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.95));
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        color: white;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-consultation:hover {
        background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(10, 10, 10, 1));
        border-color: rgba(201, 166, 107, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .btn-primary {
        background: #c9a66b;
        border: none;
        color: white;
    }

    .btn-primary:hover {
        background: #b8955a;
        transform: translateY(-2px);
    }

    .btn-multiline {
        text-align: center;
        line-height: 1.3;
        /* Adjust line height for two lines of text */
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-section {
        min-height: 75vh;
        /* Further reduced for small screens */
        max-height: 80vh;
        padding: 90px 0 50px 0;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 10px;
        padding: 0 16px;
        flex-direction: row;
        /* Keep horizontal on small screens */
    }

    .btn-consultation,
    .btn-primary {
        padding: 12px 14px;
        font-size: 12px;
        max-width: 150px;
        /* Slightly smaller max width */
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 166, 107, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: white;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-consultation {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.btn-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C9A66B 0%, #8B6F47 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(201, 166, 107, 0.6), 0 4px 12px rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(201, 166, 107, 0.9);
    color: #ffffff;
}

.btn-consultation:hover::before {
    opacity: 1;
}

/* Hero CTA Button - White Background for Maximum Visibility */
.btn-hero-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2.2rem;
    background: rgba(255, 255, 255, 0.98);
    color: #2d2d2d;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(201, 166, 107, 0.6);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C9A66B 0%, #8B6F47 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(201, 166, 107, 0.6), 0 4px 12px rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(201, 166, 107, 0.9);
    color: #ffffff;
}

.btn-hero-cta:hover::before {
    opacity: 1;
}

/* Banner Slider - Amazon/Flipkart Style */
.banner-slider-section {
    margin: 40px 0;
    padding: 0;
    background: var(--neutral-50);
}

.banner-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.banner-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.banner-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
}

.banner-slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dots Navigation */
.banner-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 16px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.banner-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.banner-slider-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
}

.banner-slider-dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* Navigation Buttons */
.banner-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--neutral-900);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-slider-btn:hover {
    background: white;
    color: var(--gold);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.banner-slider-prev {
    left: 20px;
}

.banner-slider-next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-slider-section {
        margin: 32px 0;
    }

    .banner-slider-container {
        max-width: 95%;
        border-radius: 10px;
    }

    .banner-slider-wrapper {
        height: 380px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .banner-slider-wrapper {
        height: auto;
        aspect-ratio: 19/8;
    }

    .banner-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .banner-slider-prev {
        left: 10px;
    }

    .banner-slider-next {
        right: 10px;
    }

    .banner-slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .banner-slider-dot {
        width: 10px;
        height: 10px;
    }

    .banner-slider-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .banner-slider-wrapper {
        height: auto;
        aspect-ratio: 19/8;
    }

    .banner-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .banner-slider-prev {
        left: 8px;
    }

    .banner-slider-next {
        right: 8px;
    }

    .banner-slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .banner-slider-dot {
        width: 8px;
        height: 8px;
    }

    .banner-slider-dot.active {
        width: 20px;
    }
}

/* Banner Carousel */
.banner-carousel-section {
    position: relative;
    margin: 30px 0;
}

.banner-carousel {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.banner-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-600);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px;
}

/* Section Styling */
.section-padding {
    padding: 48px 0;
}

.section-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

/* Category Cards */
.category-card {
    background: white;
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeIn 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    background: var(--neutral-100);
    flex-shrink: 0;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product-wishlist-btn:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.product-wishlist-btn.active {
    background: var(--gold);
    color: white;
}

.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--neutral-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    line-height: 1.3;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    margin-top: auto;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-cart {
    flex: 1;
    background: var(--gold);
    color: white;
    border: none;
    padding: 11px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-cart:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.video-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.video-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.video-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Promo Cards */
.promo-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stars {
    color: var(--gold);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 16px;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--brown));
    color: white;
    padding: 80px 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 2px solid white;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden to prevent collision with WhatsApp button */
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Bar */
.filter-bar {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}

.filter-btn {
    padding: 8px 16px;
    border: 1.5px solid var(--neutral-600);
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.sort-select {
    padding: 10px 16px;
    border: 2px solid var(--neutral-600);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background: white;
}

/* Cart Page Styles */
.cart-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 20px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--gold);
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--gold);
    color: white;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--neutral-600);
    border-radius: 6px;
    padding: 6px;
    font-weight: 600;
}

.remove-btn {
    background: #EF4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #DC2626;
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
}

.summary-total {
    font-size: 24px;
    font-weight: 700;
    padding-top: 16px;
    border-top: 2px solid var(--neutral-100);
    margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 360px;
    }

    .banner-carousel {
        height: 240px;
    }

    .section-padding {
        padding: 32px 0;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .video-section {
        height: 300px;
    }

    .video-content {
        padding: 20px;
    }

    .video-title {
        font-size: clamp(24px, 4vw, 40px);
        margin-bottom: 12px;
    }

    .video-subtitle {
        font-size: clamp(14px, 2vw, 20px);
        margin-bottom: 20px;
    }

    .testimonial-slide-group {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: auto;
    }

    .testimonial-card {
        padding: 16px 12px 14px 12px;
        min-height: auto;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .testimonial-slider {
        min-height: auto;
        padding: 16px 12px 40px 12px;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image-container {
        height: auto;
        aspect-ratio: 1/1;
    }

    .video-section {
        height: 280px;
    }

    .video-title {
        font-size: clamp(20px, 3.5vw, 32px);
        margin-bottom: 10px;
    }

    .video-subtitle {
        font-size: clamp(12px, 1.8vw, 16px);
        margin-bottom: 16px;
    }

    .testimonial-slide-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-card {
        padding: 14px 10px 12px 10px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .testimonial-slider {
        padding: 14px 10px 36px 10px;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* About Text Styling */
.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: 24px;
    text-align: center;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.3);
}

.vm-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.vm-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* Service Cards */
.service-card {
    background: var(--neutral-50);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-dark);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.service-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-600);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    opacity: 0.1;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.value-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.value-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Feature Cards */
.feature-card {
    background: var(--neutral-50);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card:hover {
    background: white;
    border-left-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neutral-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.cta-section>div {
    position: relative;
    z-index: 10;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .vision-mission-card {
        padding: 40px 30px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .vm-title {
        font-size: 24px;
    }

    .vm-text {
        font-size: 16px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .feature-number {
        font-size: 36px;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .vm-title {
        font-size: 22px;
    }

    .vm-text {
        font-size: 16px;
    }

    .service-title {
        font-size: 20px;
    }
}


/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.contact-info-text {
    font-size: 14px;
    color: var(--neutral-600);
    margin-bottom: 12px;
}

.contact-info-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-info-link:hover {
    color: var(--gold-dark);
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.contact-form-subtitle {
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--neutral-100);
    border-radius: 10px;
    font-size: 15px;
    color: var(--neutral-900);
    background: var(--neutral-50);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.1);
}

.form-input::placeholder {
    color: var(--neutral-600);
    opacity: 0.7;
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2357534E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* Checkbox Styling */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.5;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-600);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--gold);
    margin-top: 2px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 166, 107, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Info Sidebar Cards */
.info-sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.info-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-sidebar-title i {
    color: var(--gold);
}

.info-sidebar-text {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.info-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-sidebar-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* Business Hours */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-100);
    font-size: 15px;
}

.business-hours-row:last-child {
    border-bottom: none;
}

.business-hours-row span:first-child {
    color: var(--neutral-700);
    font-weight: 500;
}

.business-hours-row span:last-child {
    color: var(--neutral-900);
    font-weight: 600;
}

/* Social Media Links */
.contact-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-social-link.facebook {
    background: #1877F2;
}

.contact-social-link.instagram {
    background: linear-gradient(135deg, #E1306C, #FD1D1D, #F77737);
}

.contact-social-link.twitter {
    background: #1DA1F2;
}

.contact-social-link.pinterest {
    background: #E60023;
}

.contact-social-link.linkedin {
    background: #0A66C2;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    /* WhatsApp green */
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 14px;
    color: var(--neutral-600);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-600);
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
        min-height: 350px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-title {
        font-size: 26px;
    }

    .contact-form-subtitle {
        font-size: 15px;
    }

    .grid.md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        width: 100%;
    }

    .info-sidebar-card {
        padding: 25px 20px;
    }

    .map-container iframe {
        height: 350px !important;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 35vh;
        min-height: 300px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact-info-title {
        font-size: 20px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-social-icons {
        gap: 10px;
    }

    .contact-social-link {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}


/* ===================================
   PRODUCT DETAIL PAGE STYLES
   =================================== */

/* Breadcrumb */
.breadcrumb-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--neutral-100);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--neutral-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* Product Detail Specific Styles */
.product-detail-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image-container {
    position: relative;
    width: 100%;
    /* padding-bottom: 100%; */
    margin-bottom: 1rem;
    background-color: var(--neutral-100);
    border-radius: 0.5rem;
    overflow: hidden;
}

.main-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures the whole image is visible */
    transition: transform 0.3s ease;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--gold);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding-top: 1rem;
}

.product-detail-category {
    font-size: 0.875rem;
    /* sm */
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    /* tracking-wide */
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-size: 2.25rem;
    /* 3xl */
    line-height: 1.2;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.product-detail-rating .stars {
    color: #fbbf24;
    /* yellow-400 */
}

.product-detail-price {
    font-size: 1.875rem;
    /* 3xl */
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
}

.product-detail-description h3 {
    font-size: 1.125rem;
    /* lg */
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.product-detail-description p {
    font-size: 1rem;
    /* base */
    color: var(--neutral-600);
    line-height: 1.6;
}

.product-detail-specs {
    margin-top: 1.5rem;
    border-top: 1px solid var(--neutral-100);
    padding-top: 1.5rem;
}

.product-detail-specs h3 {
    font-size: 1.125rem;
    /* lg */
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--neutral-100);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--neutral-700);
}

.spec-value {
    color: var(--neutral-600);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--neutral-300);
    border-radius: 0.375rem;
    /* rounded-md */
}

.quantity-selector .quantity-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--neutral-600);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-selector .quantity-btn:hover {
    background-color: var(--neutral-100);
}

.quantity-selector input {
    width: 3rem;
    text-align: center;
    border-left: 1px solid var(--neutral-300);
    border-right: 1px solid var(--neutral-300);
    -moz-appearance: textfield;
    /* Firefox */
    appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-add-to-cart {
    background: var(--gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    /* rounded-full */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-add-to-cart:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);

}

.btn-add-to-cart i {
    margin-right: 0.5rem;
}

.btn-add-to-wishlist {
    background: var(--neutral-100);
    color: var(--neutral-700);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    /* rounded-full */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 100%;
    border: 1px solid var(--neutral-300);
}

.btn-add-to-wishlist:hover {
    background: var(--neutral-200);
    transform: translateY(-2px);
}

.btn-add-to-wishlist.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.btn-add-to-wishlist.active:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.product-detail-features {
    margin-top: 2rem;
    border-top: 1px solid var(--neutral-100);
    padding-top: 2rem;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-badge i {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-detail-contact {
    margin-top: 2rem;
    border-top: 1px solid var(--neutral-100);
    padding-top: 2rem;
}

.product-detail-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-detail-contact a {
    color: var(--neutral-700);
    text-decoration: underline;
}

.product-detail-contact a:hover {
    color: var(--gold);
}

/* Responsive adjustments for product detail page */
@media (max-width: 1024px) {
    .product-detail-title {
        font-size: 2rem;
        /* 2xl */
    }

    .product-detail-price {
        font-size: 1.5rem;
        /* 2xl */
    }
}

@media (max-width: 768px) {
    .product-detail-images {
        flex-direction: column;
    }

    .lg\:w-1\/2 {
        width: 100%;
    }

    .lg\:flex {
        flex-direction: column;
    }

    .lg\:space-x-8 {
        gap: 2rem;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .btn-add-to-cart,
    .btn-add-to-wishlist {
        width: 100%;
    }

    .product-detail-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-detail-title {
        font-size: 1.75rem;
        /* xl */
    }

    .product-detail-price {
        font-size: 1.25rem;
        /* xl */
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

/* Product Detail Page Button Overrides */
#add-to-cart-btn {
    background: var(--gold) !important;
    color: white !important;
    padding: 11px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1) !important;
    width: 100% !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(201, 166, 107, 0.2) !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

#add-to-cart-btn:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(201, 166, 107, 0.3) !important;
}

#add-to-cart-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(201, 166, 107, 0.2) !important;
}

#add-to-cart-btn i {
    margin-right: 0.4rem !important;
    font-size: 13px !important;
    flex-shrink: 0;
}

#add-to-wishlist-btn {
    background: var(--neutral-100) !important;
    color: var(--neutral-700) !important;
    padding: 11px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1) !important;
    width: 100% !important;
    border: 2px solid var(--neutral-300) !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

#add-to-wishlist-btn:hover {
    background: var(--neutral-200) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--neutral-400) !important;
}

#add-to-wishlist-btn.active {
    background: var(--gold) !important;
    color: white !important;
    border-color: var(--gold) !important;
    box-shadow: 0 4px 12px rgba(201, 166, 107, 0.2) !important;
}

#add-to-wishlist-btn.active:hover {
    background: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(201, 166, 107, 0.3) !important;
}

#add-to-wishlist-btn i {
    margin-right: 0.4rem !important;
    font-size: 13px !important;
    flex-shrink: 0;
}

/* new responsive styles */
@media (max-width: 768px) {
    .swiper-pagination {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .shop-by-category {
        margin-top: 10px !important;
        padding-top: 5px !important;
    }
}

.banner-slider-dots {
    display: none !important;
}

.banner-slider-dots,
.banner-slider-dot {
    display: none !important;
}

.banner-slider-dots {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

.banner-slider-dot {
    display: none !important;
}

/* ========== SCROLL TRIGGER ANIMATIONS ========== */

/* Define animation keyframes */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base animation styles - elements start hidden */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-animate="left"] {
    transform: translateX(-60px);
}

[data-animate="right"] {
    transform: translateX(60px);
}

[data-animate="fade"] {
    transform: translateY(40px);
}

/* Apply animations when elements enter viewport */
[data-animate].animate-in {
    opacity: 1;
}

[data-animate="left"].animate-in {
    animation: slideInFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-animate="right"].animate-in {
    animation: slideInFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-animate="fade"].animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Stagger animations for multiple elements */
[data-animate-group] [data-animate]:nth-child(1) {
    transition-delay: 0s;
}

[data-animate-group] [data-animate]:nth-child(2) {
    transition-delay: 0.1s;
}

[data-animate-group] [data-animate]:nth-child(3) {
    transition-delay: 0.2s;
}

[data-animate-group] [data-animate]:nth-child(4) {
    transition-delay: 0.3s;
}

[data-animate-group] [data-animate]:nth-child(n+5) {
    transition-delay: 0.4s;
}

/* Reduce animations on mobile for better performance */
@media (max-width: 768px) {
    [data-animate] {
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    [data-animate="left"].animate-in {
        animation: slideInFromLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    [data-animate="right"].animate-in {
        animation: slideInFromRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    [data-animate="fade"].animate-in {
        animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
}

/* ============================================
   INTERIOR DESIGN PROJECTS PAGE STYLES
   ============================================ */

/* Projects Hero Section */
.projects-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Projects Grid */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Project Card */
.project-card {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Project Video Container */
.project-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-video {
    transform: scale(1.05);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
    transition: background 0.4s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

/* Project Details */
.project-details {
    color: white;
    max-width: 700px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-details {
    transform: translateY(0);
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: white;
}

.project-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.project-card:hover .project-description {
    opacity: 1;
    transform: translateY(0);
}

/* Project Detail Button */
.btn-project-detail {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.project-card:hover .btn-project-detail {
    opacity: 1;
    transform: translateY(0);
}

.btn-project-detail:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 166, 107, 0.3);
}

/* Mobile Styles - Always show details */
@media (max-width: 768px) {
    .projects-grid {
        gap: 40px;
    }

    .project-card {
        height: 600px;
    }

    .project-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.85) 100%);
        padding: 32px 24px;
    }

    .project-details {
        transform: translateY(0);
    }

    .project-description,
    .btn-project-detail {
        opacity: 1;
        transform: translateY(0);
    }

    .project-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .project-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-project-detail {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .project-card {
        height: 500px;
    }

    .project-overlay {
        padding: 24px 20px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ============================================
   PROJECT DETAIL PAGE STYLES
   ============================================ */

/* Project Detail Hero */
.project-detail-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.project-detail-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-detail-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.project-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-detail-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    opacity: 0.95;
    line-height: 1.6;
}

/* Project Overview Section */
.project-overview {
    background: white;
    padding: 80px 0;
}

.project-overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.project-overview h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.project-overview p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

/* Image Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Design Highlights */
.design-highlights {
    background: var(--neutral-50);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.highlight-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 28px;
    color: white;
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--neutral-900);
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-600);
}

/* Project Video Section */
.project-video-section {
    padding: 80px 0;
    background: white;
}

.video-wrapper {
    max-width: 1200px;
    margin: 40px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.project-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--brown));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.project-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.project-cta p {
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-detail-hero {
        height: 50vh;
        min-height: 400px;
    }

    .project-overview,
    .design-highlights,
    .project-video-section {
        padding: 60px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Hero CTA Button (Book Free Consultation) */
.btn-hero-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ae8c55 0%, #8B6F47 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 10;
    text-align: center;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E6C68C 0%, #A88659 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #bfa06d 0%, #967d56 100%);
}

.btn-hero-cta:hover::before {
    opacity: 1;
}

/* Fix for Add to Cart button shrinking on mobile */
@media (max-width: 768px) {
    #add-to-cart-btn {
        max-width: 100% !important;
        flex: 1 1 auto;
    }
}

/* ========================================
   PREMIUM HERO SECTION ENHANCEMENTS
   ======================================== */

/* Primary CTA Button - Shop Now (Gold Gradient) */
.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A66B 50%, #B8955A 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;

}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 166, 107, 0.6);
    background: linear-gradient(135deg, #E6C68C 0%, #D4AF37 50%, #C9A66B 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary CTA Button - Get Free Consultation (Glassmorphism) */
.btn-consultation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-consultation:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-consultation:active {
    transform: translateY(0);
}

/* Trust Indicator Section */
.hero-trust-indicator {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0.95;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-stars {
    display: flex;
    gap: 4px;
    color: #FFD700;
    font-size: 18px;
}

.trust-score {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 8px 0 4px;
}

.trust-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-clients {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A66B, #8B6F47);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   MOBILE-FIRST RESPONSIVE DESIGN (≤768px)
   ======================================== */

@media (max-width: 768px) {

    /* Force hero section to exactly 100vh on mobile */
    .hero-section {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Stack buttons vertically on mobile */
    .hero-buttons {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 320px;
        padding: 0 !important;
    }

    /* Mobile button sizing - touch-friendly */
    .btn-primary,
    .btn-consultation {
        width: 100% !important;
        min-height: 52px !important;
        padding: 16px 24px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Ensure multiline button text is centered */
    .btn-multiline {
        line-height: 1.3 !important;
    }

    .btn-multiline .flex {
        width: 100%;
    }

    /* Trust indicator mobile adjustments */
    .hero-trust-indicator {
        margin-top: 32px;
        gap: 14px;
        width: 100%;
        max-width: 320px;
    }

    .trust-rating {
        padding: 10px 20px;
        font-size: 14px;
    }

    .trust-stars {
        font-size: 16px;
        gap: 3px;
    }

    .trust-score {
        font-size: 16px;
    }

    .trust-label {
        font-size: 13px;
    }

    .trust-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
        margin-left: -10px;
    }

    .trust-avatar:first-child {
        margin-left: 0;
    }

    .trust-text {
        font-size: 14px;
    }
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
    .hero-section {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    .hero-content {
        padding: 16px;
    }

    .hero-buttons {
        max-width: 280px;
        gap: 14px !important;
    }

    .btn-primary,
    .btn-consultation {
        min-height: 48px !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }

    .hero-trust-indicator {
        margin-top: 28px;
        max-width: 280px;
    }

    .trust-rating {
        padding: 8px 16px;
        gap: 8px;
    }

    .trust-stars {
        font-size: 14px;
    }

    .trust-score {
        font-size: 15px;
    }

    .trust-label {
        font-size: 12px;
    }

    .trust-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .trust-text {
        font-size: 13px;
    }
}