/* -----------------------------
   Design System & Variables
----------------------------- */
:root {
    /* Colors */
    --primary-color: #0b1b36;          /* Deep Dark Blue */
    --secondary-color: #D4AF37;        /* Soft premium gold */
    --secondary-hover: #b5952f;
    --background-light: #f4f6f9;       /* Very light blue-grey for main bg */
    --background-white: #FFFFFF;
    --text-main: #333333;
    --text-light: #556b82;
    --text-inverse: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --max-width: 1200px;
    --nav-height: 80px;
    --section-padding: 80px 20px;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
}

/* -----------------------------
   Reset & Base Styles
----------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default to cover to prevent stretching */
}

/* -----------------------------
   Aspect Ratio Utilities
----------------------------- */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-3-2 { aspect-ratio: 3 / 2; }
.aspect-avatar { aspect-ratio: 1 / 1; border-radius: 50%; }

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------
   Typography Utilities
----------------------------- */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* -----------------------------
   Buttons
----------------------------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px; /* pill shape */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f0c842);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f0c842, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* -----------------------------
   Navigation Menu
----------------------------- */
.navbar {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-inverse);
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.navbar.scrolled .brand-name {
    font-size: 1.4rem;
}

.navbar.scrolled .brand-tagline {
    font-size: 0.7rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-inverse);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--primary-color); /* Matches navbar dark theme */
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-top: 3px solid var(--secondary-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-inverse) !important; /* White text */
    padding: 18px 45px; /* Further increased for spaciousness */
    display: block;
    font-size: 0.95rem;
    line-height: 1.6; /* Increased line-height for readability */
    border-bottom: 1px solid rgba(255,255,255,0.08); /* Subtle border */
    transition: all 0.3s ease;
}

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

.dropdown-content a::after {
    display: none; /* remove hover line */
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.15); /* More visible gold tint */
    color: var(--secondary-color) !important;
    padding-left: 35px; /* Distinct right shift */
}

/* Submenu styling base */
.dropdown-content {
    list-style: none;
}
.dropdown-content > li {
    position: relative;
    width: 100%;
}
.dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%; /* positioned to the right */
    background-color: var(--primary-color); /* Matches navbar dark theme */
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-left: 3px solid var(--secondary-color);
    list-style: none;
}
.dropdown-submenu:hover > .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.submenu-btn {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
}
.dropdown-submenu:hover > a.submenu-btn i {
    transform: translateX(5px);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #f0c842; /* Brighter gold for better contrast */
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transition: var(--transition);
}

.menu-toggle:active,
.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* -----------------------------
   Footer
----------------------------- */
.footer {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    padding: 80px 20px 20px;
    margin-top: auto;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--text-inverse);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.brand-col p {
    color: #aaaaaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--text-inverse);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-col ul li a::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.links-col ul li a:hover {
    color: var(--secondary-color);
}

.links-col ul li a:hover::before {
    transform: translateX(5px);
}

.contact-col p {
    color: #aaaaaa;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-col p i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-col p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-col p a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #777777;
    font-size: 0.9rem;
}

/* -----------------------------
   Responsive Design
----------------------------- */
@media screen and (max-width: 992px) {
    .nav-container {
        padding: 0 15px; /* Small consistent padding from the edges */
    }

    .logo-wrapper {
        max-width: calc(100% - 60px); /* Reserve space for the menu toggle */
    }

    .logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .brand-name, 
    .brand-tagline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(var(--nav-height) + 5px);
        right: 15px;
        left: auto;
        width: 220px;
        background-color: rgba(11, 27, 54, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 10px 0;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        align-items: flex-start;
        text-align: left;
        z-index: 1000;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar.scrolled .nav-menu {
        top: 75px;
    }

    .logo-img {
        height: 50px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .nav-menu.active {
        display: flex;
        animation: scaleIn 0.2s ease-out;
    }

    @keyframes scaleIn {
        from { opacity: 0; transform: scale(0.95) translateY(-10px); transform-origin: top right; }
        to { opacity: 1; transform: scale(1) translateY(0); transform-origin: top right; }
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

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

    .nav-menu li a:hover {
        background-color: rgba(212, 175, 55, 0.1);
        color: var(--secondary-color);
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255,255,255,0.03);
        border: none;
        border-left: 3px solid var(--secondary-color);
        border-radius: 0;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--text-inverse) !important;
        padding: 10px 10px 10px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Mobile Submenu */
    .dropdown-submenu-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0,0,0,0.2); /* Slightly darker for depth in mobile view */
        border: none;
        border-left: 3px solid var(--secondary-color);
        border-radius: 0;
        display: none;
    }
    
    .dropdown-submenu.active > .dropdown-submenu-content {
        display: block;
    }

    .dropdown-submenu-content a {
        padding-left: 35px !important;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: -10px; /* Pull to right edge to counteract icon padding, keeping touch target intact */
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .brand-col, 
    .contact-col {
        grid-column: span 2;
    }

    /* Why Choose Us Perfect Square Mobile Fix */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 15px 10px;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .feature-item h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 0.72rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

}

/* -----------------------------
   Layout & Utility Classes
----------------------------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section-padding {
    padding: var(--section-padding);
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* -----------------------------
   Hero Slider Section
----------------------------- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-inverse);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11,27,54,0.7), rgba(0,0,0,0.8));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide.active .slide-content {
    animation: fadeInUp 1s ease forwards;
}

.slide-content h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.4); /* Stronger shadow for readability */
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #e0e0e0;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--text-inverse);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------
   Intro Section
----------------------------- */
.intro {
    background-color: var(--background-white);
}

/* -----------------------------
   Featured & Why Us Sections
----------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 300px;
    overflow: hidden;
}

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

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-light);
}

.why-us {
    background-color: var(--primary-color);
    color: var(--text-inverse);
}

.why-us .section-title {
    color: var(--text-inverse);
}

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

.feature-item {
    text-align: left;
    padding: 30px;
    background-color: rgba(255,255,255,0.03);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-item:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--text-inverse);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #aaaaaa;
    font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* Hero Logo */
.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(0,0,0,0.5);
    margin: 0 auto 30px;
    display: block;
    animation: fadeIn 1.5s ease;
    transition: var(--transition);
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.7);
}

/* -----------------------------
   Inner Pages Styles
----------------------------- */
.page-header {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    padding: 150px 20px 80px;
    text-align: center;
    background-image: linear-gradient(rgba(26,26,26,0.9), rgba(26,26,26,0.9)), url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media screen and (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
}

.category-section {
    margin-bottom: 80px;
    padding-top: var(--nav-height); /* For anchor link offsets */
    margin-top: calc(-1 * var(--nav-height));
}

.category-header {
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 15px;
}

.category-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

/* -----------------------------
   Testimonials & Contact
----------------------------- */
.testimonial-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.client-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
.contact-form {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.contact-info {
    flex: 1;
}
.contact-info .feature-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--background-white);
}
.contact-info .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
}
.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.map-container {
    margin-top: 30px;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media screen and (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ================================================
   MODERN UI ENHANCEMENTS — Scroll Animations
================================================ */

/* Scroll Reveal Base */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Only hide if JS is confirmed active */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(40px);
}
.js-enabled .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-enabled .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}
.js-enabled .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-enabled .reveal-right {
    opacity: 0;
    transform: translateX(50px);
}
.js-enabled .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Staggered children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: none; }

/* ================================================
   Hero Section — Enhanced Typography & Animation
================================================ */
.hero-content h1 {
    font-size: 3.8rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: heroText 1.2s ease forwards;
    opacity: 0;
}
@keyframes heroText {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content p {
    animation: heroText 1.4s ease 0.3s forwards;
    opacity: 0;
}
.hero-buttons {
    animation: heroText 1.4s ease 0.6s forwards;
    opacity: 0;
}

/* Animated separator line under sections */
.section-title::after {
    background: linear-gradient(90deg, var(--secondary-color), #f0c842, var(--secondary-color));
    background-size: 200% auto;
    animation: shimmerLine 3s linear infinite;
    border-radius: 2px;
}
@keyframes shimmerLine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ================================================
   Product Cards — Glassmorphism + depth
================================================ */
.product-card {
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: var(--background-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
    transform: translateY(-14px) scale(1.01);
    box-shadow: 0 24px 50px rgba(0,0,0,0.13), 0 0 0 1px rgba(212, 175, 55, 0.15);
}
.product-img {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
.product-card:hover .product-img img {
    transform: scale(1.08);
}
.product-info {
    border-top: 2px solid rgba(212, 175, 55, 0.1);
}

/* ================================================
   Feature Items — Glassmorphism dark cards
================================================ */
.feature-item {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.08);
}
.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.04), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-item:hover::before {
    opacity: 1;
}
.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 0 20px;
    transition: all 0.4s ease;
    font-size: 1.8rem;
}
.feature-item:hover .feature-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(5deg);
}

/* ================================================
   Navbar — Active link indicator dot
================================================ */
.nav-menu li a.active {
    color: var(--secondary-color);
    font-weight: 600;
}
.nav-menu li a {
    font-size: 0.93rem;
    letter-spacing: 0.3px;
    font-weight: 400;
    position: relative;
}

/* ================================================
   Footer Social icons enhanced
================================================ */
.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}
.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary-color), #f0c842);
    color: #1a1a1a;
    border-color: transparent;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ================================================
   Testimonial Cards — enhanced
================================================ */
.testimonial-card {
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

/* ================================================
   Section Background Alternating Accent
================================================ */
.intro {
    background: linear-gradient(180deg, var(--background-white) 0%, #f5f0e8 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.12);
}

/* ================================================
   Page header gradient divider
================================================ */
.page-header {
    padding-bottom: 60px;
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* ================================================
   Form fields on Contact Page
================================================ */
.form-control {
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: #fafafa;
    transition: all 0.3s ease;
}
.form-control:focus {
    background-color: #fff;
    transform: translateY(-1px);
}

/* ================================================
   Category section headers
================================================ */
.category-header {
    position: relative;
}
.category-header::after {
    content: '';
    display: block;
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--secondary-color), #f0c842);
    margin-top: 10px;
    border-radius: 2px;
}

/* ================================================
   Responsive polish
================================================ */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .feature-icon {
        margin: 0 auto 15px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   Scroll-to-top pulse button (JS injected)
================================================ */
#scroll-to-top {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-color), #f0c842);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#whatsapp-float {
    width: 44px;
    height: 44px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

#whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #128c7e;
    color: #fff;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
#scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}


/* ================================================
   Stats Bar
================================================ */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e1e2d 100%);
    padding: 60px 20px;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: left;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}
.stat-item::after {
    content: '';
    position: absolute;
    right: -10px; top: 20%;
    height: 60%; width: 1px;
    background: rgba(212, 175, 55, 0.15);
}
.stat-item:last-child::after { display: none; }

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
}
.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 2px;
}
.stat-label {
    display: block;
    color: #e2e8f0;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
}
@media screen and (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
}
@media screen and (max-width: 480px) {
    .stat-number { font-size: 2.8rem; }
    .stat-suffix { font-size: 1.6rem; }
    .stat-label { font-size: 0.75rem; }
    .stats-bar { padding: 40px 15px; }
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--secondary-color), #f0c842);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}
.product-badge.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

/* Category Labels */
.cat-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    position: absolute;
    top: -20px; right: 0;
    pointer-events: none;
}
.category-header {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.category-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

/* Frame Tabs */
.frame-tabs-bar {
    background: var(--background-white);
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    position: sticky;
    top: var(--nav-height);
    z-index: 99;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.frame-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.frame-tabs::-webkit-scrollbar { display: none; }
.frame-tab {
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.frame-tab:hover, .frame-tab.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.custom-cta-card {
    border: 2px dashed rgba(212, 175, 55, 0.4) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(212, 175, 55, 0.06)) !important;
}
.custom-cta-card:hover {
    border-color: var(--secondary-color) !important;
}

/* -----------------------------
   Floating Action Buttons
----------------------------- */
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.whatsapp-float {
    background-color: #25d366;
}

.call-float {
    background-color: #D4AF37; /* Consistent Gold */
    color: #1a1a1a !important;
}

/* Map Section Enhancements */
.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.map-link-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

@media screen and (max-width: 768px) {
    .floating-btn {
        width: 50px; /* Slightly larger for touch */
        height: 50px;
        font-size: 22px;
    }
}
/* -----------------------------
   Gallery Filters & Lightbox
----------------------------- */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(11,27,54,0.9));
    padding: 30px 20px 20px;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: var(--text-inverse);
    font-size: 0.85rem;
    margin: 0;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11,27,54,0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.5);
    color: var(--text-inverse);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--text-inverse);
    font-size: 1.1rem;
    padding: 10px;
}

/* -----------------------------
   Testimonials
----------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 4px solid var(--secondary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.client-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.client-details .rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
}


/* ================================================
   Homepage Specific Sections (Consolidated)
================================================ */

/* --- Gallery Preview --- */
.gallery-preview {
    background-color: #0b1120; /* Slightly deeper navy to match reference */
    color: var(--text-inverse);
    padding: 100px 0;
}

.gallery-preview .premium-title {
    color: var(--text-inverse);
}

.gallery-preview .premium-subtitle {
    color: #a0aec0;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Reduced gap for a tighter, cleaner look */
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-preview-item {
    position: relative;
    border-radius: 20px; /* Reduced for a more rectangular, professional look */
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #0c1b33;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border like the ref */
}

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

.gallery-preview-item:hover {
    transform: translateY(-8px); /* Subtle lift instead of scale */
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.gallery-preview-item:hover img { 
    transform: scale(1.1); 
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 12, 28, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay { 
    opacity: 1; 
}

.gallery-preview-overlay span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-body);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay span {
    transform: translateY(0);
}

.gallery-preview-cta {
    text-align: center;
}

.gallery-preview-cta .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f0c842);
    color: #050c1c !important;
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Testimonials Page & Home --- */
.testimonials-section, .testimonials-home {
    background-color: #050c1c !important; /* Very deep dark navy */
    padding: 100px 0 !important;
    overflow: hidden;
    position: relative;
}

.testimonials-section .section-title, .testimonials-home .section-title {
    color: var(--text-inverse);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.testimonials-section .section-subtitle, .testimonials-home .section-subtitle {
    color: #a0aec0; /* Lighter blue-grey */
    margin-bottom: 60px;
    font-size: 1.15rem;
}

.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 24px;
    padding: 20px 0 40px;
    animation: slideLeftHome 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeftHome {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card-themed {
    flex: 0 0 380px;
    background: #0c1b33 !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 20px;
    padding: 45px 35px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.testimonial-card-themed:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-card-themed .quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3.5rem;
    color: rgba(212, 175, 55, 0.12) !important;
    margin: 0;
    line-height: 1;
}

.testimonial-card-themed .testimonial-text {
    font-style: italic !important;
    color: #ffffff !important;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    min-height: 110px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.testimonial-card-themed .client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-card-themed .client-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.testimonial-card-themed .client-details h4 {
    color: #D4AF37 !important;
    font-size: 1.1rem;
    margin: 0 0 6px 0;
    font-family: var(--font-heading);
    font-weight: 600;
}

.testimonial-card-themed .rating {
    color: #D4AF37 !important;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .testimonial-card-themed {
        flex: 0 0 300px;
        padding: 30px 20px 20px;
    }
    .testimonial-card-themed .testimonial-text {
        font-size: 0.9rem;
        min-height: 120px;
    }
    .testimonial-carousel-wrapper {
        margin: 0;
        padding: 0 10px;
    }
}

/* --- Contact Home --- */
.contact-home {
    background-color: var(--background-white);
}
/* Contact Home Grid & Layout (Full width row info) */
/* ================================================
   PREMIUM CONTACT SECTION — Unified Layout
================================================ */

.premium-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.premium-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-hours-highlight {
    background: rgba(11,27,54,0.04);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--primary-color);
    border: 1px dashed rgba(212,175,55,0.3);
    margin-bottom: 5px;
}
.premium-hours-highlight i { color: var(--secondary-color); font-size: 1.1rem; }

.premium-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.premium-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.premium-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(212,175,55,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.premium-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 700;
}
.premium-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
.premium-card-content a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.premium-card-content a:hover { text-decoration: underline; }

/* Dark Navy Form Card */
.premium-contact-form-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}
.premium-contact-form-card h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}
.premium-contact-form-card .form-group label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}
.premium-contact-form-card .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 1rem;
    transition: 0.3s;
}
.premium-contact-form-card .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
}
.premium-contact-form-card .btn-submit-gold {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 15px;
}
.premium-contact-form-card .btn-submit-gold:hover {
    background: #f0c842;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

@media screen and (max-width: 992px) {
    .premium-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .premium-contact-form-card {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .premium-contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .premium-card-icon {
        margin-bottom: 15px;
    }

    .premium-hours-highlight {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .premium-contact-form-card {
        padding: 30px 20px;
    }

    .premium-contact-form-card h3 {
        text-align: center;
        font-size: 1.5rem;
    }
}

/* Contact form themed */
.contact-home-form {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-home-form h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 28px;
}
.contact-home-form .form-group label {
    color: var(--text-inverse);
    opacity: 0.85;
}
.contact-home-form .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-inverse);
    border-radius: 8px;
}
.contact-home-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
.contact-home-form .form-control:focus {
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.contact-home-form textarea.form-control { resize: vertical; }

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11,27,54,0.8); /* Darker background */
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Enquiry CTA Strip --- */
.inquiry-strip {
    background: linear-gradient(135deg, var(--secondary-color), #f0c842 60%, #c49a45);
    padding: 60px 20px;
    text-align: center;
}
.inquiry-strip h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.inquiry-strip p {
    color: rgba(11,27,54,0.75);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.inquiry-strip .btn-dark {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}
.inquiry-strip .btn-dark:hover {
    background: transparent;
    color: var(--primary-color);
}
.inquiry-strip-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   Responsive Optimization (Granular)
================================================ */

/* --- Tablet & Medium Desktop (992px) --- */
@media screen and (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
/* Utility for themed feature cards used in Corporate Gifting */
.feature-card-themed {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(212,175,55,0.15) !important;
}
.feature-icon-themed {
    background: rgba(212,175,55,0.12) !important;
}
.feature-icon-themed i {
    color: var(--secondary-color) !important;
}
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        align-items: flex-start;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .contact-home-grid { grid-template-columns: 1fr; }
}

/* --- Mobile (768px) --- */
@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    .section-padding { padding: var(--section-padding); }
    
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }

    .navbar { height: 70px; }
    .logo-img { height: 55px; }
    .brand-name { font-size: 1.3rem; }
    .brand-tagline { font-size: 0.65rem; }

    /* Stacking grids - 2 columns for smaller cards, 1 column for product catalog */
    .features-grid, .stats-grid, .why-corporate-grid, .strengths-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .corp-img-wrapper {
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    .testimonials-grid, .contact-home-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .gallery-preview-grid { 
        grid-template-columns: 1fr !important; 
        gap: 24px;
    }

    /* Button adjustments */
    .btn, .inquiry-strip .btn-dark, .btn-themed-gold, .btn-themed-dark {
        width: 100%;
        padding: 16px 24px;
        font-size: 1.05rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }

    /* Hero section font sizing */
    .slide-content h1 { font-size: 2.2rem; }
    .slide-content p { font-size: 1rem; margin-bottom: 30px; }

    /* Footer stacking - Enhanced for side-by-side links */
    .footer-container { 
        grid-template-columns: repeat(2, 1fr) !important; 
        text-align: left;
        gap: 40px 20px;
    }
    .brand-col, .contact-col {
        grid-column: span 2;
    }
    .footer-col h4::after { left: 0; transform: none; }
    .contact-col p, .social-links { justify-content: flex-start; }


    /* FABs positioning and size */
    body .floating-container { 
        right: 16px !important; 
        bottom: 16px !important; 
        gap: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        z-index: 9999 !important;
    }
    body .floating-btn { 
        width: 48px !important; 
        height: 48px !important; 
        min-width: 48px !important;
        min-height: 48px !important;
        font-size: 22px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
    }
    body .whatsapp-float {
        background-color: #25D366 !important;
        color: white !important;
    }
    body .call-float {
        background-color: var(--secondary-color) !important;
        color: #1a1a1a !important;
    }
}

/* --- Small Mobile (480px) --- */
@media screen and (max-width: 480px) {
    .section-title { font-size: 1.75rem; }
    .slide-content h1 { font-size: 1.8rem; }
    .gallery-preview-grid { grid-template-columns: 1fr; }
    .logo-text { display: flex; flex-direction: column; }
    .brand-name { font-size: 1.15rem; }
    .brand-tagline { font-size: 0.6rem; }
    .logo-img { height: 60px; }
    .contact-home-form { padding: 30px 20px; }
    .contact-home-form h3 { font-size: 1.4rem; }
}

/* --- Global Button & Interaction Polish --- */
.btn {
    min-height: 48px; /* Touch-friendly minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* --- Policy Page --- */
.policy-container {
    max-width: 900px;
}
.policy-section {
    padding: 20px 0;
    scroll-margin-top: 100px; /* Space for sticky navbar */
}
.policy-content {
    margin-top: 25px;
}
.policy-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 30px 0 12px;
}
.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}
.policy-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
    margin: 40px 0;
}

/* Ensure smooth scroll for policy anchors */
html {
    scroll-behavior: smooth;
}

/* Ensure images never overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for floating buttons to the right as requested */
.floating-container {
    left: auto !important;
    right: 30px !important;
}

/* --- Global Map Section --- */
.global-map-section {
    background-color: var(--primary-color);
    text-align: center;
    padding: 30px 20px 0 20px;
}

.map-toggle-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--secondary-color);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.map-toggle-btn:hover, .map-toggle-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--secondary-color);
}

.map-toggle-btn i {
    transition: transform 0.4s ease;
}

.map-toggle-btn.active i {
    transform: rotate(180deg);
}

.global-map-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.global-map-container.expanded {
    max-height: 800px;
}

.map-wrapper {
    margin-top: 10px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    display: block;
}

.map-actions {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* --- Global WhatsApp Redirection Popup --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-container {
    background: var(--background-white);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(-20px);
    animation: slideDownPopup 0.4s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--secondary-color);
    position: relative;
}

.popup-container i {
    font-size: 4.5rem;
    color: #25D366; /* WhatsApp Green */
    margin-bottom: 25px;
    display: block;
}

.popup-container h3 {
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.popup-container p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@keyframes slideDownPopup {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media screen and (max-width: 480px) {
    .popup-container {
        padding: 35px 25px;
    }
    .popup-container i {
        font-size: 3.5rem;
    }
    .popup-container h3 {
        font-size: 1.4rem;
    }
}

/* ------------------------------------------------
   Corporate Gifting Page Enhancements
------------------------------------------------ */

.corporate-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-inverse);
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(11, 27, 54, 0.85), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

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

.corporate-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.corporate-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Why Choose Us Section */
.why-corporate {
    background-color: var(--background-white);
    position: relative;
}

.why-corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Premium CTA Section */
.cta-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a44 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-premium::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-premium h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-premium p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--secondary-color);
    color: #1a1a1a;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-gold:hover {
    background: #e5c14f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-white-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-white-outline:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Enhanced Product Card for Corporate */
.corp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.corp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.corp-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.corp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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


.corp-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.corp-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.corp-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.corp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #1a1a1a;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media screen and (max-width: 992px) {
    .corporate-hero h1 { font-size: 3rem; }
    .cta-premium h2 { font-size: 2.2rem; }
}

@media screen and (max-width: 768px) {
    .corporate-hero { padding: 140px 0 80px; }
    .corporate-hero h1 { font-size: 2.5rem; }
    .corporate-hero p { font-size: 1.1rem; }
    .cta-group { flex-direction: column; }
    .btn-gold, .btn-white-outline { width: 100%; }
}

/* ================================================
   PREMIUM GALLERY — Dark Theme & Professional Headers
================================================ */

.gallery-section, .gallery-preview {
    background-color: var(--background-white) !important;
    padding: 100px 20px 80px !important;
    color: var(--text-main) !important;
    position: relative;
}

.gallery-header, .premium-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 60px;
}

.gallery-title, .premium-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 3rem;
    color: var(--primary-color) !important;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.gallery-underline, .premium-underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 0 20px;
    border-radius: 2px;
}

.gallery-subtitle, .premium-subtitle {
    font-size: 1.15rem;
    color: var(--text-light) !important;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    margin: 0 0 30px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .gallery-title, .premium-title { font-size: 2.2rem; }
    .gallery-subtitle, .premium-subtitle { font-size: 1rem; }
    .gallery-section, .gallery-preview { padding: 60px 20px !important; }
    .gallery-header, .premium-header { margin-bottom: 40px; }
}

/* Filter Bar & Buttons (Dark Theme) */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .gallery-filter-bar {
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 10px;
        padding: 5px 15px 15px;
        margin-left: -20px;
        margin-right: -20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for clean look */
    }
    .gallery-filter-bar::-webkit-scrollbar {
        display: none;
    }
    .gallery-filter-btn {
        white-space: nowrap;
        padding: 8px 16px;
        font-size: 0.82rem;
        justify-content: center;
    }
}

.gallery-filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.gallery-filter-btn i { font-size: 0.82rem; color: var(--secondary-color); }

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}

.gallery-filter-btn.active i,
.gallery-filter-btn:hover i { color: var(--primary-color); }

/* Gallery Image Overlays (Dark Theme) */
.gallery-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.gallery-count {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ================================================
   NEW CORPORATE GIFTING ENHANCEMENTS
================================================ */

.corp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.corp-service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.corp-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(11, 27, 54, 0.15);
    border-color: var(--secondary-color);
}

.corp-service-img {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.corp-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.corp-service-card:hover .corp-service-img img {
    transform: scale(1.15);
}

.corp-service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.corp-service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.corp-service-content h3 i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.corp-service-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.corp-service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.corp-service-link:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* Milestone Feature Items */
.feature-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Bulk Order Banner */
.bulk-order-banner {
    background: linear-gradient(rgba(11, 27, 54, 0.9), rgba(11, 27, 54, 0.9)), url('assets/corporate_gift_set.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 30px;
    padding: 80px 50px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bulk-order-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bulk-order-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .bulk-order-banner {
        padding: 50px 25px;
        border-radius: 20px;
    }
    .bulk-order-banner h2 { font-size: 2rem; }
    .corp-service-content { padding: 25px; }
    .corp-service-content h3 { font-size: 1.4rem; }
}

/* ================================================
   Success Popup Styles (WhatsApp Redirection)
================================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 27, 54, 0.92);
    backdrop-filter: blur(8px);
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--secondary-color);
    position: relative;
    animation: popupFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-container h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
}

.popup-container p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-loader {
    width: 100%;
    height: 4px;
    background: #edf2f7;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.popup-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: loadingBar 2.5s linear forwards;
}

@keyframes loadingBar {
    0% { width: 0%; }
    100% { width: 100%; }
}
