:root {
    /* Dark Luxury Palette - Maroon & Gold Edition */
    --primary-color: #800000;
    /* Maroon */
    --primary-light: #A52A2A;
    /* Lighter Maroon */
    --primary-dark: #4B0000;
    /* Darker Maroon */

    --accent-gold: #D4AF37;
    /* Metallic Gold */
    --accent-gold-light: #F4C430;
    /* Bright Gold */
    --accent-gold-dark: #AA8C2C;
    /* Dark Gold */

    --bg-dark: #121212;
    /* Deep Black */
    --bg-card: rgba(30, 30, 30, 0.6);
    /* Glassmorphism Base */
    --bg-glass: rgba(18, 18, 18, 0.85);
    /* Header Glass */

    --text-color: #F5F5F5;
    /* Off White */
    --text-muted: #B0B0B0;
    /* Silver Gray */
    --white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(128, 0, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 25%);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    /* Fallback */
    background: linear-gradient(to right, #ffffff, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 2px;
    /* Sharper corners for modern look */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::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.6s;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.5);
    border-color: var(--accent-gold);
    color: var(--white);
}

/* Gold Button Variant */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-color: var(--accent-gold-light);
    color: #000;
}

.btn-gold:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}


.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

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

ul {
    list-style: none;
}

/* Link Underline Effect */
.link-underline {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: var(--transition);
}

.link-underline:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid var(--primary-light);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

.btn:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background-color: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    /* Increased for prominence */
    width: auto;
    transition: transform 0.3s ease;
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    /* Contact Page Mobile Reorder */
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .reveal-left {
        order: 1;
        /* Info first */
    }

    .reveal-right {
        order: 2;
        /* Map second */
        width: 100%;
    }
}


.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a:hover::after,
/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all 0.2s;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    padding-left: 25px;
}

.dropdown-menu li a::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.hamburger .bar:nth-child(2) {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('../images/hero_construction.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: slowZoom 20s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 90px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to right, #fff, #e0e0e0);
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease forwards;
}

/* Hero Content Alignment */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content span {
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    animation: slideUp 1.2s ease forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    /* Safe for smaller screens */
}

.hero-content .btn {
    animation: slideUp 1.4s ease forwards;
    margin: 0 !important;
    /* Reset margins in favor of gap */
}

/* Featured Categories & Cards */

/* Featured Categories & Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}



.category-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Highlight Selected Product */
.category-card:target {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: slowZoom 1s ease-in-out alternate infinite;
    scroll-margin-top: 120px;
}

.category-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.category-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.category-card:hover .category-info h3 {
    color: var(--primary-color);
}

.category-info p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-grid h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

@media (min-width: 769px) {
    .footer-grid>div:nth-child(2) {
        text-align: center;
    }
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 90px !important;
        /* Increased for mobile visibility */
    }

    .hamburger {
        display: block;
    }



    .nav-links {
        position: fixed;
        left: -100%;
        top: 90px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        align-items: center;
        /* Center items horizontally */
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        /* Scrollable menu */
    }

    /* Custom Scrollbar for Mobile Menu */
    .nav-links::-webkit-scrollbar {
        width: 6px;
    }

    .nav-links::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, var(--accent-gold), var(--primary-color));
        border-radius: 10px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        /* Ensure list items take full width */
    }

    .nav-links li a {
        display: block;
        /* Make links block level */
        width: 100%;
        text-align: center !important;
        /* Force center alignment */
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0 !important;
        /* Force remove default padding */
        padding-inline-start: 0 !important;
        /* Extra safety */
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        list-style: none !important;
        transition: none !important;
        /* Kill animation */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        display: block;
        text-align: center !important;
    }

    .dropdown-menu li a {
        display: block;
        width: 100%;
        text-align: center !important;
        padding: 15px 0;
        /* More clickable area */
        font-size: 0.9rem;
        color: var(--text-muted);
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        /* Subtle separator */
        transition: none !important;
        /* Kill link animation */
    }

    /* Kill Hover Effects on Mobile */
    .dropdown-menu li a:hover {
        padding-left: 0 !important;
        background: transparent !important;
        color: var(--text-muted) !important;
        /* Optional: prevent color flash */
    }

    /* Structural Fix for Dropdown Container */
    .dropdown {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* 1. Reset positioning to stack naturally */
    .dropdown-menu,
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        position: static !important;
        /* Forces it into the flow */
        transform: none !important;
        /* Removes desktop centering transform */
        width: 100% !important;
        /* Takes full width of container */
        min-width: 100%;
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
        /* Inner shadow for depth */
        border: none;
        background: rgba(0, 0, 0, 0.3);
        /* Darker backdrop */
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        display: none;
        /* Default hidden */
        flex-direction: column;
        padding: 10px 0 !important;
        margin: 10px 0 !important;
    }

    /* Show when active */
    .dropdown.active .dropdown-menu {
        display: flex;
    }

    /* 2. Center the text and links */
    .dropdown-menu li a {
        padding: 12px 0 !important;
        text-align: center !important;
        width: 100%;
        justify-content: center;
        display: flex;
        padding-left: 0 !important;

        /* Premium Styling - Refined */
        color: var(--text-muted);
        font-family: var(--font-body);
        /* Switch back to body font for readability */
        font-size: 0.95rem;
        /* Slightly larger, more readable */
        font-weight: 500;
        /* text-transform: uppercase; REMOVED */
        /* letter-spacing: 2px; REMOVED */
        transition: all 0.3s ease;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .dropdown-menu li a:active,
    .dropdown-menu li a:focus {
        color: var(--accent-gold);
        background: rgba(212, 175, 55, 0.05);
    }

    /* 3. Ensure the parent list item doesn't interfere */
    .nav-links li {
        width: 100%;
        /* Ensures the parent container is full width */
    }

    /* Fix Mobile Footer Alignment */
    .footer-grid {
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    /* Center Contact Info Items that have icons */
    .footer-grid p,
    .footer-grid li,
    .footer-grid a {
        justify-content: center;
        text-align: center;
    }

    /* Ensure flex items in footer (like icon+text) are centered */
    .footer-grid p i,
    .footer-grid li i {
        margin-right: 10px;
        /* Keep spacing but let flex center them */
    }

    .hero {
        padding-top: 130px;
        /* Reduced from 180px to bring content up */
        height: auto;
        min-height: 100vh;
        padding-bottom: 50px;
        display: flex;
        align-items: center;
    }

    /* Fix About Page Mobile Overflow */
    .about-content {
        gap: 30px;
    }

    .about-image,
    .about-text {
        min-width: 100%;
        /* Prevents overflow on small screens */
    }




    .hero-content h1 {
        font-size: 1.8rem;
        /* Further reduced from 2.2rem */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.95rem;
        /* Slightly smaller */
        line-height: 1.4;
        padding: 0 10px;
        margin-bottom: 25px;
        /* Reduce bottom margin */
    }

    /* Mobile Layout Refinements */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns */
        gap: 10px;
    }

    .brand-card h3 {
        font-size: 0.9rem !important;
        /* Smaller brand text */
        margin-top: 5px;
    }

    /* Global Mobile Align & Resize */
    section,
    .container,
    .footer-grid {
        text-align: center;
    }

    /* Force bullets left on mobile generally, but override for footer */
    ul,
    li {
        text-align: left;
    }

    /* Fix Footer Links Centering on Mobile */
    .footer-grid ul,
    .footer-grid li {
        text-align: center;
        padding-left: 0;
        /* Remove default padding if any */
    }

    h2 {
        font-size: 1.6rem !important;
        /* Smaller headings */
        margin-bottom: 15px;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .hero-content .btn {
        width: auto;
        /* Allow buttons to size naturally */
        min-width: 140px;
        /* Ensure touch target size */
        padding: 12px 20px;
        /* Slightly smaller padding */
        font-size: 0.9rem;
        display: inline-flex;
        /* Keep inline */
        margin: 5px;
        /* Add spacing around buttons */
    }

    /* Footer Logo Center Align */
    .footer-grid div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-grid div:first-child a {
        display: inline-block;
    }

    /* Mobile Brand Grid Fix */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .brand-card {
        padding: 15px 10px;
        /* Reduced padding */
    }

    .brand-card h3 {
        font-size: 0.8rem;
        /* Smaller text */
        font-family: 'Outfit', sans-serif;
        /* Premium modern font */
        text-transform: uppercase;
        /* Classy look */
        letter-spacing: 1px;
        /* Spaced out */
        color: var(--accent-gold);
        /* Gold color for contrast */
    }

    /* Mobile Hero Buttons Inline */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content .btn {
        width: auto !important;
        /* Allow auto width */
        min-width: 140px;
        margin: 5px;
        display: inline-flex;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* Container for buttons to sit side-by-side if needed, 
       but simple inline-block with auto width usually simpler */
    .hero-content br+.btn {
        margin-left: 0 !important;
        /* Reset margin from inline style */
    }
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* WhatsApp Buttons & Animations */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    /* Fix alignment */
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    gap: 10px;
    /* Space between icon and text */
}

/* Ensure Icon doesn't get squished */
.btn-whatsapp i {
    font-size: 1.2em;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    border-color: #128C7E;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Enhanced Page Header */
/* Enhanced Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/header_texture.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 150px 0 80px;
    color: white;
    text-align: center;
    margin-top: 90px;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    /* Inner shadow for depth */
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Image Slider */
.slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 400%;
    /* 4 images */
    height: 100%;
    animation: slide 16s infinite;
}

.slider-track img {
    width: 25%;
    /* 100% / 4 */
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-25%);
    }

    45% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    70% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-75%);
    }

    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Slider for 5 Images */
.slider-track-5 {
    display: flex;
    width: 500%;
    /* 5 images */
    height: 100%;
    animation: slide-5 20s infinite;
}

.slider-track-5 img {
    width: 20%;
    /* 100% / 5 */
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slide-5 {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-20%);
    }

    /* Move to 2nd image */
    35% {
        transform: translateX(-20%);
    }

    40% {
        transform: translateX(-40%);
    }

    /* Move to 3rd image */
    55% {
        transform: translateX(-40%);
    }

    60% {
        transform: translateX(-60%);
    }

    /* Move to 4th image */
    75% {
        transform: translateX(-60%);
    }

    80% {
        transform: translateX(-80%);
    }

    /* Move to 5th image */
    95% {
        transform: translateX(-80%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Slider for 8 Images */
.slider-track-8 {
    display: flex;
    width: 800%;
    /* 8 images */
    height: 100%;
    animation: slide-8 32s infinite;
}

.slider-track-8 img {
    width: 12.5%;
    /* 100% / 8 */
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slide-8 {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(0);
    }

    12.5% {
        transform: translateX(-12.5%);
    }

    22.5% {
        transform: translateX(-12.5%);
    }

    25% {
        transform: translateX(-25%);
    }

    35% {
        transform: translateX(-25%);
    }

    37.5% {
        transform: translateX(-37.5%);
    }

    47.5% {
        transform: translateX(-37.5%);
    }

    50% {
        transform: translateX(-50%);
    }

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

    62.5% {
        transform: translateX(-62.5%);
    }

    72.5% {
        transform: translateX(-62.5%);
    }

    75% {
        transform: translateX(-75%);
    }

    85% {
        transform: translateX(-75%);
    }

    87.5% {
        transform: translateX(-87.5%);
    }

    97.5% {
        transform: translateX(-87.5%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Slider for 7 Images */
.slider-track-7 {
    display: flex;
    width: 700%;
    /* 7 images */
    height: 100%;
    animation: slide-7 28s infinite;
}

.slider-track-7 img {
    width: 14.2857%;
    /* 100% / 7 */
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slide-7 {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(0);
    }

    12% {
        transform: translateX(-14.28%);
    }

    21% {
        transform: translateX(-14.28%);
    }

    23% {
        transform: translateX(-28.57%);
    }

    33% {
        transform: translateX(-28.57%);
    }

    35% {
        transform: translateX(-42.85%);
    }

    45% {
        transform: translateX(-42.85%);
    }

    47% {
        transform: translateX(-57.14%);
    }

    57% {
        transform: translateX(-57.14%);
    }

    59% {
        transform: translateX(-71.42%);
    }

    69% {
        transform: translateX(-71.42%);
    }

    71% {
        transform: translateX(-85.71%);
    }

    81% {
        transform: translateX(-85.71%);
    }

    100% {
        transform: translateX(0);
    }
}

/* About Page Specifics */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image,
.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: block;
}

.about-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-align: left;
}

.about-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 20px;
}

/* Brands Section */
.brands-section {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    /* Enhanced blur */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle Gold Border */
    border-radius: 12px;
    /* Smoother corners */
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* Subtle shadow */
    position: relative;
    overflow: hidden;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add a sheen effect on hover */
.brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.brand-card:hover::after {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}


.brand-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-muted);
    transition: var(--transition);
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.brand-card:hover h3 {
    color: var(--white);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Fancy Divider */
.fancy-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 200px;
    margin: 60px auto;
    border: none;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(128, 0, 0, 0.5);
}

.fancy-divider.full-width {
    width: 100%;
    margin: 0;
}

/* Ultra-Modern CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0505 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-section .btn {
    margin-top: 30px;
}


/* Modern Contact Form */
.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Fix for Review Widget on Mobile */
@media (max-width: 768px) {
    .lc_reviews_widget {
        min-height: 500px !important;
        display: block !important;
    }
}