/* ==========================================================================
   ETAC Modern Premium Design System (Tile & Stone Solutions Showcase)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

html {
    font-size: 13.5px !important;
}

/* 80% Desktop Scaling */
@media (min-width: 992px) {
    body {
        zoom: 90%;
    }
}

:root {
    --primary-color: #2563eb;
    /* Royal Blue */
    --primary-hover: #1d4ed8;
    /* Deep Blue */
    --primary-glow: rgba(37, 99, 235, 0.4);
    --accent-gold: #60a5fa;
    /* Ice Blue */
    --accent-blue: #3b82f6;

    --bg-dark-obsidian: #05080f;
    /* Deep Black */
    --bg-dark-card: #0b1120;
    /* Charcoal Black */
    --border-dark: rgba(255, 255, 255, 0.1);

    --bg-light: #f8fafc;
    /* White / Light Slate */
    --bg-light-gray: #f1f5f9;
    --bg-light-card: #ffffff;
    --border-light: #cbd5e1;

    --text-primary-dark: #ffffff;
    --text-secondary-dark: #94a3b8;
    --text-primary-light: #0f172a;
    --text-secondary-light: #475569;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    --shadow-glow: 0 8px 24px -5px var(--primary-glow);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary-light);
    background-color: var(--bg-light);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary-light);
}

.display-3 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.display-4 {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

a {
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

/* Global Section Padding Scale */
section.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Top Utility Bar */
.top-utility-bar {
    background: #374151;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 0.3rem 0;
}

.top-utility-bar span {
    color: #ffffff;
    font-weight: 700;
}

.top-utility-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-utility-bar a:hover {
    color: #ffffff;
}

/* Glassmorphism Header & Navigation */
.navbar-modern {
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 0.5rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-modern .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition-smooth);
}

.navbar-brand-img:hover {
    transform: scale(1.05);
}

.nav-link-modern {
    color: #374151 !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.4rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: #2563eb !important;
    background: rgba(37, 99, 235, 0.06);
}

.nav-link-modern.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: var(--radius-full);
}

/* Mobile Navbar Collapsed Menu Styles */
@media (max-width: 991.98px) {
    .navbar-modern {
        padding: 0.5rem 0.5rem;
    }

    .navbar-modern .navbar-brand {
        margin-left: 0.75rem;
    }

    .navbar-modern .navbar-toggler {
        margin-right: 0.75rem;
    }

    .navbar-modern .navbar-collapse {
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 0.5rem 1rem;
        margin-top: 0.35rem;
    }

    .navbar-modern .navbar-nav {
        gap: 0.15rem;
    }

    .navbar-modern .nav-link-modern {
        display: block;
        padding: 0.65rem 1rem !important;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        color: #1e293b !important;
        border-bottom: 1px solid #f1f5f9;
    }

    .navbar-modern .nav-link-modern:last-child {
        border-bottom: none;
    }

    .navbar-modern .nav-link-modern:hover {
        background: rgba(37, 99, 235, 0.06);
        color: #2563eb !important;
        padding-left: 1.35rem !important;
    }

    .navbar-modern .nav-link-modern.active {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb !important;
        border-left: 3px solid #2563eb;
        padding-left: calc(1rem - 3px) !important;
    }

    .navbar-modern .nav-link-modern.active::after {
        display: none;
    }
}

/* Vibrant Blue Primary Buttons System */
.btn-primary-modern {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.btn-partner-modern {
    background: #ffffff;
    color: #2563eb !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    border: 1.5px solid #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.12);
    text-decoration: none !important;
}

.btn-partner-modern:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}


.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

.btn-playstore-modern {
    background: transparent;
    color: #1e293b !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.btn-playstore-modern:hover {
    background: rgba(1, 135, 95, 0.08);
    border-color: #01875f;
    color: #01875f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 135, 95, 0.15);
}

.btn-playstore-mobile {
    background: transparent;
    color: #1e293b !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.76rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.btn-playstore-mobile:hover,
.btn-playstore-mobile:active {
    background: rgba(1, 135, 95, 0.08);
    border-color: #01875f;
    color: #01875f !important;
}

/* ==========================================================================
   ETAC Mobile App Download Showcase Section (Light Mode Theme - No Card Box)
   ========================================================================== */
.app-download-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.app-download-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
}

.app-pulse-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.app-heading {
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.text-gradient-app {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-description {
    color: #1e293b;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 580px;
}

.app-feature-box {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 0.95rem 1.15rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.app-feature-box:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.15);
}

.app-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.app-feature-title {
    color: #0f172a;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.app-feature-sub {
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    display: block;
    line-height: 1.35;
}

/* Google Play Badge Button */
.btn-google-play-badge {
    background: #0f172a;
    color: #ffffff !important;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 0.65rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.btn-google-play-badge:hover {
    background: #1e293b;
    border-color: #3ddc84;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 220, 132, 0.3);
    color: #ffffff !important;
}

.btn-google-play-badge .play-icon {
    font-size: 1.8rem;
    color: #3ddc84;
}

.app-qr-inline {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.9rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.app-qr-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 2px;
    border: 1px solid #e2e8f0;
}

/* Phone Mockup Frame */
.phone-mockup-wrapper {
    position: relative;
    display: inline-block;
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.phone-mockup-frame {
    width: 270px;
    height: 520px;
    max-width: 100%;
    background: #ffffff;
    border: 10px solid #1e293b;
    border-radius: 42px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
    /* WebKit & Mobile GPU compositing overflow clipping fix */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: -webkit-radial-gradient(white, black);
    isolation: isolate;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.phone-speaker-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 14px;
    background: #1e293b;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 20;
    box-sizing: border-box;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 30px;
    display: block;
    box-sizing: border-box;
    padding-top: 12px;
}

.phone-screen-content {
    background: #f8fafc;
    height: 100%;
    width: 100%;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Real Mobile App Screen UI Styling (Matching Actual ETAC Mobile App) */
.app-screen-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.app-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #4338ca;
    font-weight: 800;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #6366f1;
}

.app-user-greeting {
    font-size: 0.62rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.app-user-sub {
    font-size: 0.5rem;
    color: #64748b;
    display: block;
}

.app-weather-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.15rem 0.45rem;
    font-size: 0.52rem;
    font-weight: 700;
    color: #334155;
}

.app-bell-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: #475569;
}

/* Points Card */
.app-points-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.points-star-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.points-label {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #6366f1;
    display: block;
    line-height: 1;
}

.points-count {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.points-badge {
    background: #eef2ff;
    color: #4f46e5;
    font-size: 0.52rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
}

/* 3D Banner Slide */
.app-promo-banner {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
}

/* Grid Items */
.app-grid-container {
    background: #ffffff;
    border-radius: 14px;
    padding: 0.45rem 0.3rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.app-grid-item {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.15rem auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.item-green { background: #dcfce7; color: #16a34a; }
.item-lightgreen { background: #f0fdf4; color: #15803d; }
.item-purple { background: #f3e8ff; color: #9333ea; }
.item-blue { background: #dbeafe; color: #2563eb; }
.item-cyan { background: #e0f2fe; color: #0284c7; }
.item-pink { background: #fce7f3; color: #db2777; }
.item-violet { background: #ede9fe; color: #7c3aed; }
.item-orange { background: #ffedd5; color: #ea580c; }

.app-grid-label {
    font-size: 0.5rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    line-height: 1.15;
}

/* Screen Bottom Nav Bar */
.app-screen-nav {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.nav-item-phone {
    text-align: center;
    color: #94a3b8;
    font-size: 0.48rem;
    font-weight: 600;
}

.nav-item-phone i {
    font-size: 0.75rem;
    margin-bottom: 0.05rem;
}

.nav-item-phone.active {
    color: #4f46e5;
    font-weight: 800;
}

.scan-center-btn {
    background: #4f46e5;
    color: #ffffff !important;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
    margin-top: -8px;
}

.scan-center-btn i {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.scan-center-btn span {
    display: none;
}

.floating-badge {
    position: absolute;
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 25;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-top-left {
    top: 30px;
    left: -15px;
}

.badge-bottom-right {
    bottom: 40px;
    right: -15px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
    .app-download-card {
        padding: 2rem 1.25rem;
    }
    .app-heading {
        font-size: 1.65rem;
    }
    .phone-mockup-wrapper {
        padding: 0.5rem;
        max-width: 100%;
    }
    .phone-mockup-frame {
        width: 230px;
        height: 450px;
        max-width: 100%;
        border-width: 8px;
        border-radius: 36px;
    }
    .phone-screen-img {
        border-radius: 26px;
        padding-top: 10px;
    }
    .phone-speaker-notch {
        width: 64px;
        height: 12px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .floating-badge {
        display: none;
    }
}

@media (max-width: 576px) {
    .phone-mockup-wrapper {
        padding: 0.25rem;
    }
    .phone-mockup-frame {
        width: 210px;
        height: 410px;
        border-width: 7px;
        border-radius: 32px;
    }
    .phone-screen-img {
        border-radius: 22px;
        padding-top: 8px;
    }
    .phone-speaker-notch {
        width: 54px;
        height: 10px;
    }
}

/* High-Impact Black & Blue Hero Section */
.hero-section {
    background: radial-gradient(circle at 70% 30%, #0b1329 0%, #030712 100%);
    padding: 4.5rem 0 5rem 0 !important;
    position: relative;
    overflow: hidden;
    color: var(--text-primary-dark);
}

.hero-bg-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero_banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.32;
    z-index: 0;
    animation: heroZoomOut 12s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center center;
    pointer-events: none;
}

@keyframes heroZoomOut {
    0% {
        transform: scale(1.22);
    }
    100% {
        transform: scale(1.0);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15) translate(20px, -15px);
        opacity: 1;
    }
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(96, 165, 250, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.hero-showcase-card {
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    transition: var(--transition-smooth);
    animation: heroFloat 6s ease-in-out infinite;
    width: 100%;
}

.hero-showcase-card:hover {
    transform: translateY(-3px);
}

.hero-slider {
    position: relative;
    min-height: 420px;
    height: 420px;
    width: 100%;
}

/* Custom Slick Dots Styling for Hero Slider */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 10;
}

.hero-slider .slick-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.hero-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.hero-slider .slick-dots li.slick-active button {
    width: 24px;
    border-radius: 12px;
    background: #2563eb;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

/* Hero slider mobile centering & sizing */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 360px !important;
        min-height: 360px !important;
        width: 100% !important;
    }

    .hero-showcase-card {
        width: 100%;
        animation: none !important;
        /* stop float on mobile */
    }

    .hero-product-wrapper {
        justify-content: center;
        width: 100%;
    }

    .hero-slide-item {
        height: 330px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-slide-item img {
        max-height: 310px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin: 0 auto;
        display: block;
    }

    .hero-section {
        text-align: center;
        padding: 2.5rem 0 3rem 0 !important;
    }

    .hero-cert-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-heading {
        font-size: 2rem;
    }

    /* Ensure product wrapper col is centered */
    .col-lg-5.text-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Hero Slider Animations */
.hero-slide-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-slide-item:first-child {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.hero-slide-item.slide-animate {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.hero-slide-item img {
    transition: transform 0.6s ease;
}

.hero-slide-item.slide-animate img {
    animation: imgReveal 0.8s ease forwards;
}

@keyframes imgReveal {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-stats-wrapper {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.hero-stats-wrapper h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    margin-bottom: 0.15rem !important;
}

.hero-stats-wrapper .text-muted {
    color: #cbd5e1 !important;
}

.hero-stats-wrapper .row>div {
    position: relative;
}

.hero-stats-wrapper .row>div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #ffffff;
}

/* Hero Product Wrapper with Feature Icons */
.hero-product-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icons-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    line-height: 1.2;
    opacity: 0.85;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #60a5fa;
    backdrop-filter: blur(8px);
}

/* Hero Heading */
.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Hero Stat Icons */
.hero-stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* YouTube Lazy Load */
.youtube-lazy {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000 url('https://img.youtube.com/vi/2_R5BfC9YCI/maxresdefault.jpg') center/cover no-repeat;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}

.youtube-lazy::after {
    content: '\f16a';
    font-family: 'Font Awesome 5 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: #ff0000;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 2;
}

.youtube-lazy:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-lazy iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Certification Logos */
.hero-cert-img {
    height: 55px;
    width: auto;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
    transition: var(--transition-smooth);
}

.hero-cert-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Tile & Stone Solutions Showcase (Slick Slider - Properly Spaced)
   ========================================================================== */
.solutions-section-wrapper {
    background-color: #e8edf3;
    padding: 3rem 0 2rem 0 !important;
}

.solutions-section-wrapper .container {
    max-width: 1200px;
}

/* Left title column */
.solutions-section-wrapper .solutions-title-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #dde3ec;
    border-radius: 14px;
    min-height: 340px;
}

.solutions-section-wrapper .solutions-title-col h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.solutions-title-icon {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.solutions-how-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    border: 2px solid #e2e8f0;
}

.solutions-how-badge span.plus {
    font-size: 1.3rem;
    line-height: 1;
    color: #dc2626;
}

/* Main content slider card */
.slider-content {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #d1dae8;
    box-shadow: 0 12px 40px -8px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* Slide inner layout */
.solution-slide-inner {
    display: flex;
    min-height: 340px;
}

.solution-slide-left {
    flex: 0 0 38%;
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    border-right: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-slide-left::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #dc2626, #dc2626, transparent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}

.solution-slide-right {
    flex: 1;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.solution-slide-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.solution-slide-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.solution-slide-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.solution-slide-desc {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.solution-slide-subtitle {
    font-size: 0.78rem;
    font-weight: 400;
    color: #334155;
    margin-bottom: 4px;
}

.solution-slide-list {
    font-size: 0.78rem;
    color: #64748b;
    padding-left: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Product recommendation cards */
.solution-rec-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.solution-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 0.85rem;
}

.solution-product-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.solution-product-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.solution-product-grid.cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.solution-product-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.6rem 0.4rem 0.5rem;
    text-align: center;
    transition: all 0.25s ease;
    display: block;
    text-decoration: none !important;
    cursor: pointer;
}

.solution-product-card:hover {
    border-color: #dc2626;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.22);
    transform: translateY(-4px);
}

.solution-product-card img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0.35rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.solution-product-card .prod-name {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    display: block;
}

.solution-product-card .prod-sub {
    font-size: 0.6rem;
    color: #64748b;
    line-height: 1.3;
    display: block;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Video section */
.solution-video-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.solution-video-wrap {
    border-radius: 10px;
    overflow: hidden;
    width: 65%;
    max-width: 400px;
    margin: 0 auto;
    min-height: 180px;
    max-height: 220px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.solution-video-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: block;
    border: 0;
}

/* Nav arrows */
.slick-prev-l,
.slick-next-r {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 64px;
    background: #1e293b;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 6px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.slick-prev-l {
    left: 0;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.slick-next-r {
    right: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.slick-prev-l:hover,
.slick-next-r:hover {
    background: #dc2626;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.slick-prev-l:active,
.slick-next-r:active {
    transform: translateY(-50%) scale(0.97);
}

/* Thumbnail strip */
.solutions-thumb-strip {
    margin-top: 0.85rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #d1dae8;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.solution-thumb {
    padding: 0 5px;
    cursor: pointer;
    outline: none;
}

.solution-thumb .solution-image {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.25s ease;
    aspect-ratio: 4/3;
}

.solution-thumb .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s ease;
}

.solution-thumb.slick-current .solution-image,
.solution-thumb:hover .solution-image {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.solution-thumb.slick-current .solution-image img {
    transform: scale(1.05);
}

/* Responsive: stack slide columns on mobile */
@media (max-width: 767px) {
    .solution-slide-inner {
        flex-direction: column;
        min-height: auto;
    }

    .solution-slide-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #e8edf5;
        padding: 1rem;
    }

    .solution-slide-right {
        padding: 1rem;
    }

    .solution-slide-img img {
        height: 180px;
    }

    .solution-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solution-product-grid.cols-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .solutions-section-wrapper .solutions-title-col {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding: 1rem;
    }
}


/* Clean Light Visualizer Studio (Blue, Black & White) */
.visualizer-section-clean {
    background-color: var(--bg-light-gray);
    padding: 2.5rem 0 !important;
}

.visualizer-clean-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.07);
}

@media (max-width: 767.98px) {
    .visualizer-section-clean {
        padding: 1.5rem 0 !important;
    }

    .visualizer-clean-card {
        padding: 0.85rem;
    }

    #colorwrapper {
        min-height: 200px !important;
    }
}

.clean-tab-bar {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 5px;
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.clean-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.84rem;
    color: #475569;
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.clean-tab-btn:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

.clean-tab-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    box-shadow: var(--shadow-glow);
}

.color-pill-clean {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 0.5rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 100%;
}

.color-pill-clean:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.color-dot-clean {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.color-name-clean {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-thumb-clean {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    border: 2px solid #e2e8f0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin: 3px;
}

.tile-thumb-clean:hover {
    transform: scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.canvas-studio-frame {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.canvas-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.5rem 0.5rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}

#colorwrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #ffffff;
    transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#colorwrapper #image,
#colorwrapper #wall,
#colorwrapper .wall-img,
.wall-img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
}

/* Cards & Utilities */
.card-modern {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   ETAC Products Showcase Section (Premium Redesign)
   ========================================================================== */
.etac-products-section {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.link-catalog-all {
    color: #2563eb !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.link-catalog-all i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.link-catalog-all:hover {
    color: #1d4ed8 !important;
}

.link-catalog-all:hover i {
    transform: translateX(5px);
}

.card-product-creative {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.card-product-creative:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 18px 40px -8px rgba(37, 99, 235, 0.16);
}

.card-product-img-full {
    position: relative;
    background: #ffffff;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
}

.card-product-img-full a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-full-img {
    max-height: 215px;
    width: auto;
    max-width: 95%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
}

.card-product-creative:hover .product-full-img {
    transform: scale(1.06);
    filter: drop-shadow(0 14px 22px rgba(37, 99, 235, 0.2));
}

.card-top-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.badge-tag-grade {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.22rem 0.65rem;
    border-radius: 50px;
}

/* Elegant Accent Divider & Bottom Text Panel */
.card-product-overlay {
    position: relative;
    background: #ffffff;
    padding: 1rem 1.25rem 1.1rem;
    transition: all 0.35s ease;
}

.card-product-overlay::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    border-radius: 50px;
    margin-bottom: 0.65rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.card-product-creative:hover .card-product-overlay {
    background: #f8fafc;
}

.card-product-creative:hover .card-product-overlay::before {
    width: 70px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.card-overlay-cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.15rem;
    display: block;
}

.card-overlay-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-overlay-title a {
    color: #0f172a !important;
    transition: color 0.25s ease;
}

.card-product-creative:hover .card-overlay-title a {
    color: #2563eb !important;
}

.link-know-more {
    color: #2563eb !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.link-know-more i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.card-product-creative:hover .link-know-more,
.link-know-more:hover {
    color: #1d4ed8 !important;
}

.card-product-creative:hover .link-know-more i,
.link-know-more:hover i {
    transform: translateX(4px);
}

/* Support & Technical Guidance Section (Matching User Mockup) */
.support-header-tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #4f46e5;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.support-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.support-card-blue {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

.support-card-blue:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.12);
    border-color: #c7d2fe;
}

.support-card-green {
    background: #f4fbf7;
    border: 1px solid #d1fae5;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.05);
}

.support-card-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.14);
    border-color: #a7f3d0;
}

.support-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.35rem;
}

.icon-circle-blue {
    color: #4f46e5;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15);
    border: 1px solid #e0e7ff;
}

.icon-circle-green {
    color: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    border: 1px solid #d1fae5;
}

.support-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.support-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 380px;
    font-weight: 400;
}

.btn-support-blue {
    background: linear-gradient(135deg, #5b51d8 0%, #3b31b3 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.35);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-support-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.5);
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.btn-support-green {
    background: #2d6a4f;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 8px 22px rgba(45, 106, 79, 0.3);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-support-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 106, 79, 0.45);
    background: #1b4332;
}

.icon-box-modern {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(96, 165, 250, 0.15) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    transition: var(--transition-smooth);
}

.card-modern:hover .icon-box-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: #ffffff;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Heading Enhancements */
.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-section .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8 !important;
    max-width: 520px;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    display: block;
}

/* Professional Corporate Footer Section */
.footer-modern {
    background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #94a3b8;
    padding: 3.5rem 0 1.5rem 0;
}

.footer-brand-desc {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 1.15rem;
}

.footer-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #94a3b8 !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #ffffff;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

.footer-contact-text {
    line-height: 1.5;
}

.footer-contact-text a {
    color: #ffffff !important;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.footer-contact-text a:hover {
    color: #ffffff !important;
}

.social-pill {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #94a3b8 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    margin-right: 0.5rem;
}

.social-pill:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.social-pill.social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.footer-bottom-bar {
    padding-top: 1.75rem;
    margin-top: 2.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-credit-link {
    color: #ffffff !important;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-credit-link:hover {
    color: #60a5fa !important;
}

.footer-bottom-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.footer-bottom-link:hover {
    color: #60a5fa !important;
}

.footer-bottom-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.4rem;
}

/* Corporate Legal Pages Styling (Privacy Policy & Terms of Use) */
.legal-hero {
    background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.legal-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.25rem;
}

.legal-breadcrumb .breadcrumb-item,
.legal-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
}

.legal-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.legal-badge-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.legal-meta-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #cbd5e1;
    display: inline-block;
    text-align: left;
}

.legal-toc-card {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
}

.legal-toc-header {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.legal-toc-link {
    color: #64748b !important;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.legal-toc-link:hover {
    color: #2563eb !important;
    background: #eff6ff;
}

.toc-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.legal-toc-link:hover .toc-num {
    background: #2563eb;
    color: #ffffff;
}

.legal-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.05);
    color: #334155;
    line-height: 1.7;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.legal-number-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.legal-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.legal-highlight-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 1.25rem 0;
    color: #0369a1;
    font-size: 0.88rem;
}

.highlight-icon {
    font-size: 1.25rem;
    color: #0284c7;
    margin-top: 2px;
}

.legal-check-list {
    list-style: none;
    padding-left: 0;
    margin: 1.15rem 0;
}

.legal-check-list li {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.legal-check-list li i {
    margin-top: 3px;
}

.legal-divider {
    border-top: 1px solid #f1f5f9;
    margin: 2.25rem 0;
}

.legal-contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.25rem;
}

/* Contact Page Styling */
.contact-quick-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
    height: 100%;
}

.contact-quick-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    border-color: #cbd5e1;
}

.contact-quick-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(96, 165, 250, 0.18) 100%);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contact-quick-label {
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.contact-quick-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.contact-quick-val a {
    color: #0f172a !important;
    transition: color 0.2s ease;
}

.contact-quick-val a:hover {
    color: #2563eb !important;
}

.contact-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Contact Form Card & Input Enhancements */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06);
}

.contact-form-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #2563eb;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-input-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.contact-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-group .input-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 5;
    transition: color 0.2s ease;
}

.contact-input {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 0.7rem 0.9rem 0.7rem 2.4rem !important;
    color: #0f172a !important;
    font-size: 0.84rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02) !important;
    font-weight: 400 !important;
}

.contact-input:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
    background: #ffffff !important;
}

.contact-input-group:focus-within .input-icon {
    color: #2563eb !important;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.btn-contact-submit i {
    transition: transform 0.25s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(4px);
}

/* Contact Sidebar Card Enhancements */
.contact-sidebar-card {
    background: linear-gradient(145deg, #0b132b 0%, #080e1e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.contact-sidebar-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-sidebar-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.contact-whatsapp-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 14px;
    padding: 1.15rem;
    backdrop-filter: blur(8px);
}

.whatsapp-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp-action {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    width: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-whatsapp-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #34d399 0%, #047857 100%);
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    margin-top: 2px;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #60a5fa;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-info-val {
    font-size: 0.84rem;
    color: #e2e8f0;
    line-height: 1.5;
    font-weight: 400;
}

.contact-info-val a {
    color: #ffffff !important;
    transition: color 0.2s ease;
}

.contact-info-val a:hover {
    color: #60a5fa !important;
}

/* Mobile Center Alignment for Footer */
@media (max-width: 991.98px) {
    .footer-modern {
        text-align: center;
    }
    .footer-modern .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-brand-desc {
        text-align: center;
    }
    .footer-social-wrap {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-links a:hover {
        transform: none;
    }
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom-bar {
        text-align: center;
    }
    .footer-qr-wrap {
        display: flex;
        justify-content: center;
    }
}

/* ==========================================================================
   Dealer & Partnership Page Professional UI Styles
   ========================================================================== */
.dealer-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0) 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.dealer-hero-glow-left {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0) 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.section-spacious {
    padding: 5.5rem 0 !important;
}

.benefit-card-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card-pro h4, .benefit-card-pro h5 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.benefit-card-pro p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
    font-weight: 400;
}

.benefit-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.benefit-card-pro:hover {
    transform: translateY(-8px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.benefit-card-pro:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card-pro:hover .benefit-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
}

.step-card-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.step-card-pro h4, .step-card-pro h5 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.step-card-pro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.step-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: #2563eb;
}

.step-number-pill {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.step-connector-line {
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #cbd5e1 0%, #2563eb 50%, #cbd5e1 100%);
    z-index: 1;
}

@media (max-width: 991.98px) {
    .step-connector-line {
        display: none;
    }
}

.dealer-form-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.dealer-form-card .card-body {
    padding: 3.5rem 4rem !important;
}

@media (max-width: 991.98px) {
    .dealer-form-card .card-body {
        padding: 2rem 1.5rem !important;
    }
}

.form-control-pro {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0.95rem 1.35rem;
    font-size: 1.08rem;
    height: auto;
    transition: all 0.25s ease;
    background-color: #ffffff;
    color: #0f172a;
}

.form-control-pro::placeholder {
    color: #94a3b8;
    font-size: 1.02rem;
}

.form-control-pro:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    background-color: #ffffff;
}

.form-group-label-pro {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
    display: block;
}

/* Sliding Pill Toggle Switch */
.slider-toggle-container {
    position: relative;
    display: inline-flex;
    background: #e2e8f0;
    border-radius: 50px;
    padding: 6px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.06);
    max-width: 560px;
    width: 100%;
    overflow: hidden;
}

.slider-glider {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.slider-toggle-container.distributor-active .slider-glider {
    transform: translateX(100%);
}

.slider-toggle-btn {
    flex: 1;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 0.95rem 1.75rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 40px;
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-toggle-btn.active {
    color: #ffffff !important;
    font-weight: 800;
}

.slider-toggle-btn:hover:not(.active) {
    color: #0f172a;
}


.dealer-faq-card {
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s ease;
    margin-bottom: 1.5rem !important;
}

.dealer-faq-card:hover {
    border-color: #93c5fd !important;
}

.dealer-faq-header {
    background: #ffffff !important;
    padding: 1.5rem 2rem !important;
    border: none !important;
    cursor: pointer;
}

.dealer-faq-header h5, .dealer-faq-header h6 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.dealer-faq-card .card-body {
    font-size: 1.08rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    padding: 0 2rem 1.75rem 2rem !important;
}

.dealer-faq-header .faq-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.dealer-faq-header[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
    color: #2563eb !important;
}

.btn-dealer-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.15rem 3.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-dealer-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 99, 235, 0.55);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.btn-dealer-submit i {
    transition: transform 0.3s ease;
}

.btn-dealer-submit:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Dealer & Partnership Page Mobile Responsiveness
   ========================================================================== */
@media (max-width: 991.98px) {
    .section-spacious {
        padding: 3.75rem 0 !important;
    }
    
    .dealer-form-card .card-body {
        padding: 2.25rem 1.75rem !important;
    }
    
    .dealer-hero-glow,
    .dealer-hero-glow-left {
        opacity: 0.4;
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.15rem !important;
        line-height: 1.25 !important;
    }

    .hero-section p.lead {
        font-size: 1.05rem !important;
        line-height: 1.65 !important;
    }

    .benefit-card-pro {
        padding: 1.75rem 1.35rem;
    }

    .benefit-card-pro h4 {
        font-size: 1.25rem;
    }

    .step-card-pro {
        padding: 1.75rem 1.25rem;
    }

    .step-card-pro h4 {
        font-size: 1.2rem;
    }

    .dealer-form-card .card-header {
        padding: 2.5rem 1.25rem !important;
    }

    .dealer-form-card .card-header h2 {
        font-size: 1.65rem !important;
    }

    .dealer-faq-header {
        padding: 1.2rem 1.25rem !important;
    }

    .dealer-faq-header h5 {
        font-size: 1.05rem !important;
    }

    .dealer-faq-card .card-body {
        padding: 0 1.25rem 1.35rem 1.25rem !important;
        font-size: 0.98rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3.5rem 0 3rem 0 !important;
    }

    .hero-metrics-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .hero-metrics-item {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding-top: 0.75rem !important;
        padding-left: 0 !important;
        width: 100% !important;
    }

    .hero-metrics-item:first-child {
        border-top: none !important;
        padding-top: 0 !important;
    }

    .slider-toggle-container {
        padding: 4px !important;
        border-radius: 40px !important;
    }

    .slider-glider {
        top: 4px !important;
        bottom: 4px !important;
        left: 4px !important;
        width: calc(50% - 4px) !important;
        border-radius: 35px !important;
    }

    .slider-toggle-btn {
        padding: 0.75rem 0.5rem !important;
        font-size: 0.88rem !important;
    }

    .btn-dealer-submit {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 1.08rem !important;
    }

    .dealer-form-card .card-body {
        padding: 1.75rem 1rem !important;
    }

    .form-control-pro {
        font-size: 1rem !important;
        padding: 0.85rem 1rem !important;
    }
}



