/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;500;700&family=Montserrat:wght@400;600&display=swap');

/* Root Variables - Pulse & Precision Palette */
:root {
    --primary-base: #003B73; /* Deep shadow blue for authority */
    --primary-glow: #05DBF2; /* Electric teal for technology/freshness */
    --bg-obsidian: #F0F8FF; /* Light blue-white background */
    --action-orange: #FF4D00; /* International orange for buy signals */
    --text-surface: #1C1C1C; /* Dark text */
    --bg-light: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.9);
    --gradient-bg: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
    --footer-gradient: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
    --navbar-gradient: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
    --corner-top: 200px;
}

/* Light Theme Variables */
.light-theme {
    --primary-base: #005A9C; /* Lighter blue */
    --primary-glow: #00CFFF; /* Brighter teal */
    --bg-obsidian: #F0F8FF; /* Light blue-white background */
    --action-orange: #FF4500; /* Deeper orange */
    --text-surface: #1C1C1C; /* Dark text */
    --bg-light: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.9);
    --gradient-bg: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-obsidian);
    color: var(--text-surface);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px; /* offset for fixed navbar */
}

/* Hide Background Video */
/* removed duplicate background video element in HTML; keep this as a safeguard */
#bg-video { display: none !important; }

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px; /* Reduced top padding */
    position: relative;
}

/* Large screen optimization */
@media (min-width: 1200px) {
    .container {
        padding: 40px 2rem 40px; /* Symmetric padding for large screens */
    }
    
    .hero-grid-container {
        padding: 0; /* Remove extra padding, container handles it */
    }
}

/* Navigation Bar - Improved Architecture */
.navbar {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-obsidian);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    padding-top: 60px; /* reduced offset for smaller navbar */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
}

.nav-logo img { display: none; }

/* Animated brand video in the navbar (top-left, small) */
.brand-video {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 200px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .brand-video {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(5, 219, 242, 0.5);
}

.brand-name {
    display: none;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-base), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .brand-name {
    text-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
    transform: translateX(5px);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo:hover img {
    transform: rotate(10deg);
}

.nav-logo:hover span {
    text-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        background: var(--navbar-gradient);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 100px;
        z-index: 1000;
    }
     
    .nav-menu.active {
        transform: translateX(0);
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    background: linear-gradient(to right, var(--primary-base), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.nav-link:hover .nav-icon {
    opacity: 0.2;
}

/* Differentiate icons per menu item using CSS filters */
.nav-item:nth-child(1) .nav-icon {
    filter: hue-rotate(0deg) brightness(1) saturate(1);
}

.nav-item:nth-child(2) .nav-icon {
    filter: hue-rotate(90deg) brightness(1.1) saturate(1.2);
}

.nav-item:nth-child(3) .nav-icon {
    filter: hue-rotate(180deg) brightness(0.9) saturate(1.3);
}

.nav-item:nth-child(4) .nav-icon {
    filter: hue-rotate(270deg) brightness(1) saturate(1.1);
}

/* Menu Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments for nav menu and icons */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1002;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        background: var(--bg-obsidian);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px; /* Adjust based on content */
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        color: var(--text-surface);
        justify-content: flex-start;
        width: 100%;
    }

    .nav-icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-bg);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--action-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 3px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px; /* Reduced top padding */
    text-align: center;
    width: 100%;
}

/* Hero content wrapper - override Tailwind py-20 */
.hero-content {
    width: 100%;
    max-width: 100%;
    padding-top: 0 !important; /* Override Tailwind py-20 */
    padding-bottom: 0 !important; /* Override Tailwind py-20 */
}

.hero-title {
    display: none; /* hide large text title as requested */
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-base);
    opacity: 0.8;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Video Section */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

/* Section Styling */
.section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 64, 128, 0.1);
}

.section:last-child {
    border-bottom: none;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    position: relative; /* stay in normal flow */
    z-index: 1;
    text-align: center;
    color: var(--text-surface);
    background: transparent;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.section-title {
    text-align: center;
    background: linear-gradient(to right, var(--primary-base), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-surface);
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
    max-width: 100%;
    width: 100%;
}

.review-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(5, 219, 242, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 64, 128, 0.15);
    border-color: var(--primary-glow);
}

.review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--primary-glow);
    padding: 2px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--primary-base);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

.review-stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    align-self: flex-start;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-surface);
    flex-grow: 1;
    margin-bottom: 0;
    font-style: normal;
    text-align: left;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(255,255,255,0.1));
    border-radius: 10px;
    padding: 15px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.urgency-icon {
    color: var(--primary-glow);
    font-size: 1.5rem;
}

.urgency-text {
    font-weight: 500;
    color: var(--text-surface);
}

.countdown {
    font-weight: 700;
    color: #FF4D4D;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 2%;
    justify-items: center;
    justify-content: center;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-base), var(--action-orange));
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
    transform: scale(1.02);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 64, 128, 0.15);
}

.product-card:hover::before {
    opacity: 0.6;
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-bg);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--text-surface);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--action-orange);
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount {
    font-size: 0.9rem;
    color: #FF4D4D;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.product-cta {
    display: inline-block;
    background: var(--gradient-bg);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.3);
}

.pulse-cta {
    animation: pulseCta 2s infinite;
}

@keyframes pulseCta {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact Section */
.contact-info {
    margin: 30px 0;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
    color: var(--text-surface);
}

.contact-info a {
    color: var(--primary-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-surface);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 64, 128, 0.2);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gradient-bg);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 64, 128, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-bg);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 64, 128, 0.3);
}

/* Footer */
.footer {
    background-color: var(--bg-obsidian);
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
    border-radius: 50%; /* Add this line to make it circular */
    object-fit: cover; /* Add this to ensure the image fills the circle properly */
}


.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-copyright {
    color: var(--text-surface);
    font-size: 0.9rem;
}

.footer-link {
    background: linear-gradient(to right, var(--primary-base), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-help {
    position: fixed;
    bottom: 40%;
    right: 20px;
    display: inline-block;
    font-size: 2.5rem;
    color: #25d366;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-help:hover {
    background: linear-gradient(45deg, #8a2be2, #da70d6, #9370db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.2) translateY(-10px);
}

.whatsapp-help .tooltip {
    visibility: hidden;
    width: 140px;
    background-color: rgba(85, 85, 85, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 3px 6px;
    position: absolute;
    z-index: 1;
    top: -45px;
    left: -140px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-help .tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(85, 85, 85, 0.9) transparent transparent transparent;
}

.whatsapp-help:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .brand-name {
        display: inline;
    }
    .nav-container {
        max-width: 1400px;
    }
    .nav-menu {
        gap: 40px;
    }
}

@media (min-width: 993px) {
    .nav-menu {
        display: flex !important;
    }
    .hamburger {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .brand-name {
        display: inline;
    }
    .hero-title {
        font-size: 4rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .brand-name {
        display: none;
    }
}

@media (min-width: 769px) {
    .container {
        padding: 100px 40px 60px;
    }
    .hero {
        align-items: flex-start;
        text-align: left;
    }
    .section-text,
    .section-content {
        text-align: left;
    }
    .brand-name {
        display: inline;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    .brand-video {
        width: 50px;
        height: 37px;
    }
    .nav-menu {
        padding-top: 70px;
    }
    
    /* Testimonial Cards Responsive Styles */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 20px 15px 30px;
    }
    .social-links {
        gap: 15px; /* Reduce the gap between icons on mobile */
    }
    .social-links a {
        width: 36px; /* Slightly smaller size on mobile */
        height: 36px;
        min-width: 36px; /* Ensure minimum width to maintain circle shape */
        min-height: 36px; /* Ensure minimum height to maintain circle shape */
        border-radius: 50%; /* Reinforce the circular shape */
    }

    .social-links{
        font-size: 0.9rem; /* Slightly smaller icon size */
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .dropdown-menu {
        font-size: 0.9rem;
    }
}

/* Desktop: responsive grid */
@media (min-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Welcome Message */
.welcome-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text-surface);
    opacity: 0.8;
    text-align: center;
}

.welcome-message:hover {
    transform: scale(1.05);
}

/* Promotions Carousel */
.carousel-section {
    margin: 40px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out; /* Slower, smoother transition */
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
    gap: 10px;
}

.carousel-item {
    min-width: 300px;
    max-width: 400px;
    height: 100%;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Style for images inside carousel items */
.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: 8px;  /* Add slight rounding to image corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Add subtle shadow for depth */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 64, 128, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 64, 128, 0.15);
}

.feature-icon {
    color: var(--primary-glow);
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-surface);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.feature-sub {
    font-size: 0.9rem;
    color: #999;
    margin-top: 8px;
}

/* CTA Section */
.cta-section {
    margin-top: 30px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-bg);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.3);
}

/* Hotmart Link */
.hotmart-link {
    color: var(--primary-glow);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotmart-link:hover {
    color: var(--action-orange);
    text-decoration: underline;
}

/* Instagram Mini Logo */
.instagram-mini-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.instagram-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 12px;
    position: relative;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.instagram-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    border: 2px solid #333;
}

.instagram-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.instagram-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-surface);
}

/* Small Instagram Mini Logo for Feature Item */
.instagram-mini-logo-small {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 8px;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.instagram-mini-logo-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    border: 1.5px solid #333;
}

.instagram-mini-logo-small::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

/* Small WhatsApp Mini Logo for Feature Item */
.whatsapp-mini-logo-small {
    width: 30px;
    height: 30px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-mini-logo-small::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.235 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.887-9.881-9.887-5.452 0-9.887 4.434-9.889 9.884-.001 5.448 4.416 9.886 9.888 9.886z"/></svg>') no-repeat center center;
    background-size: contain;
}

/* Decorative Elements */
.circle-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}
.c1 {
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    top: -50px;
    left: -100px;
}
.c2 {
    width: 200px;
    height: 200px;
    background: var(--action-orange);
    bottom: 150px;
    right: -50px;
}

/* Google Translate Widget - Hidden for auto-translation */
#google_translate_element {
    display: none;
}

/* Glassmorphism Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Drop Culture Specific Styles */
.drop-hero {
    position: relative;
    overflow: hidden;
}

.drop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Maka_Animated.mp4') no-repeat center center;
    background-size: cover;
    filter: blur(5px);
    opacity: 0.3;
    z-index: -1;
}

.countdown-timer {
    font-family: 'Orbitron', monospace;
    color: var(--action-orange);
    font-size: 2rem;
    font-weight: 700;
}

.live-stock {
    color: var(--primary-glow);
    font-weight: 600;
}

/* ============================================
   HERO GRID LAYOUT - TIMER + VIDEO (SYMMETRIC)
   Modern grid-based hero section with brand video
   Best Practice: Equal height columns with CSS Grid
   Optimized spacing for all screen sizes
   ============================================ */

.hero-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Increased gap for better visual separation */
    align-items: stretch; /* Forces equal height */
    max-width: 100%; /* Full width of container */
    margin: 0 auto;
    padding: 0 1.5rem; /* Symmetric horizontal padding */
    min-height: 560px; /* Ensures consistent height */
}

/* Timer Section (LEFT) - Matches video section height */
.hero-timer-section {
    display: flex;
    flex-direction: column;
    height: 100%; /* Full grid cell height */
    padding: 0; /* Remove extra padding */
}

/* MAKA Video Section (RIGHT) - Matches timer section height */
.hero-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%; /* Full grid cell height */
    padding: 0; /* Remove extra padding */
}

.maka-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Fills available space */
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 29, 110, 0.95), rgba(33, 96, 196, 0.9));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(70, 169, 248, 0.2);
    border: 1px solid rgba(70, 169, 248, 0.3);
}

.maka-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.video-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(70, 169, 248, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: videoGlow 3s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes videoGlow {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-brand-text {
    text-align: center;
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.hero-brand-text .hero-title {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.25rem;
}

.hero-brand-text .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   ENHANCED DROP COUNTDOWN CONTAINER
   Engaging countdown with call to action
   Symmetric design matching video section
   ============================================ */

.drop-countdown-container {
    background: linear-gradient(135deg, rgba(10, 29, 110, 0.95), rgba(33, 96, 196, 0.9));
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(70, 169, 248, 0.2);
    border: 1px solid rgba(70, 169, 248, 0.3);
    position: relative;
    overflow: hidden;
    flex: 1; /* Fills available space in grid */
    min-height: 0; /* Allows flexbox to control height */
}

.drop-countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(70, 169, 248, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.countdown-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.countdown-header .countdown-label {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Countdown Display */
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    min-width: 80px;
    border: 1px solid rgba(70, 169, 248, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.countdown-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-glow);
    line-height: 1;
    text-shadow: 0 0 20px rgba(70, 169, 248, 0.5);
}

.countdown-label-small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-glow);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Call to Action Section */
.countdown-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.waitlist-form .form-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.waitlist-form input[type="email"],
.waitlist-form input[type="tel"] {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(70, 169, 248, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-form input[type="email"]::placeholder,
.waitlist-form input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.waitlist-form input[type="email"]:focus,
.waitlist-form input[type="tel"]:focus {
    border-color: var(--primary-glow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(70, 169, 248, 0.3);
}

.waitlist-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-glow), #05DBF2);
    color: var(--primary-deep);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(70, 169, 248, 0.4);
}

.waitlist-btn .btn-icon {
    transition: transform 0.3s ease;
}

.waitlist-btn:hover .btn-icon {
    transform: translateX(5px);
}

.waitlist-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.waitlist-count span {
    color: var(--primary-glow);
    font-weight: 700;
}

.whatsapp-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Live Stock Badge */
.live-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin: 1rem auto;
    border: 1px solid rgba(70, 169, 248, 0.3);
}

.live-stock-badge .stock-icon {
    font-size: 1.2rem;
}

.live-stock-badge .stock-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.live-stock-badge strong {
    color: var(--primary-glow);
}

/* Responsive Design for Hero Grid */
@media (max-width: 1024px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem; /* Comfortable gap for stacked layout */
        text-align: center;
        min-height: auto; /* Allow natural height on mobile */
        padding: 0 1.5rem; /* Consistent horizontal padding */
    }
    
    .hero-video-section {
        order: 1;
    }
    
    .hero-timer-section {
        order: 2;
    }
    
    .maka-video-wrapper {
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-brand-text .hero-title {
        font-size: 2rem;
    }
}

/* Responsive Design for Countdown */
@media (max-width: 768px) {
    .hero-grid-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .drop-countdown-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .countdown-display {
        gap: 0.25rem;
    }
    
    .countdown-unit {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-btn {
        justify-content: center;
    }
    
    .maka-video-wrapper {
        min-height: 250px;
        max-height: 350px;
    }
    
    .hero-brand-text .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-brand-text .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-unit {
        padding: 0.5rem 0.75rem;
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label-small {
        font-size: 0.6rem;
    }
    
    .countdown-title {
        font-size: 1.25rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
}

/* Success State for Waitlist */
.waitlist-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist-success h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.waitlist-success p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   DIRECT PRODUCT GALLERY - PSYCHOLOGICAL DESIGN
   Immediate visual impact for conversion
   Grid layout for instant product visibility
   ============================================ */

.maka-gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.maka-gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.maka-gallery-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-base), var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.maka-gallery-subtitle {
    color: var(--text-surface);
    opacity: 0.8;
    font-size: 1rem;
}

/* Direct Grid Layout - No Filters, Immediate Visibility */
.maka-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}

/* Gallery Item - Product Card */
.maka-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 3/4;
}

.maka-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(70, 169, 248, 0.25);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image Container */
.gallery-image-container {
    position: relative;
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.maka-gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* Image Overlay - Quick Actions */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.maka-gallery-item:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-details-btn,
.fullscreen-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.view-details-btn {
    background: var(--primary-glow);
    color: white;
}

.view-details-btn:hover {
    background: var(--primary-base);
}

.fullscreen-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 0.75rem;
}

.fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Product Info Section */
.gallery-item-info {
    padding: 1rem;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-surface);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.category-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item-description {
    font-size: 0.8rem;
    color: var(--text-surface);
    opacity: 0.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Badge (Exclusive, New, etc.) */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

/* WhatsApp Quick Buy Button */
.whatsapp-quick-buy {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 3;
    text-decoration: none;
}

.maka-gallery-item:hover .whatsapp-quick-buy {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-quick-buy:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Loading State */
.gallery-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-surface);
}

.gallery-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(70, 169, 248, 0.2);
    border-top-color: var(--primary-glow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error State */
.gallery-error {
    text-align: center;
    padding: 2rem;
    color: #ef4444;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-surface);
    opacity: 0.7;
}

/* Image Error Fallback */
.image-error {
    background: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
}

/* Fullscreen Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.gallery-modal-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .maka-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .maka-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .maka-gallery-item {
        aspect-ratio: 1/1.2;
    }
    
    .gallery-image-container {
        height: 70%;
    }
    
    .gallery-item-info {
        height: 30%;
    }
    
    .image-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 0.75rem;
    }
    
    .whatsapp-quick-buy {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .maka-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item-title {
        font-size: 0.85rem;
    }
    
    .category-badge {
        font-size: 0.6rem;
    }
    
    .product-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ============================================
   GALLERY PREVIEW CARD - Index Page
   Teaser card to drive traffic to gallery page
   Psychological design for conversion
   ============================================ */

.gallery-preview-card {
    background: linear-gradient(135deg, rgba(10, 29, 110, 0.95), rgba(33, 96, 196, 0.9));
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(70, 169, 248, 0.2);
    border: 1px solid rgba(70, 169, 248, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(70, 169, 248, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.gallery-preview-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-preview-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-preview-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Preview Images Grid */
.gallery-preview-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-preview-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-preview-item .preview-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

/* CTA Section */
.gallery-preview-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.gallery-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.gallery-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gallery-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.gallery-preview-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.gallery-preview-count span {
    color: var(--primary-glow);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive Preview Card */
@media (max-width: 768px) {
    .gallery-preview-card {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .gallery-preview-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-preview-title {
        font-size: 1.4rem;
    }
    
    .gallery-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-preview-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-preview-title {
        font-size: 1.2rem;
    }
    
    .gallery-preview-subtitle {
        font-size: 0.9rem;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    list-style: none;
    padding: 10px 0;
    z-index: 1001;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    position: relative;
}

.dropdown-item a {
    display: block;
    padding: 10px 20px;
    color: var(--text-surface);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item a:hover {
    background-color: rgba(0, 64, 128, 0.2);
}

.dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-item:hover .dropdown-submenu {
    display: block;
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-submenu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
    }

    .dropdown-item.active .dropdown-submenu {
        display: block;
    }
}

.dropdown-arrow {
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.notify-form {
    background: var(--bg-obsidian);
    border: 1px solid var(--primary-glow);
    border-radius: 10px;
    padding: 20px;
}

/* Load More Button Styles */
.load-more-btn, .back-to-top-btn {
    grid-column: 1 / -1;
    justify-self: center;
    background: var(--gradient-bg);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    margin: 2rem 0;
    font-size: 1rem;
}

.load-more-btn:hover, .back-to-top-btn:hover {
    background: var(--action-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

.load-more-btn:disabled {
    background: var(--text-surface);
    color: var(--bg-obsidian);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.5;
}

/* Enhanced Product Card for Gallery */
.product-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 350px;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 64, 128, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Container expansion effect to show complete pictures */
.product-card {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden; /* Keep overflow hidden for normal state */
    height: 350px; /* Fixed height for consistency */
}

.product-image-container {
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    will-change: transform;
}

.product-card:hover {
    height: 450px !important; /* Expand container height */
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 64, 128, 0.2);
    z-index: 10;
}

.product-card:hover .product-image-container {
    height: 350px !important; /* Expand image container */
}

.product-card:hover .product-image {
    transform: scale(1.0); /* Keep image at normal scale but show more */
    filter: brightness(1.1);
}

/* Ensure product info is visible on hover */
.product-card:hover .product-badge,
.product-card:hover .product-quote {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--action-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--primary-glow);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
}

.product-card:hover .product-quote {
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-glow);
    transform: translateY(0);
}

/* Performance optimizations */
.product-image {
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
}

/* Loading states */
.product-card.loading {
    opacity: 0.5;
    pointer-events: none;
}

.product-card.loaded {
    animation: fadeInUp 0.5s ease-out;
}

.product-card {
    opacity: 1 !important; /* Ensure cards are always visible */
    display: block !important; /* Ensure cards are always displayed */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   VIDEO SHOWCASE CONTAINER - RESPONSIVE STYLES
   Cross-browser & Cross-device Compatible
   ============================================ */

/* Base Video Container Styles */
.video-showcase-container {
    position: relative;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(33, 96, 196, 0.3);
    background: linear-gradient(135deg, var(--primary-base), var(--primary-glow));
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Responsive Video Element */
.responsive-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    background-color: #000;
}

/* Video Loading Overlay */
.video-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 59, 115, 0.9), rgba(5, 219, 242, 0.8));
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 12px;
}

.video-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Video Loading Spinner */
.video-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary-glow);
    border-radius: 50%;
    animation: videoSpin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes videoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Video Play Button Overlay (optional enhancement) */
.video-showcase-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.video-showcase-container:hover::before {
    opacity: 1;
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .video-showcase-container {
        max-width: 1200px;
        margin: 3rem auto;
    }
    
    .video-loading-overlay {
        font-size: 1.2rem;
    }
    
    .video-spinner {
        width: 60px;
        height: 60px;
        border-width: 5px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .video-showcase-container {
        max-width: 1000px;
        margin: 2.5rem auto;
    }
}

/* Small Desktop / Large Tablet (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .video-showcase-container {
        max-width: 90%;
        margin: 2rem auto;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .video-showcase-container {
        max-width: 95%;
        margin: 1.5rem auto;
        border-radius: 10px;
    }
    
    .responsive-video {
        border-radius: 10px;
    }
    
    .video-loading-overlay {
        border-radius: 10px;
        font-size: 0.95rem;
    }
    
    .video-spinner {
        width: 45px;
        height: 45px;
    }
}

/* Large Mobile (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .video-showcase-container {
        margin: 1.5rem auto;
        border-radius: 8px;
        box-shadow: 0 6px 24px rgba(33, 96, 196, 0.25);
    }
    
    .responsive-video {
        border-radius: 8px;
    }
    
    .video-loading-overlay {
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .video-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .video-showcase-container {
        margin: 1rem auto;
        border-radius: 6px;
        box-shadow: 0 4px 16px rgba(33, 96, 196, 0.2);
        aspect-ratio: 4 / 3; /* Better for portrait mobile */
    }
    
    .responsive-video {
        border-radius: 6px;
    }
    
    .video-loading-overlay {
        border-radius: 6px;
        font-size: 0.85rem;
        padding: 1rem;
    }
    
    .video-spinner {
        width: 35px;
        height: 35px;
        border-width: 3px;
    }
    
    .video-showcase-container::before {
        width: 60px;
        height: 60px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .video-showcase-container {
        margin: 0.75rem auto;
        border-radius: 4px;
    }
    
    .responsive-video {
        border-radius: 4px;
    }
    
    .video-loading-overlay {
        border-radius: 4px;
        font-size: 0.8rem;
    }
    
    .video-spinner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .video-showcase-container {
        aspect-ratio: 16 / 9;
        max-height: 80vh;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .video-showcase-container {
        box-shadow: 0 8px 32px rgba(33, 96, 196, 0.35);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .video-showcase-container {
        box-shadow: 0 8px 32px rgba(5, 219, 242, 0.25);
    }
    
    .video-loading-overlay {
        background: linear-gradient(135deg, rgba(0, 59, 115, 0.95), rgba(5, 219, 242, 0.85));
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .video-spinner {
        animation: none;
        border-top-color: var(--primary-glow);
        border-right-color: var(--primary-glow);
    }
    
    .video-showcase-container::before {
        transition: none;
    }
    
    .video-loading-overlay {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .video-showcase-container {
        display: none;
    }
}

/* Cross-browser Video Controls Styling */
.responsive-video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.responsive-video::-webkit-media-controls-play-button {
    background-color: var(--primary-glow);
    border-radius: 50%;
}

.responsive-video::-webkit-media-controls-volume-slider {
    background-color: var(--primary-base);
}

/* Firefox Video Controls */
.responsive-video::-moz-media-controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* Edge/IE11 Fallback */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .video-showcase-container {
        display: block;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio fallback */
    }
    
    .responsive-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}