/* 
 * Premium Style Sheet
 * GuardMyStore Landing Page
 */

:root {
    /* Color Palette */
    --color-primary: #153975;
    --color-primary-dark: #0e2752;
    --color-secondary: #d7a137;
    --color-secondary-dark: #b8861b;
    --color-bg-light: #f0f4f8;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f8f9fa;
    --color-text-dark: #222222;
    --color-text-light: #ffffff;
    --color-text-muted: #555555;
    --color-border: #e2e8f0;
    
    /* Gradients from screenshots */
    --gradient-mens-health: linear-gradient(135deg, #1e3a8a, #3b82f6);
    --gradient-joint-pain: linear-gradient(135deg, #b45309, #d97706);
    --gradient-digestive: linear-gradient(135deg, #0f766e, #14b8a6);
    --gradient-immunity: linear-gradient(135deg, #374151, #4b5563);
    --gradient-diabetes: linear-gradient(135deg, #1d4ed8, #2563eb);
    --gradient-weight: linear-gradient(135deg, #0369a1, #0ea5e9);
    --gradient-drug: linear-gradient(135deg, #a16207, #ca8a04);

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

    /* Spacing & Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.announcement-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.65rem 0;
    border-bottom: 2px solid var(--color-secondary);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.announcement-ticker-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.announcement-ticker {
    display: inline-flex;
    white-space: nowrap;
    gap: 6rem;
    animation: scroll-left-to-right 28s linear infinite;
}

.announcement-ticker span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

/* --- 2. Main Header & Navigation --- */
.main-header {
    background-color: var(--color-bg-white);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-svg,
.logo-img-header {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
}

.logo-img-footer {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
    margin-bottom: 1.5rem;
}

/* Navigation Links */
.navbar {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

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

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: var(--transition-fast);
}

.nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.75rem 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

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

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}


/* Mega Menu (Heavy Dropdown) Styles */
.header-container {
    position: relative;
}

.mega-dropdown-item {
    position: static !important;
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 90vw;
    max-width: 1080px;
    background-color: #ffffff;
    box-shadow: 0 25px 60px rgba(11, 31, 66, 0.12);
    border-radius: 28px;
    padding: 2.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

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

.mega-dropdown-inner-layout {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 2.25rem;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.category-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.25rem;
    align-content: center;
    width: 100%;
    box-sizing: border-box;
}

.category-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-img-container {
    width: 100px;
    height: 100px;
    background-color: #f1f5f9;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.75rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.category-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-menu-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: #1f2937;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

/* Hover effects */
.category-menu-card:hover .category-img-container {
    background-color: #dbeafe;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.12);
}

.category-menu-card:hover .category-img-container img {
    transform: scale(1.08);
}

.category-menu-card:hover .category-menu-name {
    color: #d7a137;
}

.mega-store-promo-card {
    background: linear-gradient(145deg, #0b1f42 0%, #153975 100%);
    border-radius: 22px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 31, 66, 0.08);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.mega-store-promo-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.promo-mini-tag {
    font-size: 0.68rem;
    font-weight: 800;
    color: #d7a137;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.promo-headline {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 0.65rem 0;
}

.promo-text {
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

.mega-store-promo-card .btn-view-store {
    background-color: #d7a137;
    color: #0b1f42;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(215, 161, 55, 0.15);
}

.mega-store-promo-card .btn-view-store:hover {
    background-color: #ffffff;
    color: #0b1f42 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.action-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.25rem;
}

.action-btn:hover {
    color: var(--color-primary);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-get-app {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary-dark);
    border-radius: 99px;
    transition: var(--transition-normal);
}

/* --- 3. Hero Slider Section --- */
.hero-slider-section {
    background-color: #050505;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider-container {
    position: relative;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.slide.active {
    display: block;
    opacity: 1;
}

/* Left side of slide (Visual assets representation) */
.slide-visuals {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1.5rem;
    min-height: 380px;
}

.product-avatar-wrapper {
    position: relative;
    background: radial-gradient(circle, rgba(15,90,56,0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    padding: 1.5rem;
}

.product-avatar {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    animation: float 4s ease-in-out infinite;
}

.product-avatar-secondary {
    width: 110px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    animation: float 4s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.hero-slide-img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* Right side of slide (Text content) */
.slide-content {
    flex: 1 1 45%;
    padding-left: 2rem;
}

.slide-title-serif {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.slide-title-serif span {
    display: block;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.slide-description {
    font-size: 1.15rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 480px;
}

.slide-promo-box {
    border: 1px solid var(--color-secondary);
    background-color: rgba(244,122,31,0.06);
    padding: 1rem 1.5rem;
    display: inline-block;
    border-radius: 4px;
    margin-top: 1rem;
}

.promo-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.promo-highlight {
    font-family: var(--font-serif);
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.1);
    color: var(--color-text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-control:hover {
    background-color: var(--color-secondary);
}

.slider-control.prev {
    left: 1rem;
}

.slider-control.next {
    right: 1rem;
}

/* --- 4. Categories Section (Concern vs Gender) --- */
.categories-section {
    padding: 5rem 0;
    background-color: var(--color-bg-white);
}

.section-tabs-container {
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 3.5rem;
    display: flex;
    gap: 3rem;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 600;
    padding: 0.75rem 0;
    color: #a0aec0;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-text-dark);
}

.tab-btn.active {
    color: var(--color-primary-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary-dark);
    border-radius: 99px;
}

/* Grid layout for categories */
.tab-content-pane {
    display: none;
}

.tab-content-pane.active {
    display: block;
}

.categories-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1.25rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 calc(20% - 1.25rem); /* Exactly 5 items visible at once */
    min-width: 180px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .category-item {
        flex: 0 0 calc(28.57% - 1.07rem); /* Max 3.5 visible on tablets */
    }
}

@media (max-width: 768px) {
    .category-item {
        flex: 0 0 calc(45% - 1rem); /* Max 2.2 visible on mobile */
    }
}

/* Card styles matching Screenshot 2 */
.category-card {
    background-color: var(--color-bg-gray);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    border-radius: 50% 50% 0 0 / 25px 25px 0 0;
    z-index: 1;
}

/* Applying dynamic card background curves */
.card-mens::before { background: var(--gradient-mens-health); }
.card-joint::before { background: var(--gradient-joint-pain); }
.card-digestive::before { background: var(--gradient-digestive); }
.card-immunity::before { background: var(--gradient-immunity); }
.card-diabetes::before { background: var(--gradient-diabetes); }
.card-weight::before { background: var(--gradient-weight); }
.card-drug::before { background: var(--gradient-drug); }

.category-card-img {
    width: 105px;
    height: 125px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
    z-index: 2;
}

.category-card:hover .category-card-img {
    transform: translateY(-8px) scale(1.05);
}

.category-card-title {
    position: absolute;
    bottom: 2.5rem;
    z-index: 3;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-card-subtitle {
    position: absolute;
    bottom: 1.1rem;
    z-index: 3;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

.category-label-text {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* --- 5. Ayurveda Experts Consulting Section --- */
.consultation-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light); /* Soft light blue/gray background */
}

.consult-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consult-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.consult-badge {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.consult-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.consult-desc-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.consult-trust-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    padding: 0;
}

.consult-trust-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.consult-trust-points li i {
    color: var(--color-secondary); /* Orange checkmark */
    font-size: 1.1rem;
}

.btn-start-consult {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.25rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* Premium Doctor Card Mockup */
.consult-visual-card {
    background-color: var(--color-bg-white);
    border-radius: 36px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-normal);
}

.consult-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.doctor-badge-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.doctor-avatar-svg {
    width: 100%;
    height: 100%;
}

.active-status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background-color: #25D366; /* WhatsApp Green */
    border: 3px solid #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.doctor-meta {
    display: flex;
    flex-direction: column;
}

.doctor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
}

.verified-icon {
    color: #3b82f6; /* Verified blue check */
    font-size: 0.95rem;
}

.doctor-desig {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0;
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #FFDF00;
    font-size: 0.75rem;
}

.rating-text {
    margin-left: 0.25rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.doctor-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.item-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.item-value {
    color: var(--color-text-dark);
    font-weight: 600;
}

.status-avail {
    color: #128C7E;
}

.btn-quick-chat {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .consult-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .consult-visual-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* --- 6. Since 1992 Section --- */
.story-section {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.story-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.story-visual {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.expert-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-bg-white);
    padding: 1rem;
    display: inline-block;
}

.expert-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 12px;
    display: block;
}

.story-content {
    flex: 1 1 45%;
}

.story-since {
    font-family: var(--font-sans);
    color: var(--color-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.story-title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.highlight-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.highlight-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}

.btn-story {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 0.9rem;
    padding: 0.8rem 2.2rem;
}

/* --- 7. Newsletter Section --- */
.newsletter-section {
    background-image: 
        linear-gradient(rgba(11, 26, 48, 0.94), rgba(11, 26, 48, 0.96)), 
        url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-text-light);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.newsletter-container {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.15;
}

.newsletter-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #a5b7d6;
    line-height: 1.6;
    margin: 0;
    max-width: 540px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 520px;
    background-color: rgba(11, 26, 48, 0.6);
    padding: 0.35rem;
    border-radius: 999px;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 0.5rem 1.5rem;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .btn {
    padding: 0.65rem 2rem;
}

/* --- 8. Footer Main & Sub-Footer --- */
.main-footer {
    background-color: var(--color-bg-light); /* Soft light blue/gray background */
    padding: 4.5rem 0 0 0;
    color: var(--color-text-dark);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1.2fr);
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.brand-col {
    padding-right: 2rem;
}

.footer-logo {
    margin-left: -8px;
    margin-bottom: 1rem;
    height: 48px;
}

.brand-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--color-secondary);
    transform: scale(1.1);
}

.footer-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

/* Sub Footer */
.sub-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.sub-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-badges {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.payment-badge {
    font-size: 1.8rem;
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    color: #ffffff;
}

.payment-badge i {
    display: inline-block;
    overflow: visible;
    vertical-align: middle;
    padding: 0 2px;
}

.payment-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Apple Pay Card styling to match the card glyph shapes */
.payment-badge.apple-pay-card {
    background-color: #ffffff;
    color: #000000 !important;
    border-radius: 4px;
    padding: 0 0.45rem;
    font-size: 1.15rem;
    height: 1.65rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: var(--transition-fast);
}

.payment-badge.apple-pay-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.25);
    opacity: 1;
}

/* Mobile Sub Footer Adjustments */
@media (max-width: 480px) {
    .sub-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .payment-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366;
    color: var(--color-text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-widget:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #128C7E;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .brand-col {
        padding-right: 0;
    }
    
    .slide-visuals {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }
    
    .slide-content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .slide-description {
        margin: 0 auto 2rem auto;
    }
    
    .story-container,
    .consult-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .story-visual, .story-content,
    .consult-content, .consult-visual {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .announcement-container {
        justify-content: center;
    }
    .header-container {
        display: flex;
        align-items: center;
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .mobile-nav-toggle {
        order: 3;
        display: flex;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-white);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-normal);
    }
    
    .navbar.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1.25rem;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        display: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mega-dropdown-item {
        position: relative !important;
        width: 100%;
    }
    
    .mega-dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 1rem 0 0.5rem 0 !important;
        display: none;
        border: none !important;
        width: 100% !important;
        left: 0 !important;
    }
    
    .mega-dropdown-item:hover .mega-dropdown-menu,
    .nav-item.dropdown.active .mega-dropdown-menu {
        display: block !important;
        transform: none !important;
        left: 0 !important;
    }

    .mega-dropdown-inner-layout {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mega-store-promo-card {
        padding: 1.25rem;
        align-items: center;
        text-align: center;
    }

    .mega-store-promo-card .promo-headline {
        font-size: 1.25rem;
    }

    .mega-store-promo-card .btn-view-store {
        width: 100%;
        justify-content: center;
    }
    
    .category-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-menu-card {
        background-color: #f8fafc;
        border-radius: 12px;
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #e2e8f0;
        transition: var(--transition-fast);
    }
    
    .category-img-container {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        padding: 0.5rem;
        background-color: #ffffff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .category-img-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .category-menu-name {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--color-primary-dark);
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .slide-title-serif {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 1rem;
    }
}

/* --- Our Products Section --- */
.products-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Premium Card Design matching user screenshot */
.ayur-premium-card {
    height: 440px;
    border-radius: 36px;
    padding: 2.5rem 2.25rem 2rem 2.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
}

.ayur-premium-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 45px rgba(15, 90, 56, 0.15);
}

/* Card Themes */
.card-dark {
    background-color: #0b1a30; /* Very deep brand navy blue */
    color: #ffffff;
}

.card-light {
    background-color: var(--color-bg-light); /* Soft light blue/gray background */
    color: var(--color-primary-dark);
}

/* Watermark Text */
.card-watermark {
    position: absolute;
    font-size: 5.5rem;
    font-weight: 900;
    font-family: var(--font-sans);
    top: 40%;
    left: 8%;
    transform: rotate(-12deg) translateY(-50%);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 2px;
    user-select: none;
}

.card-dark .card-watermark {
    color: rgba(255, 255, 255, 0.02);
}

.card-light .card-watermark {
    color: rgba(21, 57, 117, 0.04);
}

/* Card Content */
.card-title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    z-index: 3;
}

.card-img {
    max-height: 230px;
    width: auto;
    object-fit: contain;
    margin: auto auto 1rem auto;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.18));
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ayur-premium-card:hover .card-img {
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.28));
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 3;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 800;
}

.card-dark .card-price {
    color: #ffffff;
}

.card-light .card-price {
    color: var(--color-primary-dark);
}

/* WhatsApp Enquiry Badge */
.enquire-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
}

.card-dark .enquire-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.card-light .enquire-badge {
    background-color: var(--color-primary);
    color: #ffffff;
}

.ayur-premium-card:hover .enquire-badge {
    background-color: var(--color-secondary);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .ayur-premium-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* --- Ayurvedic Leaf Decorations --- */
.ayur-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.leaf-pos-1 {
    top: 15%;
    left: -20px;
    width: 100px;
    height: 100px;
    animation: sway 6s ease-in-out infinite alternate;
}

.leaf-pos-2 {
    bottom: 10%;
    right: -20px;
    width: 120px;
    height: 120px;
    animation: sway-reverse 8s ease-in-out infinite alternate;
}

.leaf-pos-3 {
    top: 5%;
    left: -30px;
    width: 140px;
    height: 140px;
    animation: sway 7s ease-in-out infinite alternate;
}

.leaf-pos-4 {
    bottom: 5%;
    right: -30px;
    width: 130px;
    height: 130px;
    animation: sway-reverse 7s ease-in-out infinite alternate;
}

@keyframes sway {
    0% { transform: rotate(0deg) translateY(0); }
    100% { transform: rotate(15deg) translateY(-8px); }
}

@keyframes sway-reverse {
    0% { transform: rotate(0deg) translateY(0); }
    100% { transform: rotate(-15deg) translateY(-10px); }
}

/* Hide background leaves on small mobiles to avoid overflow clutter */
@media (max-width: 576px) {
    .ayur-leaf {
        display: none !important;
    }
}

/* Decorative Background Products for Newsletter */
.newsletter-bg-prod {
    position: absolute;
    bottom: -15px;
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.45));
    transition: var(--transition-slow);
    z-index: 1;
}

.prod-left {
    left: 30px;
    transform: rotate(12deg);
    transform-origin: bottom center;
}

.prod-right {
    right: 30px;
    transform: rotate(-12deg);
    transform-origin: bottom center;
}

/* Hover dynamic sway effects */
.newsletter-section:hover .prod-left {
    transform: rotate(0deg) scale(1.05);
}

.newsletter-section:hover .prod-right {
    transform: rotate(0deg) scale(1.05);
}

/* Hide background products on mobile/tablet viewports to ensure standard inputs have clean visibility */
@media (max-width: 992px) {
    .newsletter-bg-prod {
        display: none !important;
    }
}

/* Header WhatsApp Button Styles */
.btn-whatsapp-header {
    background-color: var(--color-primary); /* Primary Brand Green */
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp-header:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* --- Industries Served Section --- */
.industries-section {
    padding: 6rem 0 3rem 0;
    background-color: #ffffff;
    font-family: var(--font-sans);
}
.industries-header {
    margin-bottom: 3rem;
}
.industries-badge {
    background-color: #d7a137;
    color: #111;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.industries-title {
    font-size: 3rem;
    font-weight: 800;
    color: #153975;
    margin: 0;
}
.industries-slider-container {
    width: 100%;
    padding: 1rem 0 2rem;
    overflow: hidden;
}
.industries-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.industries-track::-webkit-scrollbar {
    display: none;
}
.industry-card {
    position: relative;
    width: 280px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.industry-card:hover {
    transform: translateY(-8px);
}
.industry-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}
.industry-card:hover .industry-bg {
    transform: scale(1.1);
}
.industry-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}
.industry-name {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}
.industries-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}
.industries-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: all 0.3s ease;
}
.industries-dots .dot.active {
    background-color: #3b82f6;
    width: 24px;
    border-radius: 4px;
}

/* --- Work Process Section (Light Theme) --- */
.work-process-section {
    padding: 7rem 0;
    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}
.work-process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d7a137, #153975, #d7a137);
}
.work-process-header {
    text-align: center;
    margin-bottom: 5rem;
}
.work-process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d7a137, #f0c060);
    color: #0b1f42;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.work-process-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b1f42;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}
.work-process-desc {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Steps container */
.work-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Timeline Connecting Line Container */
.process-line-bg {
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #e5e7eb;
    z-index: 1;
    border-radius: 4px;
}

/* Animated Progress Fill Line */
.process-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d7a137 0%, #153975 100%);
    border-radius: 4px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Step Wrapper */
.process-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Container sitting on the line */
.process-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Glowing Rotating Ring around active icon */
.process-icon-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(215,161,55,0);
    transition: border-color 0.4s ease;
}

.process-step-item.active .process-icon-container::before {
    border-color: rgba(215,161,55,0.5);
    animation: ring-spin 10s linear infinite;
}

/* Inner Icon Circle */
.process-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-icon-circle i {
    font-size: 1.25rem;
    color: #9ca3af;
    transition: color 0.4s ease;
}

.process-step-item.active .process-icon-circle {
    border-color: #d7a137;
    background: #0b1f42;
    box-shadow: 0 8px 20px rgba(215,161,55,0.3);
    transform: scale(1.05);
}

.process-step-item.active .process-icon-circle i {
    color: #d7a137;
}

/* Step Badge Number */
.process-step-number {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #4b5563;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 4;
    transition: all 0.4s ease;
}

.process-step-item.active .process-step-number {
    background: #d7a137;
    color: #0b1f42;
    border-color: #ffffff;
}

/* Card details underneath */
.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.2rem 1.6rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-step-item.active .process-card {
    border-color: rgba(215,161,55,0.25);
    box-shadow: 0 10px 30px rgba(21,57,117,0.06);
}

.process-step-item:hover .process-card {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(21,57,117,0.1);
    border-color: rgba(215,161,55,0.4);
}

.process-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1f42;
    margin: 0 0 0.8rem 0;
    transition: color 0.3s ease;
}

.process-step-item:hover .process-card-title {
    color: #153975;
}

.process-card-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .work-process-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .process-line-bg {
        display: none;
    }
    .process-step-item {
        flex: 0 0 calc(50% - 1rem);
    }
    .process-icon-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-step-item {
        flex: 0 0 100%;
    }
    .work-process-title {
        font-size: 2rem;
    }
}

/* --- Brand Promo Section --- */
.brand-promo-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-border);
}

.promo-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.promo-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-badge {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.promo-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.promo-desc p {
    margin-bottom: 1rem;
}

.promo-desc p:last-child {
    margin-bottom: 0;
}

.promo-tagline {
    font-weight: 600;
    color: var(--color-text-dark);
}

.btn-shop-promo {
    padding: 0.85rem 2.5rem;
    font-size: 1rem;
    border-radius: 12px;
}

.promo-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: var(--transition-normal);
}

.promo-banner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .promo-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .promo-title {
        font-size: 2.2rem;
    }
}

/* --- Dedicated Pages Animations --- */
.animate-fade-in {
    animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered slide animations */
.scroll-trigger-up,
.scroll-trigger-left,
.scroll-trigger-right,
.product-detail-card {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-trigger-up { transform: translateY(30px); }
.scroll-trigger-left { transform: translateX(-30px); }
.scroll-trigger-right { transform: translateX(30px); }
.product-detail-card { transform: translateY(40px); }

.scroll-trigger-up.animated,
.scroll-trigger-left.animated,
.scroll-trigger-right.animated,
.product-detail-card.animated {
    opacity: 1;
    transform: translate(0) translateY(0);
}

/* --- About Page Styles --- */
.about-hero,
.product-hero,
.contact-hero {
    padding: 6rem 0;
    background-color: #EBF5F0;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.about-hero-title,
.product-hero-title,
.contact-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.about-hero-subtitle,
.product-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-story-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-story-text h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-story-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-story-img {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.about-values-section {
    padding: 6rem 0;
    background-color: #f8faf9;
    border-top: 1px solid var(--color-border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background-color: var(--color-bg-white);
    padding: 3rem 2.25rem;
    border-radius: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 90, 56, 0.08);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.value-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.value-card-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

/* --- Product Catalog Subpage Styles --- */
/* Product hero background inherits from main hero styles */

.product-catalog-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
    border-radius: 40px;
    padding: 3.5rem;
    margin-bottom: 5rem;
    transition: var(--transition-normal);
}

.product-detail-card:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

.product-detail-card.reverse {
    direction: rtl;
}

.product-detail-card.reverse .prod-detail-info {
    direction: ltr;
}

.prod-detail-visual {
    background-color: #EBF5F0;
    border-radius: 28px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
}

.prod-detail-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    transition: var(--transition-normal);
}

.product-detail-card:hover .prod-detail-img {
    transform: scale(1.05) translateY(-5px);
}

.prod-tag {
    background-color: #dfede5;
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.prod-name {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.prod-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.spec-table {
    border-top: 1px solid var(--color-border);
    margin-bottom: 2.25rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.spec-row strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.spec-row span {
    color: var(--color-text-muted);
    text-align: right;
    max-width: 60%;
}

.prod-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.prod-price-detail {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.btn-enquire-prod {
    padding: 0.85rem 2.25rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* --- Contact Page Styles --- */
/* Contact hero background inherits from main hero styles */

.contact-details-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-sec-title {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-sec-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-socials h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.social-icon-row {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* Glassmorphic Contact Form */
.contact-form-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border-radius: 36px;
    padding: 3.5rem;
}

.contact-form-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* Slick Floating Labels Form */
.form-group-creative {
    position: relative;
    margin-bottom: 2.25rem;
}

.form-group-creative input,
.form-group-creative textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    background: none;
    outline: none;
    font-size: 1rem;
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    transition: border-color 0.3s;
}

.form-group-creative input:focus,
.form-group-creative textarea:focus {
    border-color: var(--color-primary);
}

.form-group-creative label {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-bg-white);
    padding: 0 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
    pointer-events: none;
}

.form-group-creative textarea ~ label {
    top: 1.25rem;
    transform: none;
}

.form-group-creative input:focus ~ label,
.form-group-creative input:not(:placeholder-shown) ~ label,
.form-group-creative textarea:focus ~ label,
.form-group-creative textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-submit-query {
    width: 100%;
    padding: 0.95rem;
    font-size: 1rem;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.form-status-msg {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.form-status-success {
    color: #128C7E;
}

.form-status-error {
    color: #cc0000;
}

/* Responsive constraints */
@media (max-width: 992px) {
    .about-story-grid,
    .product-detail-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .product-detail-card.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-title,
    .product-hero-title,
    .contact-hero-title {
        font-size: 2.6rem;
    }
    
    .prod-name {
        font-size: 2rem;
    }
    
    .about-story-text, .about-story-visual,
    .contact-info-col, .contact-form-col {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .product-hero,
    .contact-hero {
        padding: 4rem 0;
    }
    
    .about-hero-title,
    .product-hero-title,
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle,
    .product-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .product-detail-card {
        padding: 1.75rem;
        border-radius: 28px;
        margin-bottom: 3.5rem;
    }
    
    .prod-detail-visual {
        height: 280px;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .prod-name {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .prod-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }
    
    .contact-sec-title {
        font-size: 1.8rem;
    }
    
    .contact-sec-desc {
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 576px) {
    .product-detail-card {
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .prod-detail-visual {
        height: 220px;
    }
    
    .prod-price-detail {
        font-size: 1.5rem;
    }
    
    .btn-enquire-prod {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .form-group-creative {
        margin-bottom: 1.75rem;
    }
}

/* --- Hero Two Column Grid Layout --- */
.hero-two-col-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-product-float {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    animation: floatUpDown 5s ease-in-out infinite alternate;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-15px) rotate(4deg);
    }
}

.btn-hero-cta {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* Responsive constraints for Hero columns */
@media (max-width: 992px) {
    .hero-two-col-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text-side {
        align-items: center;
    }
    
    .hero-product-float {
        max-height: 220px;
    }
}

/* --- Hero Emblem Animations --- */
.hero-emblem-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-emblem-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.rotating-text {
    transform-origin: 150px 150px;
    animation: spinClockwise 25s linear infinite;
}

.spin-slow {
    transform-origin: 150px 150px;
    animation: spinCounterClockwise 45s linear infinite;
}

.emblem-center-leaf {
    animation: pulseGlow 3s ease-in-out infinite alternate;
    transform-origin: 150px 150px;
}

@keyframes spinClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.97);
        filter: drop-shadow(0 4px 10px rgba(15, 90, 56, 0.1));
    }
    100% {
        transform: scale(1.03);
        filter: drop-shadow(0 12px 25px rgba(244, 122, 31, 0.25));
    }
}

/* --- Hero Product Showcase Card --- */
.hero-product-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatUpDown 5s ease-in-out infinite alternate;
}

.hero-showcase-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 90, 56, 0.15), 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}

.hero-showcase-img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 35px 80px rgba(15, 90, 56, 0.22), 0 12px 30px rgba(0,0,0,0.1);
}

.showcase-badge {
    position: absolute;
    top: -14px;
    left: -14px;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 2;
    animation: badgePop 2.5s ease-in-out infinite alternate;
}

@keyframes badgePop {
    0%  { transform: scale(1) rotate(-2deg); }
    100%{ transform: scale(1.06) rotate(1deg); }
}

.showcase-trust-strip {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 520px;
}

.showcase-trust-strip span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.showcase-trust-strip i {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-showcase-img { max-width: 100%; }
    .showcase-trust-strip {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        max-width: 100%;
    }
    .showcase-badge {
        top: -10px;
        left: -6px;
        font-size: 0.68rem;
    }
}

/* --- 5a. About Security Section --- */
.about-security-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.about-security-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-security-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-security-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-security-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.25rem;
    margin-bottom: 1.5rem;
}

.about-security-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about-security-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-security-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.about-security-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.about-security-list-item i {
    color: var(--color-secondary); /* Golden Amber checkmark */
    font-size: 1.1rem;
}

.btn-about-security {
    background-color: var(--color-primary); /* Deep Navy Blue */
    color: var(--color-text-light);
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    border: 2px solid var(--color-primary);
}

.btn-about-security:hover {
    background-color: var(--color-secondary); /* Golden Amber on hover */
    color: var(--color-primary); /* Deep Navy text on hover */
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .about-security-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- 5b. Redesigned Best Sellers Section --- */
.bestsellers-section {
    padding: 5rem 0;
    background-color: var(--color-bg-white);
}

.bestsellers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1rem;
}

.bestsellers-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    letter-spacing: -0.5px;
}

.bestsellers-view-all {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: underline;
    transition: var(--transition-normal);
}

.bestsellers-view-all:hover {
    color: var(--color-primary);
}

.bestsellers-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.bestsellers-grid::-webkit-scrollbar {
    display: none;
}

.best-sell-card {
    flex: 0 0 calc(33.333% - 1.33rem); /* Show 3 cards at a time on desktop */
    min-width: 280px;
    height: 380px;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

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

/* Card Themes */
.best-sell-card.theme-dark {
    background-color: var(--color-primary-dark); /* Deep Navy Blue background */
}

.best-sell-card.theme-light {
    background-color: #e9ebed; /* Light Gray background */
}

.best-sell-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    font-family: var(--font-sans);
    margin: 0 0 1.5rem 0;
}

.best-sell-card.theme-dark .best-sell-title {
    color: var(--color-text-light); /* White title for dark card */
}

.best-sell-card.theme-light .best-sell-title {
    color: var(--color-primary-dark); /* Navy title for light card */
}

/* Image Container styling */
.best-sell-img-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
}

.best-sell-img-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition-normal);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.best-sell-card:hover .best-sell-img-container img {
    transform: scale(1.08) translateY(-5px);
}

.best-sell-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1rem;
    font-family: var(--font-sans);
}

.best-sell-card.theme-dark .best-sell-price {
    color: var(--color-secondary); /* Golden Amber price for dark card */
}

.best-sell-card.theme-light .best-sell-price {
    color: var(--color-primary-dark); /* Navy Blue price for light card */
}

@media (max-width: 992px) {
    .best-sell-card {
        flex: 0 0 calc(50% - 1rem); /* Show 2 cards on tablet */
        height: 350px;
    }
}

@media (max-width: 600px) {
    .best-sell-card {
        flex: 0 0 calc(85% - 0.5rem); /* Show 1.2 cards on mobile */
        height: 330px;
        padding: 1.75rem 1.5rem;
    }
    .best-sell-title {
        font-size: 1.35rem;
    }
}

/* --- 5c. Benefits Section (Creative 3D Light Theme) --- */
.benefits-section {
    padding: 6rem 0;
    background-color: #f8fafc; /* Premium Light Gray-Blue background */
    position: relative;
    overflow: hidden;
}

/* Background Grid Overlay to enhance 3D depth in light mode */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(21, 57, 117, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 57, 117, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.5rem;
    gap: 3rem;
}

.benefits-header-left {
    flex: 1;
}

.benefits-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.25rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.benefits-title {
    font-size: 2.75rem;
    font-weight: 850;
    color: var(--color-text-dark); /* Dark title text */
    font-family: var(--font-sans);
    letter-spacing: -0.8px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(21, 57, 117, 0.06);
}

.benefits-header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.benefits-subtitle-text {
    color: var(--color-text-muted); /* Soft slate-gray subtitle */
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.btn-benefits-tech {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 0.85rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(21, 57, 117, 0.15);
}

.btn-benefits-tech:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 161, 55, 0.25);
}

/* 3D Benefits Grid */
.benefits-grid-3d {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem;
}

/* Claymorphic 3D Light Card */
.benefit-card-3d {
    background: #ffffff; /* Solid premium white card */
    border-radius: 24px;
    padding: 2.75rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    /* Soft Neumorphic / Clay 3D Shadows */
    box-shadow: 
        0 10px 30px rgba(21, 57, 117, 0.04),
        0 1px 3px rgba(21, 57, 117, 0.02),
        inset 0 4px 6px rgba(255, 255, 255, 0.9),
        inset 0 -4px 6px rgba(21, 57, 117, 0.02);
    border: 1px solid rgba(21, 57, 117, 0.06);
    transition: transform 0.1s ease-out, border-color var(--transition-normal), box-shadow var(--transition-normal);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    cursor: pointer;
}

.benefit-card-3d:hover {
    border-color: rgba(21, 57, 117, 0.15);
    box-shadow: 
        0 25px 50px rgba(21, 57, 117, 0.1),
        inset 0 4px 6px rgba(255, 255, 255, 0.95);
}

/* 3D Cube Wrapper */
.cube-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 500px;
    transform: translateZ(35px); /* Pop out of the card */
}

/* Rotating 3D CSS Cube */
.cube-3d {
    width: 52px;
    height: 52px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(25deg);
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-card-3d:hover .cube-3d {
    /* Spin exactly 180 degrees horizontally on hover */
    transform: rotateX(-20deg) rotateY(205deg) scale(1.15);
}

/* Cube Faces */
.cube-face {
    position: absolute;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-secondary); /* Gold wireframe */
    border-radius: 6px;
    box-shadow: inset 0 0 12px rgba(215, 161, 55, 0.2);
}

/* Volumetric semi-transparent face gradients */
.face-front  { background: rgba(21, 57, 117, 0.85); transform: rotateY(0deg) translateZ(26px); }
.face-back   { background: rgba(215, 161, 55, 0.85); transform: rotateY(180deg) translateZ(26px); }
.face-left   { background: rgba(13, 27, 52, 0.85); transform: rotateY(-90deg) translateZ(26px); }
.face-right  { background: rgba(13, 27, 52, 0.85); transform: rotateY(90deg) translateZ(26px); }
.face-top    { background: rgba(21, 57, 117, 0.85); transform: rotateX(90deg) translateZ(26px); }
.face-bottom { background: rgba(215, 161, 55, 0.85); transform: rotateX(-90deg) translateZ(26px); }

.cube-face i {
    font-size: 1.45rem;
    color: var(--color-text-light);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    transition: var(--transition-normal);
}

.face-back i {
    transform: rotateY(180deg); /* Counter-rotate icon so it is not mirrored */
}

.benefit-card-3d:hover .cube-face {
    border-color: var(--color-text-light);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Lifted text inside card */
.benefit-card-title-3d {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark); /* Dark text for light mode */
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-sans);
    transform: translateZ(20px); /* Pop text out slightly */
    transition: var(--transition-normal);
}

.benefit-card-3d:hover .benefit-card-title-3d {
    color: var(--color-primary); /* Highlight in navy blue on hover */
}

@media (max-width: 1200px) {
    .benefits-grid-3d {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
    .benefits-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .benefits-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .benefits-grid-3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid-3d {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .benefit-card-3d {
        padding: 1.5rem 0.75rem !important;
        gap: 1rem !important;
        border-radius: 18px !important;
    }
    .cube-wrapper {
        height: 64px !important;
        perspective: 350px !important;
    }
    .cube-3d {
        width: 40px !important;
        height: 40px !important;
    }
    .cube-face {
        width: 40px !important;
        height: 40px !important;
    }
    .face-front  { transform: rotateY(0deg)    translateZ(20px) !important; }
    .face-back   { transform: rotateY(180deg)  translateZ(20px) !important; }
    .face-left   { transform: rotateY(-90deg)  translateZ(20px) !important; }
    .face-right  { transform: rotateY(90deg)   translateZ(20px) !important; }
    .face-top    { transform: rotateX(90deg)   translateZ(20px) !important; }
    .face-bottom { transform: rotateX(-90deg)  translateZ(20px) !important; }
    .cube-face i {
        font-size: 1.1rem !important;
    }
    .benefit-card-title-3d {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    .benefits-section {
        padding: 3.5rem 0 !important;
    }
    .benefits-header-wrapper {
        margin-bottom: 2rem !important;
    }
    .benefits-title {
        font-size: 1.75rem !important;
    }
}

.empower-banner-section {
    padding: 6rem 0 0 0; /* No bottom padding so the mascot sits on the section base */
    background-color: #0b1a30; /* Rich Dark Navy background matching the screenshot */
    background-image: 
        linear-gradient(rgba(11, 26, 48, 0.94), rgba(11, 26, 48, 0.96)), /* Dark overlay for text readability */
        url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.empower-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.empower-content-col {
    flex: 1;
    max-width: 55%;
    padding-bottom: 6rem; /* Ensure padding on content since mascot pops down */
}

.empower-title {
    font-size: 3.5rem;
    font-weight: 850;
    color: #ffffff;
    line-height: 1.15;
    font-family: var(--font-sans);
    margin-bottom: 1.75rem;
    letter-spacing: -1.2px;
}

.empower-desc {
    font-size: 1.125rem;
    color: #a5b7d6; /* Readable soft grey-blue */
    line-height: 1.75;
    font-family: var(--font-sans);
    margin: 0;
}

.empower-image-col {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.empower-mascot-img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateY(0) scale(1.05);
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.6));
    animation: floatMascot 6s ease-in-out infinite;
    z-index: 5;
}

/* 3D Floating Mascot Animation */
@keyframes floatMascot {
    0% {
        transform: translateY(0) scale(1.05);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1.05);
    }
}

@media (max-width: 992px) {
    .empower-banner-section {
        padding: 5rem 0 3rem 0;
    }
    .empower-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .empower-content-col {
        max-width: 100%;
        padding-bottom: 0;
    }
    .empower-title {
        font-size: 2.5rem;
    }
    .empower-image-col {
        max-width: 80%;
    }
    .empower-mascot-img {
        transform: translateY(0) scale(1);
        animation: floatMascotMobile 6s ease-in-out infinite;
    }
}

@keyframes floatMascotMobile {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* --- Our Services Premium Tech Section --- */
.services-neo-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    font-family: var(--font-sans);
}
.services-neo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 4rem;
}
.services-neo-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #153975;
    margin: 0;
    letter-spacing: -1px;
}
.services-neo-desc {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}
.services-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0 4rem 0;
}
.services-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}
.services-marquee-wrapper:hover .services-marquee-track {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.service-neo-card {
    background: linear-gradient(145deg, #153975, #0b1f42);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    width: 400px;
    flex-shrink: 0;
    border: 1px solid rgba(215, 161, 55, 0.15);
    box-shadow: 0 10px 30px rgba(11, 31, 66, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-neo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(11, 31, 66, 0.25), 0 0 20px rgba(215, 161, 55, 0.1);
    border-color: rgba(215, 161, 55, 0.5);
}
.neo-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    max-width: 75%;
}
.neo-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
}
.neo-highlight {
    color: #ffffff;
}
.neo-card-desc-visible {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #b0c4de;
    line-height: 1.6;
}
.neo-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #d7a137;
    text-decoration: none;
    margin-top: auto;
    transition: opacity 0.3s ease;
}
.neo-learn-more:hover {
    opacity: 0.8;
}
.neo-learn-more i {
    background: rgba(215, 161, 55, 0.15);
    color: #d7a137;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(215, 161, 55, 0.3);
}
.service-neo-card:hover .neo-learn-more i {
    transform: translateX(5px);
    background: rgba(215, 161, 55, 0.3);
}
.neo-card-image {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.05;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
}
.neo-card-image i {
    font-size: 9rem;
    color: #ffffff;
}
.service-neo-card:hover .neo-card-image {
    opacity: 0.15;
    transform: rotate(0deg) scale(1.1);
    color: #d7a137;
}

/* Old Card Styles removed for unified premium look */

@media (max-width: 992px) {
    .services-neo-header {
        flex-direction: column;
        gap: 2rem;
    }
    .services-neo-title {
        font-size: 2.5rem;
    }
    .services-neo-grid {
        grid-template-columns: 1fr;
    }
    .service-neo-card {
        padding: 2rem;
        min-height: 250px;
    }
    .neo-card-content {
        max-width: 70%;
    }
    .neo-card-image {
        right: 1.5rem;
    }
    .neo-card-image i {
        font-size: 4rem;
    }
}
@media (max-width: 576px) {
    .neo-card-content {
        max-width: 100%;
        z-index: 2;
    }
    .neo-card-image {
        opacity: 0.15;
        right: -20px;
        bottom: -20px;
        top: auto;
        transform: none;
    }
    .neo-card-image i {
        font-size: 8rem;
    }
}

/* --- Blog Section --- */
/* --- Premium Blog Section --- */
.blog-section {
    padding: 7rem 0;
    background-color: #f8f9fc;
    position: relative;
    overflow: hidden;
}

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

/* Watermark */
.blog-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(11, 31, 66, 0.03);
    user-select: none;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 0.5rem;
    font-family: var(--font-sans);
}

.blog-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.featured-blogs-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin: 0;
    font-family: var(--font-sans);
}

.featured-blogs-title .title-bold {
    font-size: 3rem;
    font-weight: 900;
    color: #0b1f42;
    letter-spacing: -1px;
}

.featured-blogs-title .title-outline {
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #0b1f42;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.all-posts-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0b1f42;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.all-posts-link i {
    transition: transform 0.3s ease;
}

.all-posts-link:hover {
    color: #d7a137;
}

.all-posts-link:hover i {
    transform: translateX(4px);
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    position: relative;
    z-index: 2;
}

/* Premium Card */
.premium-blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-blog-img-wrap {
    width: 100%;
    aspect-ratio: 1.5;
    overflow: hidden;
}

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

.premium-blog-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-blog-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.premium-blog-title {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-sans);
}

.premium-blog-title a {
    color: #0b1f42;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover Actions */
.premium-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(11, 31, 66, 0.07);
    border-color: rgba(215, 161, 55, 0.15);
}

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

.premium-blog-card:hover .premium-blog-title a {
    color: #d7a137;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .featured-blogs-title .title-bold {
        font-size: 2.5rem;
    }
    
    .featured-blogs-title .title-outline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .all-posts-link {
        margin-top: 0.5rem;
    }
}



/* --- Contact Section --- */
/* --- Modern Split-Card Contact Section --- */
.contact-section {
    padding: 7rem 0;
    background-color: #f8f9fc;
    font-family: var(--font-sans);
}

.contact-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11, 31, 66, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Left Banner Column */
.contact-banner-col {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-banner-overlay {
    background: linear-gradient(135deg, rgba(11, 31, 66, 0.95) 0%, rgba(21, 57, 117, 0.85) 100%);
    padding: 4.5rem 3.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

/* Visual glassmorphic overlay for banner content */
.contact-banner-content {
    position: relative;
    z-index: 2;
}

.contact-banner-logo {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.contact-banner-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 3.5rem 0;
}

.contact-banner-social {
    display: flex;
    gap: 1rem;
}

.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-circle:hover {
    background: #ffffff;
    color: #0b1f42;
    transform: translateY(-3px);
}

/* Right Form Column */
.contact-form-col-new {
    padding: 4.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title-new {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b1f42;
    margin: 0 0 0.4rem 0;
    letter-spacing: -0.5px;
}

.form-subtitle-new {
    font-size: 0.92rem;
    color: #6b7280;
    margin: 0 0 2.5rem 0;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.input-group-new {
    display: flex;
    align-items: center;
    border: 1.5px solid #eef2f6;
    background: #fdfdfd;
    border-radius: 14px;
    padding: 0.6rem 1.25rem;
    gap: 1rem;
    transition: all 0.3s ease;
}

.input-group-new.full-width-group {
    width: 100%;
    margin-bottom: 1.25rem;
    box-sizing: border-box;
}

.input-group-new.textarea-group-new {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.input-icon-new {
    font-size: 1.2rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.input-field-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.input-field-wrap label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 0.2rem;
    text-transform: none;
    letter-spacing: 0.2px;
}

.input-field-wrap input,
.input-field-wrap textarea {
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1f2937;
    background: transparent;
    width: 100%;
    font-family: var(--font-sans);
    padding: 0;
}

.input-field-wrap textarea {
    resize: none;
    padding-top: 0.2rem;
}

.input-group-new:focus-within {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.input-group-new:focus-within .input-icon-new {
    color: #3b82f6;
}

.btn-submit-new {
    background: #0052ff;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-submit-new:hover {
    background: #0045d8;
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.25);
    transform: translateY(-2px);
}

.btn-submit-new:active {
    transform: translateY(0);
}

/* Response messaging overrides */
.form-status-msg {
    display: block !important;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    margin: 1.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .contact-card-wrap {
        grid-template-columns: 1fr;
    }
    
    .contact-banner-overlay {
        padding: 3.5rem 2.5rem;
        min-height: 250px;
    }
    
    .contact-banner-desc {
        margin-bottom: 2rem;
    }
    
    .contact-form-col-new {
        padding: 3.5rem 2.5rem;
    }
}

@media (max-width: 576px) {
    .form-row-new {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-form-col-new {
        padding: 2.5rem 1.5rem;
    }
    
    .form-title-new {
        font-size: 1.8rem;
    }
}

/* --- How We Work Section (Light Theme) --- */
.how-we-work-section {
    padding: 7rem 0;
    background: #ffffff;
    color: #1f2937;
    font-family: var(--font-sans);
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.how-we-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Visual Column */
.how-we-work-visual-col {
    display: flex;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.tech-monitor-card {
    position: relative;
    background: #040d1a;
    border-radius: 24px;
    padding: 1.25rem;
    border: 1.5px solid rgba(215, 161, 55, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.monitor-hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.monitor-status {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(215, 161, 55, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
}

.status-dot.pulsing {
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); opacity: 0; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.status-text {
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.monitor-stats {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.monitor-screen-glare {
    position: absolute;
    inset: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    border-radius: 12px;
    pointer-events: none;
    z-index: 5;
}

.monitor-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-hud-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d7a137, transparent);
    animation: scan-move 6s linear infinite;
    z-index: 4;
}

@keyframes scan-move {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Corner borders */
.monitor-corner-borders .corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: #d7a137;
    border-style: solid;
    z-index: 10;
}

.monitor-corner-borders .tl { top: 0.75rem; left: 0.75rem; border-width: 2px 0 0 2px; }
.monitor-corner-borders .tr { top: 0.75rem; right: 0.75rem; border-width: 2px 2px 0 0; }
.monitor-corner-borders .bl { bottom: 0.75rem; left: 0.75rem; border-width: 0 0 2px 2px; }
.monitor-corner-borders .br { bottom: 0.75rem; right: 0.75rem; border-width: 0 2px 2px 0; }

/* Right Content Column */
.how-we-work-badge {
    margin-bottom: 1rem;
}

.how-we-work-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b1f42;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.how-we-work-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0 0 3.5rem 0;
    line-height: 1.6;
}

/* Vertical Timeline Layout */
.how-we-work-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 1rem;
}

.timeline-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: calc(2.25rem - 1px);
    width: 2px;
    background: linear-gradient(to bottom, #d7a137 0%, #e5e7eb 100%);
    z-index: 1;
}

.how-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-icon-badge {
    width: 4.5rem;
    height: 4.5rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-icon-badge i {
    font-size: 1.25rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.step-number-tag {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #4b5563;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
    transition: all 0.3s ease;
}

.step-content-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 1.5rem;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.step-content-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1f42;
    margin: 0 0 0.4rem 0;
    transition: color 0.3s ease;
}

.step-content-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Active Hover Styles */
.how-timeline-step:hover .step-icon-badge {
    border-color: #d7a137;
    background: #0b1f42;
    box-shadow: 0 0 20px rgba(215, 161, 55, 0.3);
    transform: scale(1.05);
}

.how-timeline-step:hover .step-icon-badge i {
    color: #d7a137;
}

.how-timeline-step:hover .step-number-tag {
    background: #d7a137;
    color: #0b1f42;
    border-color: #ffffff;
}

.how-timeline-step:hover .step-content-card {
    background: #ffffff;
    border-color: rgba(215, 161, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateX(6px);
}

.how-timeline-step:hover .step-content-card h3 {
    color: #153975;
}

/* Highlighted Plan Card Style */
.highlight-step .step-content-card {
    background: #fffdf5;
    border-color: rgba(215, 161, 55, 0.25);
}

.highlight-step .step-icon-badge {
    border-color: rgba(215, 161, 55, 0.4);
}

.highlight-step .step-icon-badge i {
    color: #d7a137;
}

.highlight-step .step-number-tag {
    background: #d7a137;
    color: #0b1f42;
}

.highlight-pill {
    display: inline-block;
    background: linear-gradient(135deg, #d7a137, #f0c060);
    color: #0b1f42;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Responsive Grid Layout overrides */
@media (max-width: 992px) {
    .how-we-work-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-we-work-visual-col {
        position: static;
    }
    
    .tech-monitor-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .how-timeline-step {
        flex-direction: column;
        gap: 1rem;
    }
    .timeline-line {
        display: none;
    }
    .how-we-work-timeline {
        padding-left: 0;
    }
}

/* --- E-Commerce storefront Layout --- */
.store-main-layout {
    background-color: #f6f8fc;
    padding-bottom: 5rem;
}

/* Store Slider */
.store-hero-slider {
    position: relative;
    background-color: #f1f5f9;
    padding: 0;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: center;
}

.store-slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
}

.store-slide-inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.store-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    box-sizing: border-box;
}

.store-slide.full-banner-slide {
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

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

.store-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Creative Technology Slide Styling */
.creative-tech-slide {
    background: radial-gradient(circle at 75% 50%, #153975 0%, #08152e 100%) !important;
    color: #ffffff;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.creative-tech-slide .store-slide-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.creative-tech-slide .store-slide-title .highlight {
    color: #d7a137 !important;
}

.creative-tech-slide .store-slide-desc {
    color: #d1d5db !important;
    max-width: 480px;
    font-size: 1.02rem;
}

.creative-tech-slide .store-slide-image {
    position: relative;
    width: 450px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.creative-tech-slide .store-slide-image img {
    max-height: 380px !important;
    max-width: 90%;
    z-index: 5;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: none;
}

.creative-tech-slide:hover .store-slide-image img {
    transform: translateY(-8px) scale(1.03);
}

/* Background glowing circles and tech rings */
.glowing-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.tech-ring {
    position: absolute;
    border: 1.5px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    z-index: 2;
}

.tech-ring.ring-1 {
    width: 360px;
    height: 360px;
    animation: rotateRing 25s linear infinite;
}

.tech-ring.ring-2 {
    width: 290px;
    height: 290px;
    border-style: dotted;
    border-color: rgba(215, 161, 55, 0.25);
    animation: rotateRing 18s linear infinite reverse;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.store-slide-content {
    flex: 1.2;
    max-width: 550px;
}

.store-deal-badge {
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.store-slide-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0b1f42;
    margin: 0 0 1.25rem 0;
    letter-spacing: -1px;
}

.store-slide-title .highlight {
    color: #0052ff;
}

.store-slide-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.btn-store-cta {
    background-color: #d7a137;
    color: #0b1f42;
    font-size: 0.95rem;
    font-weight: 750;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 161, 55, 0.15);
}

.btn-store-cta:hover {
    background-color: #0b1f42;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 31, 66, 0.2);
}

.store-slide-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-slide-image img {
    max-width: 90%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    animation: floatMascot 4s ease-in-out infinite;
}

.store-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.store-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(11, 31, 66, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.store-dot.active {
    background-color: #0052ff;
    width: 24px;
    border-radius: 10px;
}

/* Trust Features Strip */
.trust-features-strip {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    font-size: 1.8rem;
    color: #d7a137;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-text h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0b1f42;
    margin: 0 0 0.15rem 0;
}

.trust-text p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Categories grid storefront */
.store-categories-section {
    padding: 3rem 0;
}

.store-categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
}

.store-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.store-cat-icon-container {
    width: 100px;
    height: 100px;
    background-color: #e9efff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.75rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.store-cat-icon-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.store-cat-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #4b5563;
    text-transform: uppercase;
    white-space: nowrap;
}

.store-cat-card:hover .store-cat-icon-container {
    background-color: #dbeafe;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.12);
}

.store-cat-card:hover .store-cat-icon-container img {
    transform: scale(1.08);
}

.store-cat-card:hover .store-cat-label {
    color: #d7a137;
}

/* Products Section */
.store-products-section {
    padding: 2rem 0;
}

.store-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.25rem;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.store-section-title {
    font-size: 1.6rem;
    font-weight: 850;
    color: #0b1f42;
    margin: 0;
}

.store-tabs-wrapper {
    display: flex;
    gap: 0.5rem;
}

.store-tab-btn {
    border: none;
    outline: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 750;
    color: #4b5563;
    padding: 0.6rem 1.25rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.store-tab-btn.active {
    background-color: #d7a137;
    color: #0b1f42;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* Product Card storefront */
.store-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(11, 31, 66, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.store-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(11, 31, 66, 0.07);
    border-color: rgba(59, 130, 246, 0.15);
}

.prod-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    z-index: 5;
}

.prod-badge-out {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #6b7280;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    z-index: 5;
}

.prod-img-box {
    width: 100%;
    aspect-ratio: 1.25;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

.prod-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.store-product-card:hover .prod-img-box img {
    transform: scale(1.06);
}

.prod-countdown {
    background-color: #fef2f2;
    border-top: 1px solid #fee2e2;
    border-bottom: 1px solid #fee2e2;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #b91c1c;
}

.prod-countdown-out {
    background-color: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    font-size: 0.72rem;
    color: #4b5563;
    font-weight: 700;
}

.timer-countdown {
    font-weight: 800;
}

.prod-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b1f42;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.prod-stars {
    font-size: 0.75rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.prod-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ef4444;
}

.original-price {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.btn-prod-buy {
    background-color: #0052ff;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 750;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s;
}

.btn-prod-buy:hover {
    background-color: #0045d8;
    box-shadow: 0 6px 15px rgba(0, 82, 255, 0.2);
}

.btn-prod-buy.out-of-stock {
    background-color: #ef4444;
}
.btn-prod-buy.out-of-stock:hover {
    background-color: #dc2626;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.2);
}

/* Triple Promo Banners */
.store-promo-banners {
    padding: 3rem 0;
}

.promo-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.promo-card {
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 190px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.promo-card.bg-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
}

.promo-card.bg-yellow {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
    color: #ffffff;
}

.promo-card.bg-red {
    background: linear-gradient(135deg, #7f1d1d 0%, #ef4444 100%);
    color: #ffffff;
}

.promo-text-col {
    z-index: 2;
}

.promo-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.promo-card h4 {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 0.85rem 0;
}

.promo-price {
    font-size: 0.95rem;
    font-weight: 750;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
}

.promo-img-col {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40%;
}

.promo-img-col img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

.promo-card:hover .promo-img-col img {
    transform: translateY(-4px) scale(1.05);
}

/* Opacity utility */
.opacity-muted {
    opacity: 0.65;
}

/* Responsive Store layout */
@media (max-width: 1200px) {
    .promo-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .trust-strip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .store-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .store-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-banner-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promo-card {
        height: 170px;
    }
    
    .store-hero-slider {
        height: auto !important;
        min-height: unset !important;
        padding: 0 !important;
    }
    
    /* Full banner (store banner image) */
    .store-slide.full-banner-slide {
        height: 220px !important;
    }
    
    .store-slide.full-banner-slide .store-full-banner-img {
        object-fit: cover !important;
        object-position: center center !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Creative tech slide stacked layout - active state handled separately */
    .store-slide.creative-tech-slide {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1.25rem !important;
        gap: 1.5rem !important;
        justify-content: center !important;
    }
    
    /* Only when active: allow the tech slide to expand in document flow */
    .store-slide.creative-tech-slide.active {
        min-height: 420px !important;
        height: auto !important;
    }
    
    /* Full banner when active: fixed height */
    .store-slide.full-banner-slide.active {
        height: 220px !important;
        min-height: unset !important;
    }
    
    .store-slide-inner-container {
        flex-direction: column !important;
        padding: 2rem 1.25rem !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .store-slide-content {
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .creative-tech-slide .store-slide-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px !important;
    }
    
    .creative-tech-slide .store-slide-desc {
        font-size: 0.9rem !important;
        max-width: 320px;
        margin: 0 auto 1.5rem auto !important;
    }
    
    .store-deal-badge {
        margin-bottom: 1rem !important;
    }
    
    /* Hide decorative rings on mobile */
    .glowing-circle,
    .tech-ring {
        display: none !important;
    }
    
    .creative-tech-slide .store-slide-image {
        width: 100% !important;
        height: 180px !important;
        justify-content: center !important;
    }
    
    .creative-tech-slide .store-slide-image img {
        max-height: 160px !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    }
    
    /* Slider dots */
    .store-slider-dots {
        bottom: 10px !important;
    }
}

@media (max-width: 576px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }
    
    .store-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .store-products-grid {
        grid-template-columns: 1fr;
    }
    
    .store-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .store-slide-title {
        font-size: 2rem !important;
    }
}

/* --- Brand Profile Page (About Page) Layout --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&family=Reenie+Beanie&display=swap');

.about-page-layout {
    background-color: #ffffff;
    overflow: hidden;
}

/* Sections split grids */
.about-hero-section,
.about-founder-section,
.about-mission-section {
    padding: 6rem 0;
    position: relative;
}

.about-founder-section {
    background-color: #f8fafc;
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-split-grid.reverse-split {
    grid-template-columns: 1fr 1.2fr;
}

/* Text styles */
.about-handwritten {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0b1f42;
    margin: 0 0 1.75rem 0;
    letter-spacing: -1px;
}

.about-lead-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 1.5rem 0;
}

.about-body-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 1.25rem 0;
}

/* Image & Frames with decorative dot patterns */
.about-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-frame {
    position: relative;
    z-index: 5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(11, 31, 66, 0.08);
    background-color: #ffffff;
    width: 100%;
    aspect-ratio: 1.25;
}

.about-img-frame.portrait-frame {
    aspect-ratio: 0.95;
    max-width: 400px;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-frame:hover img {
    transform: scale(1.04);
}

/* Background dots decorations */
.dot-pattern-bg {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#3b82f6 1.5px, transparent 1.5px), radial-gradient(#a855f7 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    background-position: 0 0, 7.5px 7.5px;
    opacity: 0.25;
    z-index: 1;
    border-radius: 50%;
}

.dot-pattern-right {
    bottom: -35px;
    right: -35px;
}

.dot-pattern-left {
    bottom: -35px;
    left: -35px;
}

/* Founder section quotes and footer */
.quote-icon-decor {
    position: absolute;
    top: 3rem;
    left: 4rem;
    font-size: 8rem;
    color: #e2e8f0;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.founder-name {
    font-size: 2rem;
    font-weight: 900;
    color: #0b1f42;
    margin: 0 0 0.25rem 0;
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2rem;
    border-bottom: 1.5px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.founder-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1.5px dashed #e2e8f0;
}

.founder-signature {
    font-family: 'Reenie Beanie', cursive;
    font-size: 2.8rem;
    color: #3b82f6;
    line-height: 1;
    transform: rotate(-3deg);
}

.founder-socials {
    display: flex;
    gap: 0.75rem;
}

.founder-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.founder-social-btn:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #3b82f6;
}

/* Scroll Language ticker banner */
.about-lang-marquee {
    background-color: #f8fafc;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1.5px solid #f1f5f9;
    border-bottom: 1.5px solid #f1f5f9;
}

.marquee-track {
    display: inline-block;
    animation: scrollTicker 30s linear infinite;
}

.marquee-track span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #94a3b8;
    margin-right: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive configurations for about page */
@media (max-width: 992px) {
    .about-split-grid,
    .about-split-grid.reverse-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-split-grid.reverse-split .about-image-col {
        order: 2;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-hero-section,
    .about-founder-section,
    .about-mission-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .founder-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* --- Get in Touch Page (Contact Page) Layout --- */
.contact-page-layout {
    background-color: #f8fafc;
    padding-bottom: 3rem;
}

.contact-header-section {
    padding: 5rem 0 3rem 0;
    text-align: center;
}

.contact-handwritten {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-main-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0b1f42;
    margin: 0 0 1.25rem 0;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-subtitle-text {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Contact Grid Split */
.contact-grid-section {
    padding: 2rem 0 5rem 0;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Info Cards */
.contact-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(11, 31, 66, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 31, 66, 0.05);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.contact-card-text h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b1f42;
    margin: 0 0 0.5rem 0;
}

.contact-card-text p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.contact-email-link {
    font-size: 0.95rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.contact-email-link:hover {
    color: #1e3a8a;
}

.contact-faq-link {
    font-size: 0.88rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.75rem;
    transition: color 0.2s;
}

.contact-faq-link:hover {
    color: #1e3a8a;
}

.contact-social-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.contact-social-row a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #f8fafc;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.contact-social-row a:hover {
    background-color: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

/* Contact Message Form */
.contact-form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(11, 31, 66, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-card h2 {
    font-size: 1.6rem;
    font-weight: 850;
    color: #0b1f42;
    margin: 0 0 2rem 0;
}

.detailed-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-item label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0b1f42;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.form-group-item input,
.form-group-item select,
.form-group-item textarea {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    color: #374151;
    background-color: #f8fafc;
    outline: none;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.form-group-item input:focus,
.form-group-item select:focus,
.form-group-item textarea:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-detailed-submit {
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s;
    margin-top: 0.5rem;
    width: fit-content;
}

.btn-detailed-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* HQ roots styling on Contact page */
.contact-roots-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.roots-badge {
    display: inline-block;
    background-color: #eff6ff;
    color: #3b82f6;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.roots-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0b1f42;
    margin: 0 0 1.5rem 0;
    letter-spacing: -1px;
}

.roots-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.roots-icon-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.roots-subicon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.roots-icon-item span {
    font-size: 0.82rem;
    font-weight: 800;
    color: #4b5563;
}

.contact-hq-frame {
    aspect-ratio: 1;
}

.hq-label-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 10;
}

.hq-label-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0 0 0.15rem 0;
}

.hq-label-card p {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .roots-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .form-row-two-col {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .btn-detailed-submit {
        width: 100%;
    }
    
    .hq-label-card {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        text-align: center;
    }
}

/* --- Advanced Mobile Layout & UX Optimizations --- */
@media (max-width: 768px) {
    /* Header & Navigation */
    .main-header {
        padding: 0.5rem 0;
    }
    
    .logo-img-header {
        max-height: 38px;
    }
    
    .navbar {
        max-height: 80vh;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 2px solid var(--color-primary-light);
    }
    
    /* Mega menu grid adjustments */
    .category-menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .category-menu-card {
        padding: 0.75rem !important;
        background: #f8fafc;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.03);
    }
    
    .category-img-container {
        width: 55px !important;
        height: 55px !important;
        border-radius: 10px !important;
        padding: 0.35rem !important;
    }
    
    .category-menu-name {
        font-size: 0.82rem !important;
        font-weight: 700;
        color: #0b1f42;
    }
    
    /* Hero slider controls */
    .slider-control {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
        background-color: rgba(0, 0, 0, 0.4) !important;
    }
    
    .slider-control:hover {
        background-color: rgba(0, 0, 0, 0.7) !important;
    }
    
    /* Shop switcher tab buttons */
    .section-tabs-container {
        gap: 1.25rem !important;
        margin-bottom: 2rem !important;
        justify-content: center;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .tab-btn {
        font-size: 1.05rem !important;
        padding: 0.5rem 0 !important;
    }
    
    /* General products grid to 2-columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Clean up product cards for 2-column view */
    .ayur-premium-card {
        padding: 0.85rem !important;
        height: auto !important;
        border-radius: 16px !important;
    }
    
    .ayur-premium-card .card-visuals-wrapper {
        height: 140px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .ayur-premium-card .product-title {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .ayur-premium-card .product-desc-para {
        display: none !important; /* Hide long description text on mobile cards */
    }
    
    .ayur-premium-card .price-row {
        margin-bottom: 0.75rem !important;
    }
    
    .ayur-premium-card .product-price {
        font-size: 1rem !important;
    }
    
    .ayur-premium-card .product-mrp {
        font-size: 0.8rem !important;
    }
    
    .ayur-premium-card .btn-whatsapp-buy {
        padding: 0.65rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 576px) {
    /* Store products grid to 2-columns */
    .store-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .store-products-grid .store-product-card {
        padding: 0.75rem !important;
        border-radius: 16px !important;
    }
    
    .store-products-grid .prod-badge,
    .store-products-grid .prod-badge-out {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.5rem !important;
        top: 0.5rem !important;
        left: 0.5rem !important;
    }
    
    .store-products-grid .prod-img-box {
        height: 130px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .store-products-grid .prod-title {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .store-products-grid .prod-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .store-products-grid .sale-price {
        font-size: 1rem !important;
    }
    
    .store-products-grid .original-price {
        font-size: 0.8rem !important;
    }
    
    .store-products-grid .btn-prod-buy {
        padding: 0.6rem 0.85rem !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
        width: 100%;
        justify-content: center;
    }
    
    /* Promo Banners */
    .promo-banner-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .promo-card {
        padding: 1.5rem !important;
    }
    
    /* Store Section Headers */
    .store-section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .store-tabs-wrapper {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        width: 100%;
    }
    
    .store-tab-btn {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Make Store categories list neat squircles scroll or grid */
    .store-categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .store-cat-card {
        padding: 0.75rem 0.5rem !important;
        border-radius: 16px !important;
    }
    
    .store-cat-icon-container {
        width: 60px !important;
        height: 60px !important;
        border-radius: 12px !important;
    }
    
    .store-cat-label {
        font-size: 0.75rem !important;
    }
    
    /* Horizontally scrollable Trust Strip on Mobile */
    .trust-strip-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding: 0.75rem 1rem !important;
        margin: 0 -1rem 2rem -1rem !important; /* stretch full screen bleed */
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .trust-strip-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .trust-strip-grid .trust-item {
        flex: 0 0 78% !important;
        scroll-snap-align: start !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding: 1.25rem !important;
        background-color: #ffffff !important;
        border-radius: 16px !important;
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        gap: 1rem !important;
    }
    
    .trust-strip-grid .trust-icon {
        font-size: 1.5rem !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .trust-strip-grid .trust-text h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .trust-strip-grid .trust-text p {
        font-size: 0.75rem !important;
    }
    
    /* Layout structural paddings */
    .about-hero-section,
    .about-founder-section,
    .about-mission-section,
    .contact-roots-section {
        padding: 3rem 0 !important;
    }
    
    /* Ensure no overflow or layout shift */
    body, html {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .dot-pattern-bg {
        width: 120px !important;
        height: 120px !important;
    }
}

/* ==============================================================
   INDEX.PHP COMPREHENSIVE MOBILE OVERRIDES 
   ============================================================== */
@media (max-width: 992px) {
    /* 1. Hero Slider Image */
    .hero-slide-img {
        min-height: 250px;
        object-fit: cover;
        object-position: center;
    }

    /* 2. Categories & Popular Products tabs */
    .section-tabs-container {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100%;
        margin-bottom: 2rem !important;
    }
    .section-tabs-container .tab-btn {
        width: 100% !important; 
        text-align: center !important; 
        padding: 1rem !important;
    }

    /* 3. About Security */
    .about-security-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .about-security-list {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .about-security-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    /* 4. Bestsellers */
    .bestsellers-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        text-align: left !important;
    }

    /* 5. Benefits */
    .benefits-header-wrapper {
        flex-direction: column !important;
        text-align: left !important;
        gap: 1.25rem !important;
    }
    .benefits-title {
        font-size: 2rem !important;
    }
    .benefits-grid-3d {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    /* 6. Empower Banner */
    .empower-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
        padding-bottom: 0 !important;
    }
    .empower-content-col {
        padding-bottom: 1rem !important;
        max-width: 100% !important;
    }
    .empower-image-col {
        max-width: 80% !important;
        margin: 0 auto;
    }
    .empower-title {
        font-size: 2.25rem !important;
    }

    /* 7. Services Marquee */
    .services-neo-header {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: flex-start !important;
    }
    .services-neo-header-right {
        text-align: left !important;
    }
    .services-neo-title {
        font-size: 2rem !important;
    }

    /* 8. Industries */
    .industries-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 1rem !important;
    }
    .industries-title {
        font-size: 2rem !important;
    }

    /* 9. Work Process */
    .work-process-header {
        text-align: center !important;
        margin-bottom: 3rem !important;
    }
    .work-process-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        padding: 0 1rem;
    }
    .process-line-bg {
        display: none !important; /* Hide horizontal connecting line */
    }
    .process-step-item {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
        position: relative;
    }
    .process-icon-container {
        margin-bottom: 1.5rem !important;
    }

    /* 10. How We Work */
    .how-we-work-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
    }
    .how-we-work-title {
        font-size: 2rem !important;
    }
    .how-we-work-timeline {
        padding-left: 0.5rem !important;
    }
}

@media (max-width: 768px) {
    /* More compact adjustments for mobile specifically */
    .hero-slide-img {
        min-height: 200px;
    }
    .benefits-grid-3d {
        grid-template-columns: 1fr !important;
    }
    .bestsellers-title {
        font-size: 1.75rem !important;
    }
    .empower-image-col {
        max-width: 100% !important;
    }
}
