/* 
   ==========================================================================
   THE LAUNDRYHUB - PREMIUM CSS STYLESHEET
   Aesthetics: Apple, Tesla, Dyson inspired.
   Luxury glassmorphism, glowing micro-interactions, responsive variables.
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- Root Variables (Default Dark/Premium Theme first, can toggle to Light) --- */
:root {
    /* Color Palette */
    --primary: #0066FF;
    --primary-rgb: 0, 102, 255;
    --bg-dark: #071A35;
    --bg-light: #F7F8FC;
    --text-dark: #FFFFFF;
    --text-light: #071A35;
    --accent: #FFD54A;
    --accent-rgb: 255, 213, 74;
    --white: #FFFFFF;
    
    /* Dynamic Theme Mapping */
    --bg-color: var(--bg-dark);
    --bg-sec-color: #0b254b;
    --text-color: var(--text-dark);
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(7, 26, 53, 0.65);
    --glass-bg-hover: rgba(7, 26, 53, 0.85);
    --glass-card: rgba(255, 255, 255, 0.03);
    --glass-card-hover: rgba(255, 255, 255, 0.06);
    --shadow-color: rgba(0, 0, 0, 0.5);
    
    /* Layout Constants */
    --nav-height: 80px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Neon Glows */
    --glow-primary: 0 0 20px rgba(0, 102, 255, 0.4);
    --glow-accent: 0 0 20px rgba(255, 213, 74, 0.4);
}

/* Light Theme Variables overrides */
[data-theme="light"] {
    --bg-color: var(--bg-light);
    --bg-sec-color: #FFFFFF;
    --text-color: var(--text-light);
    --text-muted: rgba(7, 26, 53, 0.6);
    --border-color: rgba(7, 26, 53, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-card: rgba(7, 26, 53, 0.02);
    --glass-card-hover: rgba(7, 26, 53, 0.05);
    --shadow-color: rgba(7, 26, 53, 0.1);
    --glow-primary: 0 10px 30px rgba(0, 102, 255, 0.15);
    --glow-accent: 0 10px 30px rgba(255, 213, 74, 0.2);
    --accent: #D48000;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    position: relative;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor.hovered {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 102, 255, 0.15);
    border-color: var(--accent);
}

@media (max-width: 991px) {
    .custom-cursor, .custom-cursor-dot {
        display: none !important;
    }
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Typographical System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); position: relative; padding-bottom: 15px; margin-bottom: 20px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p { font-weight: 400; color: var(--text-muted); }

.text-gradient {
    background: linear-gradient(135deg, #FFF 30%, var(--primary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .text-gradient {
    background: linear-gradient(135deg, var(--bg-dark) 30%, var(--primary) 70%, #004ecc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Layout Utility Classes --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.section {
    padding: 70px 0; /* Reduced from 120px for tighter spacing */
    position: relative;
}

/* Glow Backgrounds */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

/* --- Header & Top Offer Bar --- */
.offer-bar {
    background: linear-gradient(90deg, var(--bg-dark), var(--primary), var(--bg-dark));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-bar-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

.offer-bar:hover .offer-bar-content {
    animation-play-state: paused;
}

.offer-bar span {
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offer-bar i {
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

header {
    height: var(--nav-height);
    position: fixed;
    top: 40px; /* offset by offer bar initially, handled in JS */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

header.scrolled {
    top: 0;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1003;
}

.logo img {
    height: 45px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

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

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.theme-toggle-btn i {
    font-size: 18px;
    transition: transform 0.5s ease;
}

[data-theme="light"] .theme-toggle-btn .bx-sun { display: none; }
[data-theme="dark"] .theme-toggle-btn .bx-moon { display: none; }

/* Menu Toggle for Mobile */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 28px;
    cursor: pointer;
    z-index: 1003;
}

/* --- Premium Buttons --- */
.btn-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #004ecc 100%);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--glow-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}

.btn-premium:hover:after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-secondary {
    background: var(--glass-card);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 40px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    background: var(--glass-card-hover);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 60px);
    background: radial-gradient(circle at 10% 20%, rgba(7, 26, 53, 0.95) 0%, rgba(0, 5, 20, 1) 100%);
}

[data-theme="light"] .hero-section {
    background: radial-gradient(circle at 10% 20%, #eceff7 0%, var(--bg-light) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trust-badge-item i {
    color: var(--primary);
    font-size: 18px;
}

.hero-visual {
    position: relative;
    height: 550px;
    width: 100%;
}

.hero-visual:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.three-canvas-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
}

/* --- Motion Van Animation --- */
.motion-van-section {
    background: var(--bg-sec-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.logistics-dashboard-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 15px 50px var(--shadow-color);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logistics-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 18px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.logistics-dash-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-color);
}

.logistics-status-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.logistics-dash-info {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.logistics-dash-info span strong {
    color: var(--primary);
}

.van-track-container {
    width: 100%;
    height: 200px;
    position: relative;
    background: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.van-track-road-strip {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
    border-radius: 10px;
}

.delivery-van {
    position: absolute;
    bottom: 26px;
    left: -200px;
    width: 180px;
    height: 100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.van-body {
    background: linear-gradient(135deg, var(--primary) 0%, #004ecc 100%);
    border-radius: 12px 25px 5px 5px;
    height: 75px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.van-body:before {
    content: '';
    position: absolute;
    top: 15px;
    right: 10px;
    width: 35px;
    height: 25px;
    background: #000;
    border-radius: 0 12px 0 0;
}

.van-wheel {
    position: absolute;
    bottom: -15px;
    width: 34px;
    height: 34px;
    background: #111;
    border: 4px solid var(--accent);
    border-radius: 50%;
    animation: rotateWheel 1s linear infinite;
    z-index: 2;
}

.wheel-front { right: 25px; }
.wheel-back { left: 25px; }

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

.van-sparkles {
    position: absolute;
    left: -30px;
    bottom: 20px;
    pointer-events: none;
}

.bubble-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUpBubble 2s forwards ease-out;
}

@keyframes floatUpBubble {
    0% { transform: scale(0.3) translateY(0); opacity: 1; }
    100% { transform: scale(1.2) translateY(-80px) translateX(-50px); opacity: 0; }
}

.destination-house {
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.house-facade {
    background: var(--glass-card);
    border: 2px solid var(--border-color);
    border-radius: 8px 8px 0 0;
    width: 100px;
    height: 80px;
    position: relative;
}

.house-roof {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 40px solid var(--primary);
    margin-bottom: -2px;
}

.house-door {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 40px;
    background: var(--accent);
    border-radius: 4px 4px 0 0;
}

.customer-avatar {
    position: absolute;
    bottom: 30px;
    right: 160px;
    width: 50px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.customer-avatar.show { opacity: 1; }

.customer-body {
    width: 20px;
    height: 45px;
    background: var(--accent);
    border-radius: 10px;
    position: relative;
}

.customer-head {
    width: 18px;
    height: 18px;
    background: #ffcc99;
    border-radius: 50%;
    margin-bottom: 2px;
}

.delivered-package {
    position: absolute;
    width: 30px;
    height: 25px;
    background: #d2a679;
    border: 2px solid #86592d;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border-radius: 4px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.delivered-package.show {
    transform: translateX(-50%) scale(1);
}

/* --- Stats Counter Section --- */
.stats-section {
    background: var(--bg-color);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-customers {
    border-top: 4px solid #D48000;
}
.stat-customers .stat-icon,
.stat-customers .stat-number {
    color: #D48000;
}
.stat-customers:hover {
    box-shadow: 0 10px 25px rgba(212, 128, 0, 0.15);
    transform: translateY(-3px);
}

.stat-garments {
    border-top: 4px solid #0066FF;
}
.stat-garments .stat-icon,
.stat-garments .stat-number {
    color: #0066FF;
}
.stat-garments:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
    transform: translateY(-3px);
}

.stat-rating {
    border-top: 4px solid #10B981;
}
.stat-rating .stat-icon,
.stat-rating .stat-number {
    color: #10B981;
}
.stat-rating:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
    transform: translateY(-3px);
}

.stat-delivery {
    border-top: 4px solid #8B5CF6;
}
.stat-delivery .stat-icon,
.stat-delivery .stat-number {
    color: #8B5CF6;
}
.stat-delivery:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-3px);
}

/* --- Services Showcase --- */
.services-section {
    background: var(--bg-sec-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px; /* Reduced bottom margin from 60px */
}

.section-header p {
    font-size: 1.1rem;
    margin-top: 10px;
}

.services-search-container {
    max-width: 500px;
    margin: -30px auto 50px;
    position: relative;
}

.services-search-input {
    width: 100%;
    padding: 16px 24px;
    padding-left: 55px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--glass-card);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.services-search-input:focus {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.services-search-container i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    gap: 12px;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon-wrapper {
    width: 46px;
    height: 46px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.service-icon-wrapper i {
    font-size: 22px;
    color: var(--primary);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    box-shadow: var(--glow-primary);
}

.service-card:hover .service-icon-wrapper i {
    color: var(--white);
    transform: rotateY(360deg);
    transition: transform 0.6s ease;
}

.service-card-title {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 1.15rem;
}

.service-card-desc {
    margin-bottom: 5px;
    flex-grow: 1;
    font-size: 13.5px;
    line-height: 1.45;
}

.service-card-details-link {
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.service-card-details-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-card-pricing {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.service-card-pricing span {
    font-size: 11px;
    font-weight: normal;
    color: var(--text-muted);
}

.service-card-footer .btn-premium {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 10px;
    white-space: nowrap;
}

/* --- Why Choose Us --- */
.choose-section {
    background: var(--bg-color);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

.timeline-item:hover .timeline-badge {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--glow-primary);
}

.timeline-content {
    width: 45%;
}

/* --- Before / After Slider --- */
.slider-section {
    background: var(--bg-sec-color);
}

.ba-slider-container {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.ba-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.ba-image-before {
    background-image: url('assets/images/saree_before.png');
}

.ba-image-after {
    background-image: url('assets/images/saree_after.png');
    width: 50%; /* JS-driven width mapping */
    z-index: 2;
    box-shadow: 4px 0 10px rgba(0,0,0,0.3);
}

.ba-label {
    position: absolute;
    bottom: 20px;
    background: rgba(7, 26, 53, 0.8);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}

.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--primary);
    z-index: 4;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: var(--primary);
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.ba-handle:hover .ba-handle-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

/* --- Saree Machine Showcase --- */
.machine-section {
    background: var(--bg-color);
}

.machine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.machine-visualizer {
    position: relative;
    height: 500px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.machine-canvas {
    width: 100%;
    height: 100%;
}

.machine-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.machine-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.machine-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 213, 74, 0.1);
    border: 1px solid rgba(255, 213, 74, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.machine-feature-icon i {
    font-size: 24px;
    color: var(--accent);
}

.machine-feature-text h3 {
    margin-bottom: 6px;
    color: var(--text-color);
}

/* --- Process Section --- */
.process-section {
    background: var(--bg-sec-color);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 70px;
    height: 70px;
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-step:hover .process-step-num {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: scale(1.1);
}

.process-step-num i {
    transition: transform var(--transition-fast);
}

.process-step:hover .process-step-num i {
    transform: rotate(15deg) scale(1.1);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-svg-lines {
    position: absolute;
    top: 155px;
    left: 10%;
    width: 80%;
    height: 40px;
    pointer-events: none;
    z-index: 1;
}

.process-svg-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 8 8;
    animation: dashOffset 30s linear infinite;
    opacity: 0.5;
}

@keyframes dashOffset {
    to { stroke-dashoffset: -1000; }
}

/* --- Testimonials --- */
.testimonials-section {
    background: var(--bg-color);
}

.testimonials-slider {
    padding: 20px 0 60px;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.8;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- FAQs --- */
.faq-section {
    background: var(--bg-sec-color);
}

.faq-search-container {
    max-width: 500px;
    margin: -30px auto 40px;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 14px 20px;
    padding-left: 50px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--glass-card);
    color: var(--text-color);
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition-fast);
}

.faq-search-input:focus {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.faq-search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--glass-card);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: var(--text-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-icon {
    font-size: 24px;
    transition: transform var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: var(--glass-card-hover);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* --- Official Technology Partner Section --- */
.partner-section {
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.08) 0%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partner-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
    position: relative;
}

.partner-logo-wrapper {
    background: var(--glass-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.partner-logo-wrapper:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.partner-logo-wrapper img {
    height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.partner-connection {
    position: relative;
    width: 150px;
    height: 4px;
    background: var(--border-color);
}

.partner-connection-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: glowPulse 3s infinite linear;
}

@keyframes glowPulse {
    0% { width: 0%; left: 0%; }
    50% { width: 100%; left: 0%; }
    100% { width: 0%; left: 100%; }
}

.partner-handshake-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-color);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    box-shadow: var(--glow-primary);
}

.partner-info-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
}

.partner-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.partner-service-card {
    text-align: center;
    padding: 30px 20px;
}

.partner-service-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform var(--transition-fast);
}

.partner-service-card:hover i {
    transform: scale(1.15) translateY(-5px);
    color: var(--accent);
}

.partner-service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

.partner-cta p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* --- CTA Banner --- */
.cta-section {
    background: linear-gradient(135deg, rgba(7,26,53,1) 0%, rgba(0,102,255,1) 50%, rgba(7,26,53,1) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-container p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* --- Footer --- */
footer {
    background: #040f21;
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] footer {
    background: #f0f2f8;
    color: var(--bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
    transition: all var(--transition-fast);
}

.footer-about p {
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

[data-theme="light"] .footer-socials a {
    background: rgba(7, 26, 53, 0.05);
    border: 1px solid rgba(7, 26, 53, 0.1);
    color: var(--bg-dark);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.footer-map-container {
    width: 80%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-credit-partner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-credit-partner a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit-partner img {
    height: 24px;
    vertical-align: middle;
}

/* --- Floating Actions --- */
.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all var(--transition-smooth);
    font-size: 26px;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.floating-whatsapp {
    background-color: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.floating-call {
    background-color: #00E676;
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4);
}

.floating-pickup {
    background-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.floating-back-to-top {
    background-color: var(--bg-sec-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.floating-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Tooltip on Hover */
.floating-btn:after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg-dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}

.floating-btn:hover:after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* --- Popups / Modals --- */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-smooth);
}

.popup-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup-content {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    max-width: 420px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    transform: translateY(30px) scale(0.95);
    transition: all var(--transition-smooth);
}

.popup-modal.show .popup-content {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 30px; /* Moved left to avoid scrollbar overlap */
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 44px; /* Larger tap target */
    height: 44px; /* Larger tap target */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px; /* Larger X icon */
    color: var(--text-color);
    z-index: 10;
    outline: none;
    transition: all 0.2s ease;
    transition: all var(--transition-fast);
}

.popup-close:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.popup-header {
    text-align: center;
    margin-bottom: 15px;
}

.popup-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.popup-header p {
    font-size: 14px;
}

.popup-form-group {
    margin-bottom: 12px;
}

.popup-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all var(--transition-fast);
}

.popup-input:focus {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.popup-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

/* Exit Intent Popup */
.exit-popup-gift {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 20px;
    animation: wobble 1.5s infinite;
    display: inline-block;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* --- SUBPAGE SPECIFIC STYLES --- */

/* Inner Page Hero Header */
.inner-hero {
    padding: 120px 0 50px; /* Decreased banner height for subpages */
    background: linear-gradient(180deg, var(--bg-sec-color) 0%, var(--bg-color) 100%);
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.inner-hero h1 {
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs li a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs li span {
    color: var(--text-muted);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images-stack {
    position: relative;
    height: 480px;
}

.about-img-main {
    width: 80%;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.about-img-sub {
    width: 50%;
    height: 250px;
    object-fit: cover;
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 4px solid var(--bg-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

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

.value-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    transition: transform var(--transition-smooth);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-info span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* Services Grid Page */
.service-full-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-full-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-full-item:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.service-full-img-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px var(--shadow-color);
    border: 1px solid var(--border-color);
    height: 400px;
}

.service-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-full-item:hover .service-full-img {
    transform: scale(1.03);
}

.service-benefits {
    list-style: none;
    margin: 20px 0 30px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

.service-benefits li i {
    color: var(--primary);
}

.service-pricing-tag {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 25px;
}

/* Gallery Masonry Layout */
.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px; /* Reduced from 50px */
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.gallery-masonry {
    columns: 3 320px;
    column-gap: 30px;
}

.gallery-item {
    background: var(--glass-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    break-inside: avoid;
    box-shadow: 0 10px 30px var(--shadow-color);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 26, 53, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-text h3 {
    margin-bottom: 5px;
}

.contact-info-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.contact-form-card {
    padding: 50px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group-full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all var(--transition-fast);
}

.contact-form-input:focus {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

textarea.contact-form-input {
    resize: none;
    height: 120px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 15px;
    }
    .logo img {
        height: 38px;
    }
    .nav-actions {
        gap: 10px;
    }
    .nav-actions .btn-premium {
        padding: 10px 18px;
        font-size: 13px;
    }
    .partner-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-trust-badges {
        justify-content: center;
    }
    .hero-visual {
        height: 400px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 50px;
    }
    .timeline-badge {
        left: 20px;
        transform: translate(-50%, 0);
    }
    .timeline-content {
        width: 100%;
        padding-left: 50px;
    }
    .machine-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .machine-visualizer {
        height: 380px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-svg-lines {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images-stack {
        height: 400px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .service-full-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .service-full-img-wrapper {
        height: 300px;
    }
    .mobile-nav-toggle {
        display: block;
        font-size: 38px;
        padding: 5px;
        margin-left: 10px;
    }
    .nav-actions .btn-premium {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-color);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1001;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .partner-logos-container {
        flex-direction: column;
        gap: 20px;
    }
    .partner-connection {
        width: 4px;
        height: 60px;
    }
    .partner-connection-line {
        width: 100%;
        height: 0;
        animation: glowPulseVertical 3s infinite linear;
    }
    @keyframes glowPulseVertical {
        0% { height: 0%; top: 0%; }
        50% { height: 100%; top: 0%; }
        100% { height: 0%; top: 100%; }
    }
    .partner-services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .ba-slider-container {
        height: 300px;
    }
    .popup-content {
        padding: 12px 10px;
        width: 95%;
        border-radius: 12px;
    }
    .popup-header { margin-bottom: 10px; }
    .popup-header h2 { font-size: 18px; margin-bottom: 2px; }
    .popup-header p { font-size: 11px; }
    .popup-form-group { margin-bottom: 8px; }
    .popup-form-group label { font-size: 11px; margin-bottom: 4px; }
    .popup-input { padding: 8px 10px; font-size: 13px; border-radius: 8px; }
    .service-checkbox-pill { padding: 6px 10px; font-size: 11px; }
    .popup-submit-btn { padding: 12px; font-size: 14px; }
    
    .popup-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Founder & CEO Spotlight Section --- */
.founder-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: center;
}

.founder-img-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.founder-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.founder-card:hover .founder-photo {
    transform: scale(1.05);
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.founder-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 25px;
}

.founder-bio {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.founder-quote {
    margin-top: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    position: relative;
}

.founder-quote i {
    font-size: 32px;
    color: rgba(0, 102, 255, 0.2);
    position: absolute;
    top: -15px;
    left: 10px;
}

.founder-quote p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Responsive details for Founder split grid */
@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .founder-img-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    .founder-info h3 {
        text-align: center;
    }


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

/* --- Services Checkbox Grid & Pills (Multiple Choice Selection) --- */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.service-checkbox-pill {
    position: relative;
    cursor: pointer;
    display: block;
}

.service-checkbox-pill input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-checkbox-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--bg-sec-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-fast);
    min-height: 48px;
    line-height: 1.2;
}

.service-checkbox-pill input[type="checkbox"]:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.service-checkbox-pill:hover span {
    border-color: var(--primary);
}

@media (max-width: 480px) {
    .services-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .service-checkbox-pill span {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 42px;
    }
}

/* --- Hero Static 3D Saree Image Styling --- */
.hero-static-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 255, 0.25));
    transition: transform var(--transition-smooth);
}

.hero-static-img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* --- Footer Active Quick Links Highlight --- */
.footer-col ul li a.active {
    color: var(--primary);
    font-weight: 600;
    padding-left: 8px;
    border-left: 2px solid var(--primary);
    transition: all var(--transition-fast);
}
