/* 
==================================
PREMIUM LIGHT AURORA GRADIENT THEME - SMR
==================================
*/

/* LOCAL FONTS */

/* outfit-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/outfit-v15-latin-300.woff2') format('woff2');
}

/* outfit-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/outfit-v15-latin-regular.woff2') format('woff2');
}

/* outfit-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/outfit-v15-latin-500.woff2') format('woff2');
}

/* outfit-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/outfit-v15-latin-600.woff2') format('woff2');
}

/* outfit-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/outfit-v15-latin-700.woff2') format('woff2');
}

/* outfit-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/outfit-v15-latin-800.woff2') format('woff2');
}

/* plus-jakarta-sans-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/plus-jakarta-sans-v12-latin-300.woff2') format('woff2');
}

/* plus-jakarta-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2');
}

/* plus-jakarta-sans-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2');
}

/* plus-jakarta-sans-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2');
}

/* plus-jakarta-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
}

/* plus-jakarta-sans-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2');
}

:root {
    /* Bright & Pearlescent Backgrounds */
    --bg-base: #FFFFFF;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #F8FAFC;

    /* True Peacock Gradient Colors */
    --accent-peacock-gold: #8DA836;
    --accent-peacock-green: #009378;
    --accent-main: #007AA6;
    --accent-main-rgb: 0, 122, 166;
    --accent-deep: #003666;
    --accent-light: #009378;
    --accent-light-rgb: 0, 147, 120;

    /* Intense Gradients */
    --gradient-peacock: linear-gradient(135deg, #8DA836 0%, #009378 30%, #007AA6 70%, #003666 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    --gradient-hover: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);

    /* Typography */
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-tertiary: #64748B;

    /* Shadows */
    --shadow-soft: 0 15px 40px -10px rgba(0, 122, 166, 0.15);
    --shadow-hover: 0 25px 50px -12px rgba(0, 122, 166, 0.25);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    font-size: 96.5%;
    /* Perfect global font scale for premium industrial feel */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    animation: pageFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Preloader (Logo-less Premium Version) */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Preloader (Round Only Premium Version) */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(0, 122, 166, 0.05);
    border-radius: 50%;
    position: relative;
    animation: loaderSpin 3s linear infinite;
}

.loader-circle::before,
.loader-circle::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader-circle::before {
    border-top-color: var(--accent-light);
    border-left-color: var(--accent-main);
    animation: loaderSpin 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.loader-circle::after {
    border-bottom-color: var(--accent-peacock-gold);
    animation: loaderSpin 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite reverse;
    opacity: 0.6;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ultra-Gradient Aurora Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(160deg,
            rgba(141, 168, 54, 0.06) 0%,
            rgba(0, 147, 120, 0.05) 30%,
            rgba(0, 122, 166, 0.07) 70%,
            rgba(0, 54, 102, 0.04) 100%);
    z-index: -4;
    pointer-events: none;
}

.bg-grid {
    display: none;
    /* Disabled square shapes per user request */
}

.ambient-light-1,
.ambient-light-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.8;
    pointer-events: none;
}

.ambient-light-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(141, 168, 54, 0.15) 0%, transparent 70%);
}

.ambient-light-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 147, 120, 0.15) 0%, transparent 70%);
}

/* Typography Elements */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.15;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: inline-block;
}

.highlight-gradient {
    background: var(--gradient-peacock);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: textShimmer 4s ease-in-out infinite alternate;
}

@keyframes textShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Global Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-peacock);
    background-size: 200% auto;
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 147, 120, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px -5px rgba(0, 147, 120, 0.6);
}

.btn-secondary {
    background: var(--gradient-glass);
    color: var(--accent-deep);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    z-index: -1;
    background: var(--gradient-peacock);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--accent-main);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 122, 166, 0.1);
    box-shadow: 0 4px 30px rgba(0, 122, 166, 0.08);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    z-index: 1000;
    position: relative;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
    height: 40px;
}

.logo span {
    transition: all 0.4s ease;
}

.logo:hover span {
    background: var(--gradient-peacock);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 6px rgba(0, 122, 166, 0.2));
    transform: scale(1.02);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-peacock);
    background-size: 200%;
    animation: textShimmer 4s ease-in-out infinite alternate;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

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

.mobile-nav-cta {
    display: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-peacock);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

/* Sections Setup */
section {
    padding: 30px 0;
    position: relative;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-tertiary);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

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

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 122, 166, 0.2);
    box-shadow: 0 4px 15px rgba(0, 122, 166, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 25px;
}

/* GSTIN Premium Card Highlights */
.gstin-badge {
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 147, 120, 0.2);
    border-radius: 100px;
    font-weight: 800;
    color: var(--accent-deep);
    font-size: 0.9rem;
    box-shadow:
        0 10px 30px -5px rgba(0, 147, 120, 0.15),
        rgba(0, 147, 120, 0.05) 0px 4px 6px -1px,
        rgba(0, 147, 120, 0.05) 0px 2px 4px -1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.gstin-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 147, 120, 0.1), transparent);
    transform: translateX(-100%);
    transition: none;
}

.gstin-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-light);
    box-shadow: 0 20px 40px -10px rgba(0, 147, 120, 0.25);
    background: #ffffff;
}

.gstin-badge:hover::before {
    transform: translateX(100%);
    transition: transform 0.8s ease;
}

.gstin-badge i {
    color: var(--accent-main);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 122, 166, 0.2));
}

.stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.divider {
    width: 2px;
    height: 40px;
    background: var(--gradient-peacock);
    opacity: 0.3;
}

.stat-item h3 {
    font-size: 1.7rem;
    margin-bottom: 4px;
    color: var(--accent-deep);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

/* Hero Visual & Gradient Glass Panels */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.glass-panel {
    background: var(--gradient-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 30px;
    position: absolute;
    transition: transform 0.1s;
}

.main-panel {
    width: 85%;
    right: 0;
    top: -30px;
    z-index: 2;
    animation: floatPanel1 8s ease-in-out infinite;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.panel-header i {
    font-size: 1.5rem;
    background: var(--gradient-peacock);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bar-group {
    margin-bottom: 20px;
}

.bar-group:last-child {
    margin-bottom: 0;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bar-percent {
    color: var(--accent-main);
    font-weight: 900;
    font-size: 0.95rem;
}

.bar-track {
    height: 8px;
    background: rgba(0, 122, 166, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-peacock);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 147, 120, 0.4);
}

/* Floating Pill Model Layout */
.model-float {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: 0 15px 30px rgba(0, 122, 166, 0.15);
    animation: floatPanel2 6s ease-in-out infinite;
}

.g-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-peacock);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 122, 166, 0.3);
}

.float-tl {
    top: -50px;
    left: -30px;
    animation-delay: 0s;
}

.float-br {
    bottom: 60px;
    right: 280px;
    animation-delay: 2s;
}

/* Big Floating Bottom Box */
.model-large-float {
    position: absolute;
    bottom: 50px;
    left: -40px;
    z-index: 4;
    background: #ffffff;
    width: 290px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 45px rgba(0, 122, 166, 0.15);
    animation: floatPanel1 8s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mlf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.float-title {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.trending-icon {
    color: var(--accent-main);
    font-size: 1.2rem;
}

.float-big-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-deep);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
}

.stat-up {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00b894;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mini-track {
    height: 6px;
    background: rgba(0, 122, 166, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
}

.mini-fill {
    height: 100%;
    background: #00b894;
    border-radius: 10px;
}

@keyframes floatPanel1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatPanel2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* About Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 122, 166, 0.08);
    z-index: 1;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-hover);
}

/* Gradient Borders on Hover */
.premium-card::after,
.product-card::after,
.bento-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    /* thicker gradient border */
    background: var(--gradient-peacock);
    background-size: 200% auto;
    animation: textShimmer 4s infinite alternate;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.premium-card:hover::after,
.product-card:hover::after,
.bento-box:hover::after {
    opacity: 1;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-peacock);
    background-size: 200% auto;
    animation: textShimmer 4s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 122, 166, 0.2);
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 12px 35px rgba(0, 122, 166, 0.08);
}

.product-visual {
    height: 180px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 147, 120, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: var(--gradient-peacock);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    border-bottom: 1px solid rgba(0, 122, 166, 0.1);
    transition: var(--transition-smooth);
}

.product-visual img {
    border-radius: 24px;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 10px 20px rgba(0, 122, 166, 0.08);
    border: 1px solid rgba(0, 122, 166, 0.05);
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.product-info p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    color: var(--text-secondary);
}

.learn-more {
    font-weight: 700;
    color: var(--accent-deep);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-hover);
}

.product-card:hover .product-visual {
    opacity: 1;
}

.product-visual img:hover,
.featured-visual img:hover {
    transform: scale(1.15);
}

.product-card:hover .learn-more {
    color: var(--accent-main);
}

/* Featured Product Card */
.product-card.featured {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 0;
}

.featured-visual {
    height: 100%;
    min-height: 380px;
    border-right: 1px solid rgba(0, 122, 166, 0.1);
    border-bottom: none;
    opacity: 1;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
}

.featured-visual img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 32px;
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 122, 166, 0.12);
    border: 1px solid rgba(0, 122, 166, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-visual.logo-stack-container {
    flex-direction: column;
    gap: 30px;
}

.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 100%;
    width: 100%;
}

.logo-stack img {
    height: auto;
    max-height: 250px;
    width: 100%;
    object-fit: contain;
    border-radius: 32px;
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 122, 166, 0.12);
    border: 1px solid rgba(0, 122, 166, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Removed card-level image hover trigger per user request */

.featured-info {
    justify-content: center;
    padding: 50px 60px;
}

.featured-badge {
    width: fit-content;
    margin-bottom: 25px;
    padding: 8px 16px;
    font-size: 0.8rem;
}

.featured-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-info p {
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.bulk-btn {
    width: fit-content;
    padding: 16px 32px;
}

/* Alaska Product Highlight Tags */
.alaska-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.alaska-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: linear-gradient(135deg, rgba(0, 147, 120, 0.08), rgba(0, 122, 166, 0.06));
    border: 1px solid rgba(0, 122, 166, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-deep);
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.alaska-tag i {
    font-size: 0.75rem;
    color: var(--accent-main);
}

.alaska-tag:hover {
    background: linear-gradient(135deg, rgba(0, 147, 120, 0.15), rgba(0, 122, 166, 0.12));
    border-color: rgba(0, 122, 166, 0.3);
    transform: translateY(-2px);
}


/* Why Us â€” Modern Bento Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(0, 122, 166, 0.06);
    border-radius: 24px;
    padding: 20px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 122, 166, 0.06);
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-peacock);
    background-size: 200% auto;
    animation: textShimmer 4s ease-in-out infinite alternate;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 122, 166, 0.14);
}

/* Hero card â€” spans left column across 2 rows */
.why-hero {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    background: linear-gradient(160deg, #ffffff 0%, #f4fafb 100%);
    border: 1px solid rgba(0, 122, 166, 0.1);
}

.why-hero::before {
    opacity: 1;
    height: 5px;
}

.why-hero h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.why-hero p {
    font-size: 1rem;
    line-height: 1.85;
}

/* Step Number */
.why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--gradient-peacock);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 28px;
    line-height: 1;
    transition: opacity 0.4s ease;
    user-select: none;
}

.why-card:hover .why-number {
    opacity: 0.3;
}

/* Icon Wrap */
.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--gradient-peacock);
    background-size: 200% auto;
    animation: textShimmer 4s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(0, 122, 166, 0.25);
}

.why-hero .why-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Partner Chips */
.why-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 147, 120, 0.08), rgba(0, 122, 166, 0.06));
    border: 1px solid rgba(0, 122, 166, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-deep);
}

.partner-chip i {
    color: var(--accent-light);
    font-size: 0.8rem;
}

/* Why Us Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-hero {
        grid-row: span 1;
        padding: 36px 28px;
    }

    .why-hero h3 {
        font-size: 1.35rem;
    }

    .why-number {
        font-size: 2.2rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.review-marquee {
    display: flex;
    overflow: hidden;
    margin-top: 50px;
    width: 100%;
    padding: 10px 0;
    /* extra space for hover lift shadows */
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    /* Accounts for the gap between the two groups */
    animation: scrollReviews 30s linear infinite;
}

.review-marquee:hover .marquee-group {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.review-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--gradient-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 12px 35px rgba(0, 122, 166, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-hover);
}



.review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 122, 166, 0.1);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 122, 166, 0.2);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 700;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    padding-top: 40px;
}

.contact-wrapper {
    background: var(--gradient-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-text {
    padding: 80px 60px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgwLCAxMjIsIDE2NiwgMC4wNSkiLz48L3N2Zz4=');
}

.contact-methods {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cm-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-peacock);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(0, 122, 166, 0.2);
}

.c-method h5 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.c-method span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-side {
    padding: 80px 60px;
    background: rgba(0, 122, 166, 0.03);
    border-left: 1px solid rgba(0, 122, 166, 0.1);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-title {
    font-size: 1.6rem;
    font-family: 'Outfit';
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-deep);
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 122, 166, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-group textarea {
    resize: vertical;
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--text-tertiary);
    font-weight: 600;
    transition: var(--transition-fast);
    pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group input:not(:placeholder-shown),
.input-group textarea:not(:placeholder-shown) {
    border-color: var(--accent-main);
    box-shadow: 0 0 20px rgba(0, 122, 166, 0.1);
    background: white;
}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:not(:placeholder-shown)+label {
    top: -12px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--bg-surface);
    padding: 0 8px;
    color: var(--accent-main);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-submit {
    background: var(--gradient-peacock);
    background-size: 200%;
    color: white;
    border-radius: 12px;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 147, 120, 0.3);
}

.btn-submit:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 147, 120, 0.5);
}

/* Map Container */
.map-container {
    margin-top: 60px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 255, 255, 0.9);
    height: 400px;
    background: var(--gradient-glass);
    backdrop-filter: blur(24px);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.4s ease;
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
}

/* Clean White Footer */
footer {
    padding: 40px 0;
    margin-top: 60px;
    background: #ffffff;
    border-top: 3px solid transparent;
    border-image: var(--gradient-peacock) 1;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.footer-logo-link span {
    transition: color 0.3s ease;
}

.footer-logo-link:hover span {
    color: var(--accent-main);
}

.footer-logo-link img {
    height: 40px;
    border-radius: 8px;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--text-tertiary);
    width: 18px;
    text-align: center;
    margin-top: 3px;
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
    flex: 1;
    align-self: flex-end;
    padding-bottom: 15px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-right: 60px;
}

.social-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-tertiary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Original Social Brand Colors on Hover */
.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.linkedin:hover {
    background: #0A66C2;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.twitter:hover {
    background: #000000;
}

/* Animation Utility Classes */
.reveal,
.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(20px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active,
.reveal-up.active,
.reveal-right.active,
.reveal-left.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay Helpers */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* Technical Specifications Section */
.specifications {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 50px 0;
}

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

@media (max-width: 1200px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.specs-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0, 122, 166, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.specs-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.specs-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-peacock);
    background-size: 200%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 122, 166, 0.2);
}

.specs-card h3 {
    font-size: 1.6rem;
    color: var(--accent-deep);
    margin-bottom: 20px;
    font-weight: 700;
}

.specs-list {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.specs-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.specs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-main);
    font-weight: bold;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 122, 166, 0.1);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.specs-table th {
    background: rgba(0, 122, 166, 0.05);
    padding: 12px 15px;
    color: var(--accent-deep);
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 122, 166, 0.1);
}

.specs-table td {
    padding: 12px 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 122, 166, 0.05);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.selection-guide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-main);
}

.guide-item h5 {
    font-size: 1rem;
    color: var(--accent-deep);
    margin-bottom: 8px;
    font-weight: 700;
}

.guide-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}


/* ==================================
   RESPONSIVE DESIGN SYSTEM (991px Breakpoint)
   ================================== */
@media (max-width: 991px) {
    .hero {
        min-height: auto !important;
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-ctas, .stats {
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-layout, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Hero Visual Mobile Fix */
    .hero-visual {
        height: auto !important;
        min-height: 600px;
        margin: 40px auto 0;
        max-width: 500px;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
    }

    .main-panel {
        width: 100% !important;
        position: relative !important;
        right: 0 !important;
        top: 15px !important;
        padding: 24px !important;
        z-index: 2 !important;
        margin-bottom: 20px !important;
    }

    .float-tl {
        top: -15px !important;
        left: -10px !important;
        z-index: 10 !important;
    }

    .float-br {
        bottom: 20px !important;
        right: -10px !important;
        z-index: 10 !important;
    }

    .model-large-float {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
        padding: 24px !important;
        margin-top: 20px !important;
        z-index: 5 !important;
        align-self: flex-start !important;
    }

    .float-big-stat {
        font-size: 2.2rem !important;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateY(-20px);
        z-index: 999;
        padding: 40px;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--accent-deep);
    }

    .nav-links a::after {
        display: none;
    }

    .navbar .btn-primary {
        display: none;
    }

    .mobile-nav-cta {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .mobile-nav-cta .btn-primary {
        display: inline-flex;
        width: 100%;
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
        position: relative;
    }

    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }

    .logo img {
        height: 38px;
    }
}

/* ==================================
   RESPONSIVE DESIGN SYSTEM (768px Breakpoint)
   ================================== */
@media (max-width: 768px) {
    .about-grid, .product-grid, .specs-grid {
        grid-template-columns: 1fr;
    }

    .contact-text, .contact-form-side {
        padding: 40px 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-left {
        align-items: center;
    }

    .map-container {
        height: 300px;
        margin-top: 40px;
    }

    .product-card.featured {
        grid-template-columns: 1fr;
    }

    .featured-visual {
        min-height: 250px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 122, 166, 0.1);
    }

    .featured-info {
        padding: 30px;
    }

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

/* ==================================
   RESPONSIVE DESIGN SYSTEM (480px Breakpoint)
   ================================== */
@media (max-width: 480px) {
    .logo {
        font-size: 0.95rem;
    }

    .hero-visual {
        height: auto !important;
        min-height: 620px;
        margin-top: 30px;
    }

    .main-panel {
        padding: 20px 15px !important;
    }

    .model-large-float {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin-top: 15px !important;
    }

    .float-big-stat {
        font-size: 2.2rem !important;
    }

    .float-br {
        bottom: 10px !important;
        right: -5px !important;
    }

    .float-tl {
        scale: 0.9;
        top: -20px !important;
        left: -5px !important;
    }

    .stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stats .divider {
        display: none;
    }

    .stat-item {
        min-width: 100px;
    }
}

/* FLOATING QUICK CONNECT WIDGET - PREMIUM EDITION */
.quick-connect {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    align-items: flex-end;
    /* Anchor expanding buttons to the right edge */
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 122, 166, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-btn i {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Glass Base Icons */
.quick-btn.whatsapp i {
    color: #25D366;
}

.quick-btn.mail i {
    color: #EA4335;
}

.quick-btn.call i {
    color: var(--accent-main);
}

/* The Expanding Text generated dynamically from aria-labels */
.quick-btn::after {
    content: attr(aria-label);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    padding-right: 25px;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: white;
}

/* Hover Expanding Morph Effects */
.quick-btn.whatsapp:hover {
    width: 220px;
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.quick-btn.mail:hover {
    width: 145px;
    background: #EA4335;
    border-color: #EA4335;
    box-shadow: 0 15px 30px rgba(234, 67, 53, 0.4);
}

.quick-btn.call:hover {
    width: 130px;
    background: var(--gradient-peacock);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 122, 166, 0.4);
}

.quick-btn:hover i {
    color: white;
    transform: scale(1.15);
}

.quick-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Attention Pulse for WhatsApp */
@keyframes softPulse {
    0% {
        box-shadow: 0 10px 25px rgba(0, 122, 166, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 10px 25px rgba(0, 122, 166, 0.15), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 10px 25px rgba(0, 122, 166, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.quick-btn.whatsapp {
    animation: softPulse 2.5s infinite;
}

.quick-btn.whatsapp:hover {
    animation: none;
}
