/* Laxmi Sales - Modern Next-Gen Stylesheet */
/* Vibrant Gradients, Glassmorphism & Micro-animations */

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

/* ===== CSS VARIABLES - MODERN VIBRANT PALETTE ===== */
:root {
    /* Primary - Deep Electric Blues & Violets */
    --primary-900: #0f172a;
    --primary-800: #1e1b4b;
    --primary-700: #312e81;
    --primary-600: #4338ca;
    --primary-500: #4f46e5;
    --primary-400: #6366f1;
    --primary-300: #818cf8;
    --primary-200: #a5b4fc;
    --primary-100: #c7d2fe;
    --primary-50: #eef2ff;

    /* Accent - Vibrant Teal/Cyan */
    --accent-600: #0891b2;
    --accent-500: #06b6d4;
    --accent-400: #22d3ee;
    --accent-300: #67e8f9;

    /* Secondary - Purple/Magenta for depth */
    --secondary-600: #9333ea;
    --secondary-500: #a855f7;
    --secondary-400: #c084fc;
    --secondary-300: #d8b4fe;

    /* Success - Modern Green */
    --success-600: #059669;
    --success-500: #10b981;
    --success-400: #34d399;

    /* Neutral Colors - Cooler tones */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* ===== REFINED GRADIENTS (Blue Monochromatic) ===== */
    /* Hero/Banner - Smooth blue monochromatic gradient */
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    --gradient-hero-alt: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);

    /* Primary UI gradient - Professional & Clean */
    --gradient-primary: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    --gradient-primary-vivid: linear-gradient(135deg, #1e40af 0%, #60a5fa 100%);

    /* Accent gradient for CTAs */
    --gradient-accent: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-accent-glow: linear-gradient(135deg, #34d399 0%, #10b981 100%);

    /* Subtle background gradients */
    --gradient-subtle: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
    --gradient-subtle-warm: linear-gradient(180deg, #faf5ff 0%, #f8fafc 100%);

    /* Dark gradients for header/footer */
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --gradient-dark-mesh: linear-gradient(135deg, #020617 0%, #1e1b4b 50%, #172554 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-border-light: rgba(255, 255, 255, 0.3);

    /* ===== GLOW EFFECTS (Softened) ===== */
    --glow-primary: 0 0 20px rgba(59, 130, 246, 0.3);
    --glow-primary-intense: 0 0 30px rgba(37, 99, 235, 0.4);
    --glow-accent: 0 0 15px rgba(20, 184, 166, 0.3);
    --glow-purple: 0 0 20px rgba(59, 130, 246, 0.2);
    /* Replaced purple with blue */
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.4);

    /* ===== SHADOWS - Enhanced depth ===== */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 8px 32px rgba(99, 102, 241, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 20px 48px rgba(79, 70, 229, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Transitions - Smooth & Elastic */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* ===== MODERN KEYFRAME ANIMATIONS ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Background Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

/* Floating Orbs Animation */
@keyframes float {

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

    33% {
        transform: translateY(-10px) rotate(2deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -15px) scale(1.05);
    }
}

/* Shimmer Effect for Buttons */
@keyframes shimmer {
    0% {
        transform: translateX(-150%) skewX(-20deg);
    }

    100% {
        transform: translateX(300%) skewX(-20deg);
    }
}

/* Glow Pulse */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3),
            0 0 10px rgba(99, 102, 241, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5),
            0 0 15px rgba(99, 102, 241, 0.2);
    }
}

/* Border Gradient Animation */
@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Text Gradient Animation */
@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }

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

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

/* ===== BASE STYLES ===== */

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

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--gray-50);
    overflow-x: hidden;
    padding-top: 100px;
    /* Reduced padding for cleaner look */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-200);
    border-radius: 5px;
    border: 2px solid var(--gray-50);
}

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

/* Selection */
::selection {
    background: var(--primary-500);
    color: white;
}

/* ===== HEADER STYLES ===== */

.header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

/* Glowing border bottom effect */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    z-index: 1001;
}

.header-top {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    font-size: 0.9em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.company-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(199, 210, 254, 0.3);
}

.gst-number {
    font-size: 0.75rem;
    color: var(--primary-100);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.contact-header {
    display: flex;
    align-items: center;
}

.call-now {
    background: var(--gradient-accent);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: fit-content;
}

.call-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-150%) skewX(-20deg);
    transition: transform 0s;
}

.call-now:hover::before {
    animation: shimmer 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.call-now a {
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== NAVIGATION ===== */

.navbar {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
    border-radius: 10px;
    border: none;
    transition: all var(--transition-normal);
    box-shadow: none;
    object-fit: contain;
    background: transparent;
}

.logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu a {
    color: var(--primary-100);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.search-box input {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: white;
    width: 140px;
    font-size: 0.9rem;
    transition: width var(--transition-normal);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box input:focus {
    outline: none;
    width: 220px;
}

.search-box button {
    padding: 10px 18px;
    background: var(--primary-500);
    border: none;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box button:hover {
    background: var(--primary-400);
}

/* ===== CONTAINER ===== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}

/* ===== BANNER / HERO ===== */

.banner {
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    overflow: hidden;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract shapes removed for video background */
.banner::before,
.banner::after {
    display: none;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    /* Dark blue overlay */
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.banner p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--primary-100);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== HERO SECTION ===== */

.hero {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

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

.hero-text {
    animation: fadeIn 0.8s ease forwards;
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-900);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    background: var(--gradient-primary-vivid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-2xl);
    z-index: 0;
    transform: rotate(-3deg);
}

.hero-image img {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-image img:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.2);
}

/* ===== SECTION TITLE ===== */

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-900);
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 16px auto 0;
    box-shadow: var(--glow-primary);
}

/* ===== FEATURES SECTION ===== */

.features {
    padding: 100px 0;
    background: var(--gradient-subtle-warm);
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-200);
    background: white;
}

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

.feature-card i {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform var(--transition-bounce);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(99, 102, 241, 0.2));
}

.feature-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-900);
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== PRODUCTS SECTION ===== */

.products {
    padding: 100px 0;
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-200);
}

.product-card>a {
    overflow: hidden;
    display: block;
    position: relative;
}

/* Image overlay effect */
.product-card>a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover>a::after {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.1);
}

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

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
}

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

.product-info h4 a:hover {
    color: var(--primary-600);
}

.product-info .moq {
    font-size: 0.85rem;
    color: var(--primary-500);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: var(--primary-50);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.product-info p:not(.moq) {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card .btn-outline {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.btn i {
    font-size: 0.95em;
    line-height: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-150%) skewX(-20deg);
    transition: transform 0s;
}

.btn:hover::before {
    animation: shimmer 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-100);
    color: var(--primary-600);
    box-shadow: none;
    padding: 12px 28px;
}

.btn-outline:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
    color: var(--primary-700);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-accent);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

/* ===== SIDEBAR & WIDGETS ===== */

.sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 28px;
    border: 1px solid var(--gray-100);
}

.sidebar-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.sidebar-content {
    padding: 24px;
}

.contact-info img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid var(--primary-100);
    padding: 3px;
    background: white;
}

.sidebar-links a {
    display: block;
    padding: 14px 16px;
    color: var(--gray-600);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    margin-bottom: 4px;
}

.sidebar-links a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
    padding-left: 24px;
}

/* ===== PAGE LAYOUT ===== */

.page-layout {
    display: block;
    padding: 60px 0;
    min-height: 80vh;
}

.main-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* ===== PROFILE SECTION ===== */

.profile-section {
    margin-bottom: 50px;
}

.profile-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-900);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
    font-weight: 700;
    position: relative;
}

.profile-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
}

.profile-section p {
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.key-facts {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--gray-200);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.key-facts table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.key-facts td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.key-facts tr:last-child td {
    border-bottom: none;
}

.key-facts tr:hover td {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.key-facts td:first-child {
    font-weight: 600;
    color: var(--primary-800);
    width: 35%;
}

/* ===== PRODUCT DETAIL ===== */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    cursor: zoom-in;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnail-images {
    display: flex;
    gap: 12px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-bounce);
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--primary-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-details h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gray-900);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.price-box {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: 30px;
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.specifications h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-900);
    margin-bottom: 20px;
    font-weight: 700;
}

.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.spec-table tr:nth-child(odd) {
    background: var(--white);
}

.spec-table tr:nth-child(even) {
    background: var(--gray-50);
}

.spec-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
}

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

.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary-600);
    width: 40%;
}

/* ===== TRADE INFO ===== */

.trade-info {
    background: var(--primary-50);
    padding: 36px;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    border: 1px solid var(--primary-100);
    position: relative;
    overflow: hidden;
}

.trade-info::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary-100);
    border-radius: 50%;
    opacity: 0.5;
}

.trade-info h3 {
    color: var(--primary-900);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

/* ===== FAQ SECTION ===== */

.faq-section h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-900);
    margin-bottom: 30px;
    font-weight: 700;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.faq-item h4 {
    color: var(--primary-800);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-details {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-details h3 {
    font-family: var(--font-heading);
    color: var(--primary-900);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.contact-item:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
    background: white;
    transform: translateY(-4px);
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--primary-600);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-item h4 {
    color: var(--gray-900);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== CONTACT FORM ===== */

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-family: var(--font-heading);
    color: var(--primary-900);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */

.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 80px 0 60px;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f1f5f9;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-item div h5 {
    color: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-contact-item div p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer-contact-item div a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: inline;
    padding: 0;
}

.footer-contact-item div a:hover {
    color: #818cf8;
    padding-left: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}

/* Old footer classes - kept for compatibility */
.footer::before {
    display: none;
}

.footer-content {
    display: none;
}

.footer-section {
    display: none;
}

/* ===== BREADCRUMB ===== */

.breadcrumb {
    padding: 20px 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-800);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray-400);
    margin: 0 12px;
}

/* ===== MODAL ===== */

.inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.inquiry-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-2xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-400);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    background: var(--gray-50);
}

.close-modal:hover {
    background: var(--error);
    color: white;
    transform: rotate(90deg);
}

/* ===== UTILITY CLASSES ===== */

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}

/* Focus states */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-400);
    outline-offset: 4px;
}

/* ===== SCROLL TO TOP BUTTON ===== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-bounce);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    body {
        padding-top: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .banner h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .container {
        padding: 0 20px;
    }

    .header-top {
        display: none;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        height: 42px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        width: 100%;
        padding: 8px;
        order: 3;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-lg);
    }

    .nav-menu li {
        flex: 0 0 auto;
    }

    .nav-menu a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .nav-dropdown .about-dropdown {
        position: fixed;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
    }

    .logo {
        flex: 1;
    }

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

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-detail,
    .contact-section {
        grid-template-columns: 1fr;
    }

    /* Banner/Hero mobile fixes */
    .banner {
        padding: 80px 0 60px;
        min-height: 70vh;
    }

    .banner h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .banner p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .banner .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .main-content {
        padding: 30px 20px;
        margin: 0;
        border-radius: var(--radius-lg);
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    /* Contact section mobile */
    .contact-glimpse .container > div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .contact-glimpse .container > div > div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Story section mobile */
    .story-section .story-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Material availability grid */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Feature cards mobile */
    .feature-card {
        padding: 24px 20px;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Product cards mobile */
    .product-card {
        margin-bottom: 0;
    }

    .product-card img {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h4 {
        font-size: 1rem;
    }

    /* Why choose us section */
    .why-choose-grid {
        grid-template-columns: 1fr !important;
    }

    /* Page layout mobile */
    .page-layout {
        grid-template-columns: 1fr !important;
    }

    .sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }

    .container {
        padding: 0 14px;
    }

    .navbar {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 14px;
        gap: 8px;
    }

    .logo img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-menu {
        padding: 6px;
        gap: 2px;
    }

    .nav-menu a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .main-content {
        padding: 20px 14px;
    }

    /* Banner mobile small */
    .banner {
        min-height: 60vh;
        padding: 60px 0 50px;
    }

    .banner h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .banner p {
        font-size: 0.9rem;
    }

    .banner .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }

    .section-title::after {
        width: 40px;
        margin-top: 12px;
    }

    /* Product card small mobile */
    .product-card img {
        height: 200px;
    }

    .product-info {
        padding: 14px;
    }

    .product-info h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .product-info .moq {
        font-size: 0.8rem;
    }

    .product-info p {
        font-size: 0.8rem !important;
    }

    .product-info .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Feature cards small */
    .feature-card {
        padding: 24px 18px;
    }

    /* Contact form mobile */
    .contact-glimpse form input,
    .contact-glimpse form select,
    .contact-glimpse form textarea {
        padding: 12px 14px !important;
        font-size: 0.95rem !important;
    }

    .contact-glimpse form div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Contact cards */
    .contact-card {
        padding: 18px !important;
    }

    /* Map container */
    .contact-glimpse iframe {
        min-height: 220px !important;
    }

    /* Buttons general */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-outline {
        padding: 10px 18px;
    }

    /* Tables mobile */
    table {
        font-size: 0.85rem;
    }

    table td,
    table th {
        padding: 10px 8px;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding: 12px 0;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo img {
        height: 34px;
    }

    .nav-menu a {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .banner h1 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* ===== LINKS ===== */
a {
    transition: color var(--transition-fast);
}