:root {
    /* Main Stylesheet for Lusso Sphere */
    /* Luxury Gold Theme - HSL values from Tailwind config/index.css */
    --gold: 43 74% 49%;
    --gold-light: 43 74% 60%;
    --gold-dark: 43 74% 40%;

    /* Backgrounds */
    --background: 40 33% 97%;
    --background-dark: 30 10% 8%;
    --background-cream: 40 33% 94%;

    /* Foreground */
    --foreground: 30 10% 10%;
    --foreground-light: 30 10% 98%;

    /* Cards */
    --card: 0 0% 100%;
    --card-foreground: 30 10% 10%;
    --card-dark: 30 10% 12%;

    /* Popover */
    --popover: 0 0% 100%;
    --popover-foreground: 30 10% 10%;

    /* Primary - Gold */
    --primary: 43 74% 49%;
    --primary-foreground: 30 10% 10%;

    /* Secondary */
    --secondary: 40 33% 94%;
    --secondary-foreground: 30 10% 10%;

    /* Muted */
    --muted: 40 20% 90%;
    --muted-foreground: 30 10% 40%;

    /* Accent */
    --accent: 43 74% 49%;
    --accent-foreground: 30 10% 10%;

    /* Destructive */
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;

    /* Border & Input */
    --border: 40 20% 85%;
    --input: 40 20% 85%;
    --ring: 43 74% 49%;

    --radius: 0.5rem;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* CTA Card Compact (Refer Page) */
.cta-card-compact {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 60px;
    color: white;
    text-align: left;
    border: none;
}

@media (max-width: 768px) {
    .cta-card-compact {
        padding: 40px 25px !important;
        border-radius: 24px !important;
    }

    .cta-card-compact i.ri-gift-line {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }

    .cta-card-compact h3 {
        font-size: 1.6rem !important;
    }

    .cta-card-compact p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }

    .cta-card-compact .btn {
        height: 52px !important;
        font-size: 0.9rem !important;
    }
}

.dark {
    --background: 30 10% 8%;
    --foreground: 30 10% 98%;
    --card: 30 10% 12%;
    --card-foreground: 30 10% 98%;
    --popover: 30 10% 12%;
    --popover-foreground: 30 10% 98%;
    --primary: 43 74% 49%;
    --primary-foreground: 30 10% 10%;
    --secondary: 30 10% 15%;
    --secondary-foreground: 30 10% 98%;
    --muted: 30 10% 20%;
    --muted-foreground: 30 10% 60%;
    --accent: 43 74% 49%;
    --accent-foreground: 30 10% 10%;
    --border: 30 10% 20%;
    --input: 30 10% 20%;
    --ring: 43 74% 49%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Utility Classes */
.gold-gradient {
    background: linear-gradient(135deg, hsl(43 74% 49%) 0%, hsl(43 74% 60%) 50%, hsl(43 74% 49%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive Utilities */


.hide-mobile {
    display: block;
}

.hide-desktop {
    display: none;
}

.text-center-mobile {
    text-align: left;
}

.full-width-mobile {
    width: 100%;
}

.flex-column-mobile {
    flex-direction: row;
}

.gap-mobile {
    gap: 15px;
}

/* Mobile First Breakpoints */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .full-width-mobile {
        width: 100% !important;
    }

    .flex-column-mobile {
        flex-direction: column !important;
    }

    /* Professional Section Spacing */
    section {
        padding: 60px 0 !important;
    }

    .container {
        padding: 0 1.5rem !important;
    }

    /* Unified Border Radius for Production Level Feel */
    .luxury-card,
    .cta-card-main,
    .feature-card,
    .highlights-card,
    .modal-content {
        border-radius: 24px !important;
    }

    /* Specific rounding for stats banner - top only */
    .trusted-stats-banner {
        border-radius: 24px 24px 0 0 !important;
    }

    /* Section Separation */
    section:not(:last-child) {
        border-bottom: 1px solid hsla(var(--primary), 0.05);
    }

    /* Typography Cleanup */
    h1 {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
    }

    h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0 !important;
    }

    .container {
        padding: 0 1.25rem !important;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .btn:not(#floating-enquire-btn):not(.filter-btn) {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* --- Product Modal Styles --- */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.show {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #0a0a0a;
    width: 100%;
    max-width: 600px;
    position: relative;
    border: 1px solid hsla(var(--primary), 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-radius: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal.show .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: hsl(var(--primary));
    color: #000;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .modal-container {
        max-width: 95%;
        max-height: 85vh;
        border-radius: 16px;
    }

    .modal-image {
        height: 200px;
    }

    .product-modal {
        padding: 10px;
    }
}

.modal-body {
    padding: 30px;
    color: white;
}

.modal-tag {
    display: inline-block;
    padding: 4px 12px;
    background: hsla(var(--primary), 0.1);
    border: 1px solid hsla(var(--primary), 0.2);
    color: hsl(var(--primary));
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-footer {
    display: flex;
    gap: 12px;
}

@media (max-width: 480px) {
    .modal-body {
        padding: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-footer {
        flex-direction: column;
    }
}

/* Header Responsive */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .logo-desktop {
        height: 45px !important;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px !important;
        display: flex;
        align-items: center;
        /* Default mobile header properties */
    }

    header:not(.scrolled) {
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        position: fixed !important;
        width: 100% !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    header.scrolled {
        background: hsla(30, 10%, 5%, 0.98) !important;
        backdrop-filter: blur(16px) !important;
        position: fixed !important;
        width: 100% !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    .header-inner {
        padding: 0 1rem;
        width: 100%;
    }

    .logo-desktop {
        height: 38px !important;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: hsla(30, 10%, 5%, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid hsl(30, 10%, 15%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 100;
}

.mobile-menu.open {
    max-height: 100vh;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(30, 10%, 80%);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: hsla(43, 74%, 49%, 0.1);
    color: hsl(43, 74%, 49%);
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Grid Layouts Responsive */
/* Tablet Breakpoint (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding: 0 2rem;
    }

    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-card:first-child {
        grid-column: span 4;
    }

    .bento-card:nth-child(2) {
        grid-column: span 2;
    }

    .bento-card:nth-child(3) {
        grid-column: span 2;
    }

    .bento-card:nth-child(4) {
        grid-column: span 3;
    }

    .bento-card:nth-child(5) {
        grid-column: span 2;
    }

    .bento-card:nth-child(6) {
        grid-column: span 6;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }

    h2 {
        font-size: clamp(2rem, 3vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.5rem, 2vw, 1.75rem);
    }

    .btn {
        padding: 0.8rem 1.75rem;
        font-size: 1rem;
    }

    .luxury-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .grid-3-col {
        grid-template-columns: 1fr !important;
    }

    .section-padding {
        padding: 60px 0 !important;
    }

    .container {
        padding: 0 1.5rem !important;
    }

    .text-center-tablet {
        text-align: center !important;
    }

    .flex-column-tablet {
        flex-direction: column !important;
    }

    .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        min-height: 44px;
    }

    .luxury-card {
        margin-bottom: 25px !important;
    }

    .luxury-card:last-child {
        margin-bottom: 0 !important;
    }

    .section-header {
        text-align: center !important;
    }

    .hero-section {
        height: auto !important;
        min-height: 60vh !important;
    }

    .hero-content {
        padding: 60px 1.5rem !important;
        text-align: center !important;
    }

    .hero-content div {
        margin: 0 auto !important;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-btn-group {
        flex-direction: column !important;
        gap: 15px !important;
        justify-content: center !important;
    }

    .hero-btn-group .btn {
        width: 100%;
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .bento-card {
        grid-column: span 12 !important;
        height: auto !important;
        min-height: 200px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .feature-card {
        margin-bottom: 20px !important;
    }

    .feature-card:last-child {
        margin-bottom: 0 !important;
    }

    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .category-card {
        height: 300px !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonial-card {
        padding: 30px !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        padding: 30px !important;
    }

    .cta-section {
        padding: 80px 1.5rem !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }

    .footer-section {
        text-align: center !important;
    }

    .social-links {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2,
    .grid-3-col {
        grid-template-columns: 1fr !important;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .portfolio-image {
        height: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .container {
        padding: 0 1rem !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .flex-column-mobile {
        flex-direction: column !important;
    }

    .btn {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.85rem !important;
        height: auto !important;
        min-height: 44px;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .luxury-card {
        margin-bottom: 20px !important;
        border-radius: 15px !important;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    }

    .section-header p {
        font-size: 1rem !important;
    }

    .hero-section {
        min-height: 50vh !important;
    }

    .hero-content {
        padding: 40px 1rem !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .bento-card {
        min-height: 200px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .feature-card {
        padding: 20px !important;
    }

    .category-card {
        height: 350px !important;
        min-height: 350px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .category-card img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .category-overlay-full {
        padding: 30px 20px !important;
        position: absolute !important;
        inset: 0 !important;
    }

    /* Hide the arrow circle on mobile */
    .category-card div[style*="width: 80px"][style*="height: 80px"] {
        display: none !important;
    }

    /* Adjust bottom content container */
    .category-overlay-full>div:last-child {
        justify-content: flex-start !important;
    }

    .category-card h3 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        margin-bottom: 10px !important;
    }

    .category-card p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .category-card button {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
        margin-top: 15px !important;
    }

    .category-card span[style*="align-self: flex-end"] {
        font-size: 0.8rem !important;
        padding: 6px 16px !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonial-card {
        padding: 25px !important;
    }

    .testimonial-slide {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .testimonial-slide>div {
        text-align: center !important;
    }

    .testimonial-slide img {
        margin: 0 auto !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .service-card,
    .service-box {
        padding: 30px 20px !important;
        margin-bottom: 0 !important;
    }

    .service-box h3 {
        font-size: 1.3rem !important;
    }

    .service-box p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .cta-section {
        padding: 60px 1.5rem !important;
    }

    .cta-card-main {
        padding: 40px 25px !important;
        border-radius: 20px !important;
    }

    .cta-card-main h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .cta-card-main p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .footer-section {
        text-align: center !important;
    }

    .social-links {
        justify-content: center !important;
    }

    .copyright-section {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        min-width: 48px;
    }

    .luxury-card {
        transition: none;
    }

    .luxury-card:hover {
        transform: none;
    }

    .feature-card {
        transition: none;
    }

    .feature-card:hover {
        transform: none;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .nav-link {
        padding: 1rem 1.25rem !important;
    }

    .mobile-nav-link {
        padding: 1rem 1.25rem !important;
    }
}

/* Footer Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding-bottom: 40px !important;
    }

    .footer-branding {
        text-align: left !important;
    }

    .footer-contact {
        text-align: left !important;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-section {
        text-align: left !important;
    }

    .footer-links {
        justify-content: flex-start !important;
    }

    .social-links {
        justify-content: flex-start !important;
    }

    .copyright-section {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: left !important;
    }

    .footer-logo {
        margin: 0 0 20px 0 !important;
    }

    footer .container>div {
        text-align: left;
    }

    .footer-top-grid,
    .footer-bottom-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-top-grid>div,
    .footer-bottom-grid>div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    footer ul,
    footer .footer-bottom-grid>div>div {
        align-items: flex-start !important;
    }

    /* Force specific flex containers in footer to left align */
    .footer-top-grid a[style*="display: flex"],
    .footer-bottom-grid div[style*="display: flex"] {
        justify-content: flex-start !important;
    }

    /* Map pin and other icons alignment fix */
    .footer-bottom-grid i {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 20px !important;
    }

    .footer-grid {
        gap: 30px !important;
    }

    .footer-top {
        gap: 30px !important;
        padding-bottom: 30px !important;
    }

    .footer-bottom-grid {
        gap: 25px !important;
    }

    .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }

    .footer-links li {
        margin-bottom: 8px !important;
    }

    .footer-links a {
        font-size: 0.85rem !important;
    }

    .contact-item {
        padding: 12px 15px !important;
    }

    .contact-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

.section-dark {
    background-color: hsl(var(--background-dark));
    color: hsl(var(--foreground-light));
}

.section-cream {
    background-color: hsl(var(--background-cream));
}

.luxury-card {
    background-color: hsl(var(--card));
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.luxury-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.5s ease;
    gap: 0.5rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: hsl(var(--gold-light));
    box-shadow: 0 10px 15px -3px rgba(var(--primary), 0.4);
}

.btn-luxury {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    position: relative;
    overflow: hidden;
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.7s;
}

.btn-luxury:hover::after {
    left: 100%;
}

/* Section Divider */
.section-divider {
    height: 6px;
    width: 80px;
    background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
    margin: 0 auto;
    border-radius: 10px;
    opacity: 0.8;
    position: relative;
    z-index: 10;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

header.scrolled {
    background-color: hsla(30, 10%, 5%, 0.95);
    backdrop-filter: blur(16px);
    padding: 0.5rem 0;
}

header:not(.scrolled) {
    background: transparent !important;
    padding: 1rem 0 !important;
    box-shadow: none !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 0.25rem;
    }
}

/* Global Logo Override */
.logo-desktop {
    height: 70px;
}

.nav-link {
    position: relative;
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: hsl(30, 10%, 75%);
    border-radius: 9999px;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: hsla(30, 10%, 98%, 0.05);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0;
    background-color: hsl(var(--primary));
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 60%;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsl(30, 10%, 15%);
    border: 1px solid hsl(30, 10%, 25%);
    color: white;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: hsla(30, 10%, 5%, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid hsl(30, 10%, 15%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.open {
    max-height: 100vh;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(30, 10%, 80%);
}

/* Marquee Animation */
.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.15em;
    padding: 0 3rem;
    color: hsla(var(--foreground), 0.3);
    transition: color 0.3s ease;
    height: 50px;
    flex-shrink: 0;
    width: auto;
}

@media (max-width: 768px) {
    .brand-item {
        height: 65px !important;
        /* Increased for better visibility */
        padding: 0 2rem;
    }
}

.brand-item:hover {
    color: hsl(var(--primary));
}

/* Testimonials Slider */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: grid;
    opacity: 1;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsla(30, 10%, 30%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    width: 32px;
    border-radius: 4px;
    background: hsl(var(--primary));
}

/* How It Works Timeline */
.timeline-line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary)));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.5s ease-out;
}

.timeline-line.visible {
    transform: scaleX(1);
}

.step-card:hover .step-number-circle {
    border-color: hsla(var(--primary), 0.5);
}

.brand-tag {
    padding: 6px 14px;
    background: hsl(30, 10%, 8%);
    color: hsla(0, 0%, 100%, 0.7);
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid hsla(30, 10%, 20%, 1);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.faq-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: hsla(var(--primary), 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-overlay-full {
    transition: all 0.5s ease;
}

.luxury-card:hover .category-overlay-full {
    background: linear-gradient(135deg, hsla(30, 10%, 5%, 0.85) 0%, hsla(30, 10%, 5%, 0.6) 50%, hsla(43, 74%, 49%, 0.2) 100%) !important;
}

.hover-line {
    z-index: 10;
}

.luxury-card:hover .hover-line {
    width: 100% !important;
}



.step-number-circle {
    width: 120px;
    height: 120px;
    margin: -60px auto 24px;
    border-radius: 50%;
    background: hsl(var(--card));
    border: 4px solid hsla(var(--primary), 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.5s ease;
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Services Section Box Styling */
.service-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: hsla(var(--primary), 0.3);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3rem;
    font-family: var(--font-serif);
    color: rgba(0, 0, 0, 0.03);
    font-weight: 700;
    transition: all 0.4s ease;
}

.service-box:hover .service-number {
    color: hsla(var(--primary), 0.1);
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-box:hover .service-icon {
    background: hsl(var(--primary));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-serif);
    color: var(--foreground);
    font-weight: 600;
}

.service-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Testimonials Slider Stability */
.testimonial-slide {
    min-height: 380px !important;
    align-items: center !important;
}

.testimonial-slide img {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    aspect-ratio: 1 / 1 !important;
}

@media (max-width: 768px) {
    #testimonials {
        height: 80vh !important;
        max-height: 600px !important;
        padding: 40px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    #testimonials .container {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    #testimonials .section-header {
        margin-bottom: 20px !important;
        flex-shrink: 0 !important;
    }

    .testimonial-slides-container {
        flex-grow: 1 !important;
        min-height: unset !important;
        position: relative !important;
        width: 100% !important;
    }

    .testimonial-slide {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .testimonial-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .testimonial-slide:not(.active) {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .testimonial-slide img {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        margin-bottom: 10px !important;
    }

    .testimonial-slide p {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .testimonial-slide i.ri-double-quotes-l {
        font-size: 2rem !important;
        margin-bottom: -10px !important;
    }

    .testimonial-slide h4 {
        font-size: 1.1rem !important;
        margin-bottom: 2px !important;
    }

    .testimonial-slide>div:last-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .testimonial-slide div[style*="gap: 5px; margin-bottom: 25px"] {
        margin-bottom: 10px !important;
    }

    #testimonials>.container>div:last-child {
        margin-top: 20px !important;
        flex-shrink: 0 !important;
    }
}

/* --- Responsive Layout Fixes --- */

/* Footer Responsive Grids */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

@media (max-width: 1023px) {

    .footer-top-grid,
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .footer-top-grid>div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-top-grid>div:first-child p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-top-grid>div:first-child .social-links,
    .footer-top-grid>div:first-child div[style*="display: flex"] {
        justify-content: center !important;
    }

    .footer-top-grid>div:not(:first-child),
    .footer-bottom-grid>div {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* Why Choose Us Mobile Margin */
@media (max-width: 1023px) {

    /* Global Font Size Reduction */
    html {
        font-size: 14px;
    }

    /* Hide header WhatsApp button on all tablets/phones */
    .header-wa-btn {
        display: none !important;
    }

    /* Ensure the burger menu button is visible */
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    #about {
        margin-top: 0 !important;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* About Section Feature Grid Container */
    .about-section .feature-grid {
        padding: 0 !important;
        margin-top: 10px !important;
        /* Add 10px space above the cards */
    }

    .about-section .container {
        padding: 20px !important;
    }

    /* Footer Cleanups */
    .footer-top-grid,
    .footer-bottom-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: left !important;
    }

    /* Left align the first column (Branding) in footer-top-grid */
    .footer-top-grid>div:first-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-top-grid>div:first-child p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer-top-grid>div:first-child .social-links,
    .footer-top-grid>div:first-child div[style*="display: flex"] {
        justify-content: flex-start !important;
    }

    .footer-top-grid>div,
    .footer-bottom-grid>div {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* Keep other footer columns left aligned */
    .footer-top-grid>div:not(:first-child),
    .footer-bottom-grid>div {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-bottom-grid ul {
        padding-left: 0 !important;
        align-items: flex-start !important;
    }

    /* Slider Controls - HIDDEN ON MOBILE */
    .hero-prev,
    .hero-next {
        display: none !important;
    }

    /* Universal Grid Stacking for Inline Grids */
    [style*="display: grid"]:not(.partners-grid),
    [style*="display:grid"]:not(.partners-grid) {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Keep Partners Grid 2-column on mobile */
    .partners-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    /* Except for specific grids we want to keep */
    /* Trusted Worldwide Banner Centering */
    .trusted-stats-banner {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        padding: 30px 20px !important;
    }

    .trusted-stats-banner>div:first-child {
        flex-direction: column !important;
        text-align: center !important;
    }

    .stats-grid {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
    }

    .stats-grid div[style*="height: 40px"] {
        display: none !important;
        /* Hide vertical separators on mobile if they look weird */
    }

    .luxury-card {
        grid-column: span 12 !important;
        height: auto !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
        /* Ensure images inside cards are properly handled */
        display: flex;
        flex-direction: column;
    }

    /* Uniform padding and spacing for mobile cards */
    .luxury-card>div[style*="padding"] {
        padding: 20px !important;
    }

    .luxury-card img {
        height: 250px !important;
        /* Standardize height on mobile to avoid mismatch */
        object-fit: cover;
    }

    /* Section Padding */
    section {
        padding: 40px 20px !important;
    }

    .hero,
    .hero-section {
        min-height: 600px !important;
        height: 90vh !important;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .hero-slide img {
        object-position: center center !important;
        height: 100% !important;
        width: 100% !important;
    }

    .hero-content {
        align-items: center !important;
        justify-content: center !important;
        padding-bottom: 60px !important;
        text-align: center !important;
    }

    .hero-content>div {
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-content .btn {
        margin: 0 auto !important;
        display: flex !important;
        width: fit-content !important;
    }

    /* Mobile Menu Position */
    .mobile-menu {
        top: 70px !important;
        z-index: 1000 !important;
    }

    /* How to Order Steps */
    .luxury-card>div[style*="flex-wrap: wrap"]:not(.brand-chips-container) {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .brand-chips-container {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .luxury-card [style*="min-width: 120px"] {
        min-width: unset !important;
        width: 140px !important;
    }

    /* Contact Form Fixes */
    #contact-form>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Fixed Image responsiveness */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Add spacing to center marquee between sections */
    .marquee-section-home {
        padding: 30px 0 !important;
        margin: 0 !important;
        background: #fff !important;
        overflow: hidden !important;
        width: 100% !important;
        position: relative !important;
        border-bottom: 1px solid hsla(var(--primary), 0.1) !important;
    }

    .marquee-container {
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    /* Remove the white gap between marquee and About section */
    .about-section {
        padding: 0 !important;
        background: #fff !important;
    }

    .process-card {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 20px !important;
    }

    .about-section>div:first-child {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Bento spacing cleanup */
    .bento-section {
        padding-top: 40px !important;
        padding-bottom: 0 !important;
    }

    .bento-grid {
        gap: 15px !important;
    }

    /* Redesign CTA Card to match image */
    .contact-cta-section {
        padding: 30px 15px !important;
    }

    .cta-card-main {
        padding: 40px 20px !important;
        border-radius: 2.5rem !important;
    }

    .cta-card-main h2 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }

    .cta-card-main p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
        line-height: 1.5 !important;
    }

    /* Target the button container */
    .cta-buttons-container {
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 40px !important;
    }

    .cta-card-main .btn {
        width: 100% !important;
        justify-content: center !important;
        height: 52px !important;
        font-size: 0.95rem !important;
    }

    /* Target the trust indicators container */
    .cta-trust-indicators {
        flex-direction: column !important;
        gap: 25px !important;
        padding-top: 30px !important;
    }

    .cta-trust-indicators>div {
        text-align: center !important;
    }

    /* Specific spacing fixes for sections around marquee */
    .bento-section {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }

    .about-section>div:first-child {
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }
}

/* --- Uniform Layout & Grid Styles --- */

/* Base Card Quality */
.luxury-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card {
    height: 450px;
}

/* Responsive Grid Containers */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Specific Desktop Heights for Bento Grid */
@media (min-width: 1025px) {
    .bento-card {
        height: 100%;
        /* Default */
    }

    .bento-card:nth-child(1),
    .bento-card:nth-child(2) {
        height: 380px;
    }

    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) {
        height: 260px;
    }

    .bento-card:nth-child(6) {
        height: 180px;
    }
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlights-card {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.category-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Professional Section Spacing */
.section-spacer {
    height: 100px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card {
        grid-column: span 1 !important;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .bento-grid,
    .feature-grid,
    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .bento-card {
        grid-column: span 1 !important;
        height: auto !important;
    }

    .luxury-card {
        border-radius: 16px;
    }

    .luxury-card img {
        height: 220px !important;
        object-fit: cover;
    }

    .feature-card {
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .highlights-grid {
        gap: 20px !important;
    }

    .highlights-card {
        height: 280px !important;
        min-height: 280px !important;
    }

    .highlights-card h3 {
        font-size: 1.3rem !important;
    }

    .highlights-card p {
        font-size: 0.85rem !important;
    }

    /* How It Works Steps */
    div[style*="width: calc(33.333%"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .step-number-circle {
        margin-bottom: 15px !important;
    }

    .section-spacer {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
    }

    .stats-grid>div {
        flex: 1 1 80px;
        text-align: center;
    }

    .stats-grid div[style*="font-size: 1.8rem"] {
        font-size: 1.4rem !important;
    }

    /* Feature Cards Extra Small Screens */
    .feature-grid {
        gap: 15px !important;
    }

    .feature-card {
        padding: 25px 20px !important;
    }

    /* Category Cards Extra Small */
    .category-card {
        height: 320px !important;
        min-height: 320px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .category-card img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .category-overlay-full {
        padding: 25px 15px !important;
    }

    .category-card h3 {
        font-size: 1.6rem !important;
        margin-bottom: 8px !important;
    }

    .category-card p {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
    }

    .category-card button {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }

    /* Modal Extra Small */
    .modal-container {
        max-width: 98%;
        max-height: 90vh;
    }

    .modal-image {
        height: 180px !important;
    }

    .modal-body {
        padding: 20px 15px !important;
    }

    .modal-title {
        font-size: 1.3rem !important;
    }

    /* Highlights Cards */
    .highlights-card {
        height: 250px !important;
        min-height: 250px !important;
    }

    .brand-tag {
        background: hsla(0, 0%, 100%, 0.05);
        border: 1px solid hsla(0, 0%, 100%, 0.1);
        color: rgba(255, 255, 255, 0.7);
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.8rem;
        display: inline-block !important;
        white-space: nowrap !important;
    }
}

/* Filter Tabs Scroll Fix */
.filter-tabs-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: -12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.filter-tabs-container::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: 44px !important;
    padding: 0 20px !important;
    font-size: 0.85rem !important;
}

/* Card Image Containers */
.card-image-container {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #000;
}

@media (max-width: 768px) {
    .card-image-container {
        height: 240px;
    }
}

.highlights-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.highlights-card:hover img {
    transform: scale(1.1);
}

/* Floating Enquiry Button */
#floating-enquire-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: hsl(var(--primary));
    color: #000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#floating-enquire-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

#floating-enquire-btn i {
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    #floating-enquire-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    #floating-enquire-btn i {
        font-size: 1.3rem;
    }
}