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

:root {
    --primary: #c9222b;
    --primary-hover: #e02832;
    --primary-glow: rgba(201, 34, 43, 0.4);
    --primary-glow-weak: rgba(201, 34, 43, 0.15);
    
    --bg-dark: #07090e;
    --bg-darker: #040508;
    --bg-light-dark: #10141e;
    
    --text-main: #f5f7fa;
    --text-muted: #8e95a5;
    --text-dim: #5c6270;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-bg-active: rgba(255, 255, 255, 0.12);
    
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-border-red: rgba(201, 34, 43, 0.3);
    
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glass-shadow-glow: 0 8px 32px 0 rgba(201, 34, 43, 0.2);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset and Core Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: 2px solid var(--bg-darker);
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Background Gradients and Glowing Blobs */
.bg-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, var(--bg-light-dark) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.glowing-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
}

.blob-red {
    background: radial-gradient(circle, var(--primary) 0%, rgba(201, 34, 43, 0) 70%);
    width: 600px;
    height: 600px;
    top: -10%;
    right: -10%;
    animation: floatBlob1 25s infinite alternate ease-in-out;
}

.blob-silver {
    background: radial-gradient(circle, #e2e8f0 0%, rgba(226, 232, 240, 0) 70%);
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -10%;
    animation: floatBlob2 30s infinite alternate ease-in-out;
}

.blob-darkred {
    background: radial-gradient(circle, #7f1d1d 0%, rgba(127, 29, 29, 0) 70%);
    width: 550px;
    height: 550px;
    top: 40%;
    left: 30%;
    opacity: 0.12;
    animation: floatBlob3 28s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 80px) scale(1.15); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, -60px) scale(0.9); }
}

@keyframes floatBlob3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -80px) scale(1.1); }
}

/* Glassmorphism Utilities */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-container:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.glass-card.highlight {
    border-color: var(--glass-border-red);
}

.glass-card.highlight:hover {
    border-color: var(--primary);
    box-shadow: var(--glass-shadow-glow);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
}

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

.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, #c9222b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: var(--primary);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 2rem;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.6rem 2rem;
}

header.scrolled .glass-nav {
    padding: 0.7rem 2rem;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

header.scrolled .logo-img {
    height: 44px;
}

/* Top Contact Bar */
.top-bar {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 0.75rem auto;
    display: flex;
    justify-content: flex-end;
    transition: var(--transition-smooth);
    opacity: 1;
    max-height: 80px;
    overflow: hidden;
}

header.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    pointer-events: none;
}

.top-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 0.4rem 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.top-bar-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.top-bar-link {
    text-decoration: none;
    color: var(--text-main);
}

.division-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.division-badge i {
    color: #25d366;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.3));
    transition: var(--transition-smooth);
}

.division-badge:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.12);
}

.division-badge:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px #25d366);
}

body.light-mode .top-bar-container {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .division-badge {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
}

body.light-mode .division-badge:hover {
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.2);
    color: var(--text-main);
}

@media (max-width: 968px) {
    .top-bar {
        padding: 0.4rem 0;
        margin: 0 auto 0.5rem auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .top-bar-container {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.4rem 1rem;
    }
    .top-bar-container::-webkit-scrollbar {
        display: none;
    }
    .top-bar-actions {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    .division-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .glass-nav {
        padding: 0.75rem 1.5rem;
    }
    .logo-img {
        height: 46px;
    }
    .hide-mobile {
        display: none !important;
    }
}

.glass-nav {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

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

.logo-img {
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
    transition: var(--transition-smooth);
}

/* Show light/dark logos depending on active theme */
body.light-mode .logo-dark {
    display: none !important;
}
body:not(.light-mode) .logo-light {
    display: none !important;
}


.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--glass-bg);
    color: var(--text-main);
    cursor: pointer;
    display: none !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 1.05rem;
}

.btn-theme-toggle:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--glass-bg);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Layout Containers */
.section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
}

/* Hero Section */
.hero-section {
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: 
        linear-gradient(to bottom, rgba(7, 9, 14, 0.4) 0%, var(--bg-darker) 100%),
        linear-gradient(to right, var(--bg-darker) 0%, rgba(7, 9, 14, 0) 40%, var(--bg-darker) 100%),
        url('images/hero_background.png') no-repeat center center;
    background-size: cover;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 95vh;
    max-width: 1300px;
    margin: 0 auto;
    padding: 13.5rem 2rem 6rem 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(201, 34, 43, 0.1);
    border: 1px solid rgba(201, 34, 43, 0.25);
    color: #ff4d55;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(201, 34, 43, 0.05);
}

.badge i {
    font-size: 0.85rem;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 8px var(--primary); }
    100% { transform: scale(1); opacity: 0.8; }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 580px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin: 1.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    background: linear-gradient(135deg, #ffffff 50%, #c9222b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--primary);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(201, 34, 43, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

/* Hero Showcase Panel */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-bg-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 34, 43, 0.22) 0%, rgba(201, 34, 43, 0) 65%);
    z-index: -1;
    pointer-events: none;
}

.showcase-container {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 460px;
    position: relative;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6));
    transition: opacity 1s ease-in-out, transform 0.5s ease;
    pointer-events: none;
}

.showcase-img.active {
    opacity: 1;
    pointer-events: auto;
}



.showcase-badge-glass {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transform: rotate(2deg);
}

.showcase-badge-glass i {
    font-size: 1.8rem;
    color: var(--primary);
    filter: drop-shadow(0 0 5px rgba(201,34,43,0.4));
}

.showcase-badge-glass div {
    display: flex;
    flex-direction: column;
}

.showcase-badge-glass span.title {
    font-size: 0.75rem;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
}

.showcase-badge-glass span.val {
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

/* Floating Interactive Tech Card */
.tech-floating-card {
    position: absolute;
    top: 2rem;
    left: -2rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(-3deg);
}

.tech-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* Brands Marquee Slider */
.brands-section {
    padding: 2.5rem 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.brands-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}



.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    opacity: 1;
}

/* Show light/dark brand logos depending on active theme */
body.light-mode .brand-dark {
    display: none !important;
}
body:not(.light-mode) .brand-light {
    display: none !important;
}

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

/* Finder Widget Section */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.section-title-desc {
    max-width: 600px;
    margin-top: 0.75rem;
}

.finder-widget {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.finder-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.finder-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.finder-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.finder-tab-btn.active {
    color: var(--text-main);
    background: rgba(201, 34, 43, 0.1);
    box-shadow: inset 0 0 10px rgba(201, 34, 43, 0.05);
    border: 1px solid rgba(201, 34, 43, 0.2);
}

.finder-pane {
    display: none;
}

.finder-pane.active {
    display: block;
    animation: paneFadeIn 0.5s ease forwards;
}

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

.finder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 1.5rem;
    align-items: flex-end;
}

.select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.select-wrapper label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-fast);
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%207.5L10%2012.5L15%207.5%22%20stroke%3D%22%238e95a5%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.custom-select:focus {
    border-color: var(--primary);
    background-color: rgba(201, 34, 43, 0.03);
    box-shadow: 0 0 10px rgba(201, 34, 43, 0.15);
}

.custom-select option {
    background-color: var(--bg-light-dark);
    color: var(--text-main);
}

.btn-search {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(201, 34, 43, 0.2);
}

.btn-search:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-2px);
}

/* Results Display */
.finder-results {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.finder-results-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.005);
}

.finder-results-placeholder i {
    font-size: 2.5rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.result-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    position: relative;
    border-radius: 16px;
}

.result-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(201, 34, 43, 0.15);
    border: 1px solid rgba(201, 34, 43, 0.3);
    color: #ff4d55;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.result-brand {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.result-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-specs {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.result-specs li {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.result-price-box {
    display: flex;
    flex-direction: column;
}

.result-price-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.result-price {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.btn-quote {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-quote:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Category Grid Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.category-card-featured {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.category-featured-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex: 1;
}

.category-card-featured .category-icon {
    margin-bottom: 0;
    font-size: 3rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.category-featured-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-card-featured .category-title {
    margin-bottom: 0;
}

.category-card-featured .category-desc {
    margin-bottom: 0;
}

.category-card-featured .category-link {
    margin-top: 0;
    flex-shrink: 0;
}

.category-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px var(--primary-glow-weak));
}

.category-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.category-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.category-img-box {
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

.category-bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201,34,43,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.category-card:hover .category-bg-gradient {
    background: radial-gradient(circle, rgba(201,34,43,0.25) 0%, rgba(0,0,0,0) 70%);
}

.category-fallback-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    z-index: 0;
    transition: var(--transition-smooth);
}

.category-card:hover .category-fallback-icon {
    color: rgba(201, 34, 43, 0.08);
    transform: scale(1.1) rotate(5deg);
}

.category-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 2;
    transition: var(--transition-smooth);
}

.category-card:hover .category-img {
    transform: translateY(-8px);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: auto;
    color: var(--text-main);
}

.category-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
    color: var(--primary);
}

/* Quote Calculator Section */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calc-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.calc-content .badge {
    align-self: flex-start;
}

.calc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.calc-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.calc-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.calc-interactive-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
}

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

.calc-title-mini {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.calc-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-range-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.calc-range-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--primary-hover);
}

.calc-range-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    width: 35px;
    text-align: right;
}

.calc-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.calc-checkbox-label:hover {
    color: var(--text-main);
}

.calc-checkbox-label input {
    display: none;
}

.calc-custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.calc-checkbox-label input:checked + .calc-custom-checkbox {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

.calc-custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--text-main);
    display: none;
}

.calc-checkbox-label input:checked + .calc-custom-checkbox::after {
    display: block;
}

.calc-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-total-box {
    display: flex;
    flex-direction: column;
}

.calc-total-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.calc-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.calc-note {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.2rem;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    z-index: 1;
}

.reviews-combined-container {
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    gap: 3rem;
    padding: 3.5rem;
    align-items: center;
    position: relative;
}

@media (max-width: 992px) {
    .reviews-combined-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
}

.reviews-summary-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--glass-border);
    padding-right: 3rem;
    height: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .reviews-summary-panel {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding-right: 0;
        padding-bottom: 2.5rem;
        height: auto;
    }
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.google-brand svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.google-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.rating-value {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    letter-spacing: -2px;
}

.rating-stars-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 0.75rem 0 1.5rem;
}

.google-stars {
    display: flex;
    gap: 0.25rem;
    color: #fabb05;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(250, 187, 5, 0.35));
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-google-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    box-shadow: var(--glass-shadow);
}

.btn-google-action:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

/* Reviews Carousel Panel */
.reviews-carousel-panel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-carousel {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.card-google-review {
    flex: 0 0 calc(50% - 0.75rem); /* 2 reviews side-by-side */
    min-width: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    transition: var(--transition-smooth);
}

@media (max-width: 600px) {
    .card-google-review {
        flex: 0 0 100%; /* 1 review on mobile */
    }
}

.card-google-review:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

body.light-mode .card-google-review:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* User Avatar Colors */
.avatar-orange { background: linear-gradient(135deg, #ff9800, #f57c00); }
.avatar-blue { background: linear-gradient(135deg, #2196f3, #1976d2); }
.avatar-green { background: linear-gradient(135deg, #4caf50, #388e3c); }
.avatar-purple { background: linear-gradient(135deg, #9c27b0, #7b1fa2); }
.avatar-teal { background: linear-gradient(135deg, #009688, #00796b); }

.user-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.user-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.user-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.user-badge i {
    color: #fabb05;
}

.google-badge-small {
    flex-shrink: 0;
    opacity: 0.85;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.review-stars-small {
    display: flex;
    gap: 0.15rem;
    color: #fabb05;
    font-size: 0.9rem;
}

.review-time {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.review-body {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-main);
    font-style: italic;
    opacity: 0.95;
    flex-grow: 1;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.reviews-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
    box-shadow: var(--glass-shadow);
}

.reviews-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.05);
}

.reviews-nav-btn:active {
    transform: scale(0.95);
}

/* Contact & Inquiry Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.contact-info-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-header h3 {
    font-size: 1.8rem;
}

.contact-methods {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 3rem 0;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: var(--glass-shadow);
}

.contact-method-text {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.contact-method-val {
    font-size: 1rem;
    font-weight: 600;
}

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

.contact-method-val a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--primary-glow);
}

.contact-form-panel {
    padding: 3rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

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

.input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-container label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

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

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    background-color: rgba(201, 34, 43, 0.03);
    box-shadow: 0 0 10px rgba(201, 34, 43, 0.15);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-dim);
}

.btn-form-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(201, 34, 43, 0.25);
    margin-top: 1rem;
}

.btn-form-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.8);
    z-index: 200;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 480px;
    width: 90%;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
    animation: iconPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes iconPop {
    from { transform: scale(0) rotate(-45deg); opacity: 0; }
    to { transform: scale(1) rotate(0); opacity: 1; }
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.btn-modal-close {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--glass-bg);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-modal-close:hover {
    background: rgba(255,255,255,0.08);
}

/* Footer Section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-darker);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo-img {
    height: 35px;
    object-fit: contain;
    align-self: flex-start;
}

.footer-desc {
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.footer-links a:hover {
    color: var(--text-main);
    transform: translateX(4px);
    display: inline-block;
}

.footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-hours-list span.day {
    color: var(--text-main);
    font-weight: 500;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-bottom > * {
    flex: 1;
}

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

.footer-whatsapp {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a:hover {
    color: var(--text-muted);
}

/* Premium WhatsApp Chat Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.85) 0%, rgba(18, 140, 126, 0.85) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
    
    /* Scroll-triggered hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
}

.whatsapp-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(37, 211, 102, 1) 0%, rgba(18, 140, 126, 1) 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.whatsapp-btn i {
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* WhatsApp Popup Menu */
.whatsapp-popup {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 330px;
    background: rgba(10, 15, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 50px rgba(37, 211, 102, 0.08);
    padding: 1.25rem;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: left;
    
    /* Animation states */
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.65rem;
}

.whatsapp-popup-header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-popup-header h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-popup-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    padding: 0 0.25rem;
    outline: none;
}

.whatsapp-popup-close:hover {
    color: var(--primary);
}

.whatsapp-popup-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.whatsapp-popup-option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.whatsapp-popup-option i {
    color: #25d366;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.whatsapp-popup-option::after {
    content: '\f054'; /* FontAwesome angle-right code */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.whatsapp-popup-option:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.15) 100%);
    border-color: rgba(37, 211, 102, 0.35);
    color: #ffffff;
    transform: translateX(4px);
}

.whatsapp-popup-option:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

.whatsapp-popup-option:hover::after {
    opacity: 0.9;
    transform: translateX(2px);
    color: #25d366;
}

/* Light mode overrides for popup */
body.light-mode .whatsapp-popup {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 211, 102, 0.05);
}

body.light-mode .whatsapp-popup-header {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .whatsapp-popup-option {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
}

body.light-mode .whatsapp-popup-option:hover {
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.2);
    color: var(--text-main);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-popup {
        bottom: 85px;
        right: auto;
        left: 50%;
        transform: translate(-50%, 15px) scale(0.95);
        width: calc(100% - 40px);
        max-width: 330px;
    }
    .whatsapp-popup.active {
        transform: translate(-50%, 0) scale(1);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, #ff4d55 100%);
    box-shadow: 0 0 8px var(--primary);
    z-index: 1000;
    pointer-events: none;
}

/* Response/Utility Classes for JS */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-wrapper {
        gap: 2.5rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .calc-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding-top: 11.5rem;
        text-align: center;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .badge {
        align-self: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-desc {
        margin: 0 auto;
    }
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    .hero-ctas {
        justify-content: center;
        width: 100%;
    }
    .hero-showcase {
        margin-top: 2rem;
    }
    
    .finder-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .btn-search {
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .category-card {
        height: auto;
        aspect-ratio: auto;
        padding: 2.5rem 2rem;
    }
    
    .category-card-featured {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .category-card-featured .category-featured-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-card-featured .category-icon {
        margin-bottom: 0.5rem;
    }
    
    .category-card-featured .category-link {
        margin-top: auto;
    }
    
    .category-img-box {
        height: 250px;
        margin: 1.5rem 0;
    }
    
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calc-content {
        text-align: center;
        align-items: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In production a fully interactive drawer can be toggled */
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo-container {
        margin-right: auto;
    }
    .nav-actions {
        display: flex;
        margin-right: 1rem;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    .footer-bottom > * {
        flex: none;
        width: 100%;
    }
    .footer-whatsapp {
        justify-content: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .review-slide {
        padding: 2rem 1.25rem;
    }
    .review-text {
        font-size: 1.1rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-ctas button, .hero-ctas a {
        width: 100%;
        justify-content: center;
    }
    .tech-floating-card {
        display: none;
    }
    .showcase-badge-glass {
        display: none;
    }
    .section {
        padding: 4rem 1.25rem;
    }
}

/* ==========================================
   Light Mode Overrides
   ========================================== */
body.light-mode {
    --bg-dark: #f1f4fa;
    --bg-darker: #e2e8f0;
    --bg-light-dark: #ffffff;
    
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-dim: #9ca3af;
    
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-bg-hover: rgba(255, 255, 255, 0.65);
    --glass-bg-active: rgba(255, 255, 255, 0.85);
    
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-hover: rgba(0, 0, 0, 0.15);
    --glass-border-red: rgba(201, 34, 43, 0.25);
    
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
    --glass-shadow-glow: 0 8px 32px 0 rgba(201, 34, 43, 0.1);
}

body.light-mode .blob-red {
    opacity: 0.1;
}

body.light-mode .blob-silver {
    background: radial-gradient(circle, #cbd5e1 0%, rgba(203, 213, 225, 0) 70%);
    opacity: 0.25;
}

body.light-mode .blob-darkred {
    background: radial-gradient(circle, #fecaca 0%, rgba(254, 202, 202, 0) 70%);
    opacity: 0.12;
}

body.light-mode::-webkit-scrollbar-track {
    background: #e2e8f0;
}

body.light-mode::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid #e2e8f0;
}

body.light-mode .custom-select option {
    background-color: #ffffff;
    color: #111827;
}

body.light-mode .modal-overlay {
    background: rgba(241, 244, 250, 0.85);
}

body.light-mode .text-gradient {
    background: linear-gradient(135deg, #111827 30%, #c9222b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .category-fallback-icon {
    color: rgba(0, 0, 0, 0.015);
}

body.light-mode .category-card:hover .category-fallback-icon {
    color: rgba(201, 34, 43, 0.05);
}

body.light-mode .btn-secondary {
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .btn-theme-toggle {
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .btn-theme-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.25);
}

body.light-mode header.scrolled .glass-nav {
    background: rgba(241, 244, 250, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .brands-section {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.03);
}


body.light-mode .finder-results-placeholder {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.003);
}

body.light-mode .calc-range-slider {
    background: rgba(0, 0, 0, 0.08);
}

body.light-mode .calc-custom-checkbox {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.01);
}

body.light-mode .calc-summary {
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .contact-method-icon {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.01);
}

body.light-mode footer {
    background: #e2e8f0;
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode footer .footer-bottom {
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .whatsapp-btn {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.9) 0%, rgba(18, 140, 126, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

body.light-mode .whatsapp-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 1) 0%, rgba(18, 140, 126, 1) 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

body.light-mode .hero-section {
    background: 
        linear-gradient(to bottom, rgba(241, 244, 250, 0.8) 0%, var(--bg-darker) 100%),
        linear-gradient(to right, var(--bg-darker) 0%, rgba(241, 244, 250, 0.4) 40%, var(--bg-darker) 100%),
        url('images/hero_background.png') no-repeat center center;
    background-size: cover;
}

/* Showcase Banner Section Styles */
.banner-section {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.banner-card {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}



.banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(201, 34, 43, 0.15) 0%, rgba(201, 34, 43, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

body.light-mode .banner-glow {
    background: radial-gradient(circle, rgba(201, 34, 43, 0.06) 0%, rgba(201, 34, 43, 0) 70%);
}

@media (max-width: 1100px) {
    .banner-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-page-section {
    padding-top: 13.5rem !important;
    min-height: calc(100vh - 350px);
}

/* Mobile Menu Interactive State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
    
    body.light-mode .nav-links.active {
        background: rgba(245, 247, 250, 0.98);
        border-bottom-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
}

/* Location Map Section */
.map-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.location-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto 3rem auto;
    max-width: 450px;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 1px solid transparent;
}

.location-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.location-tab-btn.active {
    color: #fff;
    background: var(--primary);
    border-color: rgba(201, 34, 43, 0.3);
    box-shadow: 0 4px 15px rgba(201, 34, 43, 0.3);
}

body.light-mode .location-tab-btn.active {
    color: #fff;
    background: var(--primary);
    border-color: rgba(201, 34, 43, 0.2);
}

.map-wrapper {
    display: none;
    grid-template-columns: 1.55fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    overflow: hidden;
}

.map-wrapper.active {
    display: grid;
    animation: fadeInTab 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.map-iframe-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0.2) contrast(1.1) invert(0.9) hue-rotate(180deg);
    transition: var(--transition-smooth);
}

body.light-mode .map-iframe {
    filter: none;
}

.map-iframe:hover {
    filter: none;
}

.map-details-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.map-details-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.map-pin-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--primary-glow-weak);
    border: 1px solid var(--glass-border-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(201, 34, 43, 0.15);
}

.map-details-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.map-details-branch {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.map-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.map-details-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    width: 20px;
    text-align: center;
}

.map-details-list li a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.map-details-list li a:hover {
    color: var(--primary);
}

.map-directions-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

@media (max-width: 992px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-iframe-container {
        height: 350px;
    }
}

/* ==========================================
   Homepage Image Showcase Slider Section
   ========================================== */
.showcase-slider-section {
    padding-bottom: 6rem;
}

.slider-outer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-slide {
    flex: 0 0 calc((100% - 60px) / 4); /* 4 items visible on desktop */
    aspect-ratio: 4 / 5; /* Matches raw 1080x1350 aspect ratio exactly */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.home-slide img:hover {
    opacity: 0.95;
}

/* Glassmorphic Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(7, 9, 14, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-main);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    opacity: 0.6;
}

.slider-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: var(--glass-shadow-glow);
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.slider-nav-btn.prev {
    left: 1.5rem;
}

.slider-nav-btn.next {
    right: 1.5rem;
}

/* Slide Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

body.light-mode .slider-nav-btn {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-main);
}

body.light-mode .slider-nav-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

body.light-mode .slider-dot {
    background: rgba(0, 0, 0, 0.15);
}

body.light-mode .slider-dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

body.light-mode .slider-dot.active {
    background: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .home-slide {
        flex: 0 0 calc((100% - 40px) / 3); /* 3 items visible */
    }
}

@media (max-width: 768px) {
    .slider-track {
        gap: 16px;
    }
    .home-slide {
        flex: 0 0 calc((100% - 16px) / 2); /* 2 items visible */
    }
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .slider-nav-btn.prev {
        left: 1rem;
    }
    .slider-nav-btn.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-track {
        gap: 0px;
    }
    .home-slide {
        flex: 0 0 100%; /* 1 item visible */
    }
}

/* ==========================================
   Glassmorphic Lightbox Overlay
   ========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 8, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.15s ease-in-out;
}

/* Lightbox controls styling */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.08) rotate(90deg);
    box-shadow: var(--glass-shadow-glow);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--glass-shadow-glow);
}

.lightbox-nav.prev {
    left: 3rem;
}

.lightbox-nav.next {
    right: 3rem;
}

/* Responsive controls */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .lightbox-nav.prev {
        left: 1rem;
    }
    .lightbox-nav.next {
        right: 1rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   Homepage Slider Tabs Navigation
   ========================================== */
.slider-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.slider-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.65rem 1.6rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid transparent;
}

.slider-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.slider-tab-btn.active {
    color: var(--text-main);
    background: rgba(201, 34, 43, 0.15);
    border-color: rgba(201, 34, 43, 0.3);
    box-shadow: inset 0 0 10px rgba(201, 34, 43, 0.05);
}

body.light-mode .slider-tab-btn.active {
    background: rgba(201, 34, 43, 0.1);
    border-color: rgba(201, 34, 43, 0.2);
}

@media (max-width: 480px) {
    .slider-tabs {
        gap: 0.5rem;
    }
    .slider-tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ==========================================
   About Page Layout
   ========================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.why-choose-panel {
    grid-column: span 2;
}

.why-choose-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-panel {
        grid-column: span 1;
    }
    
    .why-choose-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Hero WhatsApp Division Cards
   ========================================== */
.hero-whatsapp-divisions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 3.5rem;
    z-index: 10;
}

.whatsapp-division-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.whatsapp-division-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 34, 43, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 34, 43, 0.15);
}

body.light-mode .whatsapp-division-card:hover {
    border-color: rgba(201, 34, 43, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(201, 34, 43, 0.05);
}

.division-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.division-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201, 34, 43, 0.1);
    border: 1px solid rgba(201, 34, 43, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.whatsapp-division-card:hover .division-icon {
    transform: scale(1.08) rotate(5deg);
    background: rgba(201, 34, 43, 0.15);
    border-color: rgba(201, 34, 43, 0.4);
    box-shadow: 0 0 15px rgba(201, 34, 43, 0.2);
}

.division-details {
    display: flex;
    flex-direction: column;
}

.division-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.division-rep {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.division-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.btn-div-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-div-whatsapp {
    grid-column: 1 / -1;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-div-whatsapp i {
    font-size: 1.35rem;
    transition: var(--transition-smooth);
}

.btn-div-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.btn-div-whatsapp:hover i {
    color: #fff;
    transform: scale(1.15) rotate(-10deg);
}

body.light-mode .btn-div-whatsapp {
    background: rgba(18, 140, 126, 0.08);
    border-color: rgba(18, 140, 126, 0.25);
    color: #128c7e;
}

body.light-mode .btn-div-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: #fff;
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.25);
}

.btn-div-call, .btn-div-email {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-div-call:hover, .btn-div-email:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--primary-glow-weak);
}

@media (max-width: 968px) {
    .hero-whatsapp-divisions {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
}

/* Thank You Page Styling */
.thank-you-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11rem 1.5rem 6rem;
}

.thank-you-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

body.light-mode .thank-you-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.thank-you-card .modal-success-icon {
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .thank-you-title {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thank-you-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.6;
}

.thank-you-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin: 0.75rem 0;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.thank-you-actions .btn-primary {
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    box-shadow: 0 6px 20px var(--primary-glow-weak);
}

.thank-you-actions .btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.thank-you-actions .btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.thank-you-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

body.light-mode .thank-you-actions .btn-secondary {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

body.light-mode .thank-you-actions .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

.thank-you-contacts-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.thank-you-whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

.thank-you-whatsapp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.thank-you-whatsapp-item i {
    font-size: 1.6rem;
    color: #25d366;
    transition: var(--transition-smooth);
}

.thank-you-whatsapp-item:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.thank-you-whatsapp-item:hover i {
    color: #fff;
    transform: scale(1.15);
}

.thank-you-whatsapp-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.thank-you-whatsapp-num {
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 9rem 1rem 4rem;
    }
    .thank-you-whatsapp-grid {
        grid-template-columns: 1fr;
    }
    .thank-you-title {
        font-size: 2rem;
    }
    .thank-you-card {
        padding: 2.5rem 1.5rem;
    }
    .thank-you-actions {
        flex-direction: column;
        width: 100%;
    }
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
    }
}




