/* ========================================
   INDOGARMENT - Premium Design System
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #1074b9;
    --primary-dark: #0a5a8f;
    --primary-light: #3d9de0;
    --primary-glow: rgba(16, 116, 185, 0.3);
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #06b6d4;

    --dark-900: #0a0e17;
    --dark-800: #111827;
    --dark-700: #1a2236;
    --dark-600: #243049;
    --dark-500: #334155;

    --light-100: #f8fafc;
    --light-200: #e2e8f0;
    --light-300: #cbd5e1;
    --light-400: #94a3b8;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --gradient-primary: linear-gradient(135deg, #1074b9 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    --gradient-card: linear-gradient(135deg, rgba(26, 34, 54, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
    --gradient-hero: linear-gradient(135deg, #0a0e17 0%, #1a2236 40%, #0a0e17 100%);

    --glass-bg: rgba(26, 34, 54, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-pill: 100px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(16, 116, 185, 0.2);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --container-width: 1200px;
    --section-padding: 100px 0;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-base);
    overflow: hidden;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-900);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo img {
    border-radius: 10px;
}

.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.nav-logo span.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-base) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--dark-800);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary) !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-light) !important;
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 116, 185, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(20px, -20px);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--primary-light);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    font-size: 0.7rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text {
    display: block;
    font-size: 0.7em;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.hero-image-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.hero-float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--glass-shadow);
    animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-float-card .card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.hero-float-card .card-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-float-card .card-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark-900);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    color: var(--dark-900);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 0.95rem;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 116, 185, 0.3);
    box-shadow: var(--shadow-glow);
}

.product-card:hover::before {
    opacity: 1;
    width: 80%;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(16, 116, 185, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    transition: var(--transition-base);
}

.product-card:hover .product-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   ABOUT / OUR STORY
   ======================================== */
.about-section {
    background: var(--dark-800);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
}

.stat-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
}

.about-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.about-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* ========================================
   QUALITY SECTION
   ======================================== */
.quality-section {
    position: relative;
    overflow: hidden;
}

.quality-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.quality-row:last-child {
    margin-bottom: 0;
}

.quality-row.reverse {
    direction: rtl;
}

.quality-row.reverse>* {
    direction: ltr;
}

.quality-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.quality-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.quality-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quality-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.quality-features-list li i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.quality-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-700);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.quality-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   TRUST / WHY US SECTION
   ======================================== */
.trust-section {
    position: relative;
    overflow: hidden;
}

.trust-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.95), rgba(16, 116, 185, 0.15));
    z-index: 1;
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(16, 116, 185, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    transition: var(--transition-base);
}

.trust-card:hover .trust-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.trust-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.trust-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ========================================
   GALLERY / PORTFOLIO SECTION
   ======================================== */
.gallery-section {
    background: var(--dark-800);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(10, 14, 23, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* ========================================
   CONTACT / CTA SECTION
   ======================================== */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: rgba(16, 116, 185, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-700);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
    height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-hours {
    margin-top: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.contact-hours h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    overflow: hidden;
}

.testimonials-slider-container {
    max-width: 800px;
    /* Narrower for more elegance */
    margin: 0 auto;
    position: relative;
    padding: 30px 0 40px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(16, 116, 185, 0.3);
}

.rating {
    margin-bottom: 24px;
    color: var(--secondary);
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: var(--dark-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    border: 2px solid var(--glass-border);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--dark-700);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    width: 30px;
    background: var(--primary);
    border-radius: 50px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-800);
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-about {
    max-width: 320px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
    display: block;
    border-radius: 10px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   ANIMATIONS - SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger children */
.stagger>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    border: none;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

/* ========================================
   ALERT / SUCCESS MESSAGE
   ======================================== */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 80px 0;
}

.product-page-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.product-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(16, 116, 185, 0.3);
}

.product-page-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-page-card:hover .product-page-image img {
    transform: scale(1.1);
}

.product-page-body {
    padding: 28px;
}

.product-page-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-page-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.product-page-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    padding: 80px 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ---- Tablet (1024px) ---- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .products-grid,
    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-grid,
    .quality-row,
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-row.reverse {
        direction: ltr;
    }

    .about-content .section-label {
        justify-content: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }

    .hero-visual-inner {
        max-width: 380px;
    }

    .products-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 60px 0;
    }

    .quality-content h3 {
        font-size: 1.5rem;
    }

    .quality-image img {
        height: 300px;
    }

    .section-header {
        margin-bottom: 48px;
    }
}

/* ---- Mobile Large (768px) ---- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* ---- Mobile Navigation ---- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 40px;
        gap: 5px;
        border-left: 1px solid var(--glass-border);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        padding: 14px 20px !important;
        border-radius: var(--radius-sm);
        font-size: 1rem !important;
        letter-spacing: 0.5px !important;
        width: 100%;
        transition: var(--transition-fast);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(16, 116, 185, 0.1);
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-cta {
        margin-top: 16px !important;
        text-align: center;
        justify-content: center;
    }

    /* Mobile Dropdown */
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        display: block !important;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        margin: 0;
        width: 100%;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
        padding-bottom: 10px;
    }

    .nav-dropdown>a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-weight: 600 !important;
    }

    .nav-dropdown.active>a {
        color: var(--primary-light) !important;
        background: rgba(16, 116, 185, 0.15) !important;
    }

    .nav-dropdown i {
        display: inline-block !important;
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }

    .nav-dropdown.active i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 12px 20px !important;
        opacity: 0.8;
        font-size: 0.9rem !important;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile menu backdrop */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.open::before {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .nav-logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .nav-logo .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    /* ---- Hero Mobile ---- */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .hero-content {
        text-align: center;
        padding: 0 12px;
    }

    .hero-badge {
        margin: 0 auto 24px;
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        margin: 0 auto 30px;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 20px;
    }

    .hero-visual {
        display: flex;
        width: 100%;
        padding: 0 10px;
        justify-content: center;
        perspective: 1000px;
    }

    .hero-visual-inner {
        max-width: 480px;
        width: 100%;
    }

    .hero-float-card {
        padding: 10px 14px;
        gap: 8px;
        border-radius: var(--radius-sm);
    }

    .hero-float-card .card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .hero-float-card .card-info h4 {
        font-size: 0.85rem;
    }

    .hero-float-card .card-info p {
        font-size: 0.65rem;
    }

    .hero-float-card.card-1 {
        top: 10%;
        right: 0px;
        transform: translateX(10px);
    }

    .hero-float-card.card-2 {
        bottom: 15%;
        left: 0px;
        transform: translateX(-10px);
    }

    .btn {
        justify-content: center;
        padding: 16px 28px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 18px 32px;
        font-size: 0.95rem;
    }

    /* ---- Section Headers Mobile ---- */
    .section-header {
        margin-bottom: 48px;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .section-label::before,
    .section-label::after {
        width: 30px;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* ---- Products Mobile ---- */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card {
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }

    .product-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        margin: 0 auto 8px;
        font-size: 1.8rem;
        border-radius: var(--radius-md);
    }

    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .product-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        max-width: 280px;
        margin: 0 auto;
    }

    /* ---- About Mobile ---- */
    .about-grid {
        gap: 40px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .about-content .section-label {
        justify-content: center;
    }

    .about-content .section-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .about-text {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .about-video-wrapper {
        border-radius: var(--radius-lg);
    }

    /* ---- Quality Mobile ---- */
    .quality-row {
        gap: 32px;
        margin-bottom: 64px;
    }

    .quality-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .quality-content p {
        font-size: 1rem;
        text-align: center;
    }

    .quality-features-list {
        gap: 12px;
        align-items: center;
    }

    .quality-features-list li {
        font-size: 0.9rem;
        gap: 12px;
    }

    .quality-image {
        border-radius: var(--radius-lg);
        order: -1;
    }

    .quality-image img {
        height: 260px;
    }

    /* ---- Trust Mobile ---- */
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-card {
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        margin: 0 auto 8px;
        font-size: 1.6rem;
    }

    .trust-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .trust-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .trust-description {
        font-size: 1rem;
    }

    /* ---- Gallery Mobile ---- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        border-radius: var(--radius-md);
    }

    .gallery-overlay {
        opacity: 1;
        padding: 20px;
    }

    .gallery-overlay h4 {
        font-size: 0.9rem;
    }

    /* ---- Contact Mobile ---- */
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }

    .contact-form {
        padding: 32px 24px;
        border-radius: var(--radius-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-control {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 24px;
    }

    .contact-info-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-lg);
        padding: 24px;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .contact-hours {
        padding: 24px;
    }

    /* ---- Products Page Mobile ---- */
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .products-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 0;
    }

    .product-page-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .product-page-image {
        width: 100%;
        height: 200px;
    }

    .product-page-body {
        padding: 24px;
        text-align: center;
    }

    .product-page-body h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .product-page-body p {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .product-page-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 12px;
        right: 12px;
    }

    /* ---- Testimonials Mobile ---- */
    .testimonial-content {
        padding: 48px 24px;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .slider-dots {
        margin-top: 32px;
    }

    /* ---- Footer Mobile ---- */
    .footer {
        padding: 60px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 24px;
    }

    .footer-about p {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* ---- Floating Elements Mobile ---- */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        bottom: 24px;
        right: 20px;
        z-index: 1001;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        bottom: 96px;
        /* Increased offset to avoid overlap with whatsapp */
        right: 26px;
        z-index: 1001;
    }
}

/* ---- Mobile Small (480px) ---- */
@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 20px;
    }

    .product-card,
    .trust-card {
        padding: 32px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .contact-form {
        padding: 20px;
    }

    .form-control {
        padding: 11px 12px;
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .contact-info-card {
        padding: 12px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .contact-info-card h4 {
        font-size: 0.85rem;
    }

    .contact-info-card p {
        font-size: 0.8rem;
    }

    .quality-content h3 {
        font-size: 1.15rem;
    }

    .quality-content p {
        font-size: 0.85rem;
    }

    .quality-image img {
        height: 180px;
    }

    .page-header {
        padding: 100px 0 36px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.85rem;
    }

    .product-page-card {
        border-radius: var(--radius-md);
    }

    .product-page-image {
        width: 100px;
        min-width: 100px;
    }

    .product-page-body {
        padding: 12px 14px;
    }

    .product-page-body h3 {
        font-size: 0.85rem;
    }

    .product-page-body p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
}

/* ---- Mobile Extra Small (360px) ---- */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-logo .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .product-card {
        padding: 16px 14px;
        gap: 12px;
    }

    .product-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
    }

    .gallery-grid {
        gap: 6px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ---- Touch device optimizations ---- */
@media (hover: none) and (pointer: coarse) {

    .product-card:hover,
    .trust-card:hover,
    .stat-item:hover,
    .product-page-card:hover {
        transform: none;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .trust-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.97);
    }

    /* Larger tap targets */
    .nav-links a {
        min-height: 44px;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }
}

/* ---- Landscape mobile ---- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-wrap: wrap !important;
        white-space: normal !important;
        gap: 12px;
    }

    .btn-lg {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 24px !important;
    }
}

/* ========================================
   GLOWING DUST ANIMATION
   ======================================== */
.dust-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dust {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--primary-light);
    opacity: 0;
    animation: floatingDust var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatingDust {
    0% {
        transform: translate(var(--x-start), var(--y-start)) scale(0);
        opacity: 0;
    }

    20% {
        opacity: var(--max-opacity);
    }

    80% {
        opacity: var(--max-opacity);
    }

    100% {
        transform: translate(var(--x-end), var(--y-end)) scale(1);
        opacity: 0;
    }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-900);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   AI AUTO MARKETING WIDGET
   ======================================== */
.ai-marketing-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    pointer-events: none;
}

.ai-marketing-robot {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(16, 116, 185, 0.4);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ai-marketing-robot:hover {
    transform: scale(1.1) rotate(5deg);
}

.ai-marketing-robot i {
    color: white;
    font-size: 1.8rem;
    animation: robotBreath 3s ease-in-out infinite;
}

.ai-marketing-bubble {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 20px 20px 20px 5px;
    max-width: 280px;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    position: relative;
}

.ai-marketing-bubble.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ai-bubble-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.ai-bubble-close:hover {
    color: var(--primary-light);
    opacity: 1;
    transform: scale(1.1);
}

.ai-marketing-bubble p {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.ai-marketing-label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

@keyframes robotBreath {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .ai-marketing-widget {
        display: none !important;
    }
}