/* ==========================================================================
   JMD Trading Co. - Premium Professional Website
   Clean White Theme
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */

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

:root {
    /* Primary Colors - Swastik Orange Theme */
    --primary-gradient: linear-gradient(135deg, #f03d21 0%, #f67c1e 50%, #f8961e 100%);
    --primary-color: #f03d21;
    --primary-light: #f67c1e;
    --primary-dark: #c9301a;
    
    /* White/Light Theme Base */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --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;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    /* Accent Colors */
    --accent-orange: #f67c1e;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Card Styles */
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgba(240, 61, 33, 0.1), 0 2px 4px -2px rgba(240, 61, 33, 0.1);
    --card-shadow-hover: 0 20px 25px -5px rgba(240, 61, 33, 0.15), 0 8px 10px -6px rgba(240, 61, 33, 0.1);
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 40px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

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

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 100px;
    height: auto;
    margin-bottom: 2rem;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.preloader-spinner div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: preloaderBounce 1.4s ease-in-out infinite both;
}

.preloader-spinner .bounce1 {
    animation-delay: -0.32s;
}

.preloader-spinner .bounce2 {
    animation-delay: -0.16s;
}

@keyframes preloaderBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ==========================================================================
   PREMIUM NAVBAR - Beautiful & Fully Responsive
   ========================================================================== */

.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.3s ease;
}

.premium-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.premium-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.nav-logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(240, 61, 33, 0.08);
}

.nav-link.active {
    font-weight: 600;
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: var(--primary-color);
    background: rgba(240, 61, 33, 0.08);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    color: var(--primary-color);
}

/* Phone Contact */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: rgba(240, 61, 33, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
}

.nav-phone i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.nav-phone:hover i {
    color: #ffffff;
}

.nav-phone-text {
    display: flex;
    flex-direction: column;
}

.nav-phone-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-phone-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-phone:hover .nav-phone-number {
    color: #ffffff;
}

/* CTA Button */
.nav-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.3);
    transition: all 0.3s ease;
}

.nav-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.4);
    color: #ffffff;
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    border-color: var(--primary-color);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.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(6px, -6px);
}

/* Mobile Menu */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s ease;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-mobile-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 100px 24px 40px;
    gap: 8px;
}

.nav-mobile-link {
    display: block;
    padding: 16px 32px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    color: var(--primary-color);
    background: rgba(240, 61, 33, 0.08);
}

.nav-mobile-cta {
    margin-top: 20px;
    padding: 16px 40px !important;
    font-size: 1rem !important;
}

/* Desktop View - Large Screens */
@media (min-width: 1200px) {
    .nav-phone {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* Tablet View */
@media (max-width: 1199px) {
    .nav-main {
        display: none;
    }
    
    .nav-phone {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .premium-navbar .container {
        height: 65px;
        padding: 0 16px;
    }
    
    .nav-logo img {
        height: 42px;
    }
    
    .nav-logo-title {
        font-size: 1.1rem;
    }
    
    .nav-logo-subtitle {
        font-size: 0.65rem;
    }
    
    .nav-toggle {
        width: 38px;
        height: 38px;
    }
    
    .nav-toggle span {
        width: 18px;
    }
    
    .nav-mobile-link {
        font-size: 1.1rem;
        padding: 14px 28px;
    }
}

/* ==========================================================================
   LEGACY NAVBAR STYLES (Backward Compatibility)
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

/* Navbar Contact */
.navbar-contact {
    display: none;
}

.navbar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-contact a:hover {
    background: #2563eb;
    color: #ffffff;
}

.navbar-contact i {
    font-size: 0.85rem;
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

/* Nav CTA Button */
.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-cta .btn:hover {
    background: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Navbar Social */
.navbar-social {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    gap: 10px;
    justify-content: center;
}

.navbar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.3s ease;
}

.navbar-social a:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hamburger Menu Button */
.navbar-toggler {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop View */
@media (min-width: 993px) {
    .navbar-contact {
        display: block;
    }
    
    .navbar-social {
        display: none !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-menu {
        display: flex !important;
    }
}

/* Tablet View */
@media (max-width: 992px) {
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 25px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    
    .nav-link {
        padding: 14px 18px;
        font-size: 1.05rem;
        background: #f8fafc;
    }
    
    .nav-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        margin-top: 10px;
    }
    
    .navbar-social {
        display: flex;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .navbar-menu {
        max-width: 100%;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-container {
        height: 60px;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

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

/* ==========================================================================
   PREMIUM HERO SECTION - Senior Developer Level
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    overflow: hidden;
}

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatShape 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.03) 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.04);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(30px, 10px) rotate(270deg) scale(0.95);
    }
}

/* Gradient Orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulseOrb 8s infinite ease-in-out;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes pulseOrb {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Hero Content */
.hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Text */
.hero-text {
    position: relative;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge i {
    font-size: 0.875rem;
}

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

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1e293b;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.hero-feature i {
    color: #22c55e;
    font-size: 0.875rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.hero-btn-outline {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.hero-btn-outline:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-image {
    position: relative;
    z-index: 5;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(37, 99, 235, 0.2));
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -2s;
}

.hero-floating-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-floating-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 12px;
    color: #2563eb;
    font-size: 1.25rem;
}

.hero-floating-text {
    display: flex;
    flex-direction: column;
}

.hero-floating-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.hero-floating-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .hero-stat {
        flex: 1 1 calc(50% - 12px);
        text-align: center;
    }
}

/* ==========================================================================
   CREATIVE USER AVATAR SECTION - Premium Hero Enhancement
   ========================================================================== */

.hero-user-section {
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

/* Avatar Group */
.hero-avatars {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Avatar Stack */
.hero-avatar-stack {
    display: flex;
    align-items: center;
}

/* Individual Avatar */
.hero-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: -12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Badge */
.hero-avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

/* Avatar More */
.hero-avatar-more {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
}

/* User Text */
.hero-user-text {
    display: flex;
    flex-direction: column;
}

.hero-user-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.hero-user-count {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.hero-user-count span {
    color: #2563eb;
}

/* Rating Stars */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.hero-rating i {
    color: #f59e0b;
    font-size: 0.75rem;
}

.hero-rating-text {
    font-size: 0.75rem;
    color: #64748b;
    margin-left: 6px;
}

/* Responsive Avatar Section */
@media (max-width: 992px) {
    .hero-user-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-avatars {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
        margin-left: -8px;
    }
    
    .hero-user-label {
        font-size: 0.7rem;
    }
    
    .hero-user-count {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

/* ==========================================================================
   PREMIUM ABOUT SECTION - Senior Developer Level
   ========================================================================== */

.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* About Section Background Shapes */
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAbout 15s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAbout 12s ease-in-out infinite reverse;
}

@keyframes floatAbout {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.05);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating Badge on Image */
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: floatCard 5s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.about-image-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.25rem;
}

.about-image-badge-text {
    display: flex;
    flex-direction: column;
}

.about-image-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}

.about-image-badge-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

.about-content {
    position: relative;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.about-text {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.about-feature i {
    color: #22c55e;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.about-feature span {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.about-stat {
    text-align: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Mission & Vision Cards */
.mission-vision-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-vision-card {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    border-color: transparent;
}

.mission-vision-card .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.mission-vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-vision-card .card-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.mission-vision-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.mission-vision-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* Timeline */
.timeline-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.timeline-section .section-title {
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    opacity: 0;
    animation: fadeInTimeline 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

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

.timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 3rem;
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #2563eb;
    border-radius: 50%;
    top: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: #2563eb;
    transform: scale(1.3);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-content {
    padding: 1.75rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.timeline-content h5 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive About */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-image-wrapper {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .about-image {
        max-width: 300px;
    }
    
    .about-image-badge {
        bottom: -15px;
        right: 10%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-feature {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }
    
    .timeline-item::before {
        left: 12px !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .about-stat {
        padding: 1rem 0.75rem;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   ENHANCED ABOUT SECTION - Professional & Beautiful
   ========================================================================== */

/* About Hero Banner */
.about-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.08) 0%, rgba(246, 124, 30, 0.05) 50%, rgba(240, 61, 33, 0.08) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 61, 33, 0.1);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 61, 33, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(246, 124, 30, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* About Story Section */
.about-story-section {
    margin-bottom: 3.5rem;
    position: relative;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(240, 61, 33, 0.2) 50%, transparent 100%);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-story-image {
    position: relative;
    animation: fadeInLeft 1s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-story-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-image:hover img {
    transform: scale(1.02) translateY(-10px);
}

.about-story-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(240, 61, 33, 0.4);
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-story-badge i {
    font-size: 1.75rem;
}

.about-story-badge span {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.about-story-content {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-story-content .section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.1) 0%, rgba(246, 124, 30, 0.1) 100%);
    color: #f03d21;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-story-content .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.75rem;
    line-height: 1.3;
}

.about-story-content .about-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-story-features {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.story-feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f03d21 0%, #f67c1e 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.story-feature:hover::before {
    transform: scaleY(1);
}

.story-feature:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(240, 61, 33, 0.15);
    border-color: #f03d21;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(240, 61, 33, 0.3);
    transition: transform 0.3s ease;
}

.story-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.why-choose-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.03) 0%, rgba(246, 124, 30, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover::after {
    opacity: 1;
}

.why-choose-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(240, 61, 33, 0.2);
    border-color: transparent;
}

.why-choose-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.1) 0%, rgba(246, 124, 30, 0.1) 100%);
    border-radius: 24px;
    margin: 0 auto 1.5rem;
    color: #f03d21;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(240, 61, 33, 0.4);
}

.why-choose-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.why-choose-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About Stats Section (Enhanced) */
.about-stats-section {
    margin-bottom: 3.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-stat-card {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.08) 0%, rgba(246, 124, 30, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-stat-card:hover::before {
    opacity: 1;
}

.about-stat-card:hover::after {
    transform: scaleX(1);
}

.about-stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(240, 61, 33, 0.2);
    border-color: #f03d21;
}

.about-stat-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 20px;
    margin: 0 auto 1.25rem;
    color: #ffffff;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(240, 61, 33, 0.3);
    transition: transform 0.4s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #f03d21;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.about-stat-context {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    color: rgba(240, 61, 33, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
    color: rgba(240, 61, 33, 0.2);
    transform: scale(1.1);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(240, 61, 33, 0.15);
    border-color: #f03d21;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 1.75rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(240, 61, 33, 0.3);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* About CTA Section */
.about-cta-section {
    margin-top: 3.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(240, 61, 33, 0.3);
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: ctaGlow 10s ease-in-out infinite;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: ctaGlow 12s ease-in-out infinite reverse;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 40px) scale(1.1); }
}

.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.about-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.about-cta-buttons .btn-primary {
    background: #ffffff;
    color: #f03d21;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta-buttons .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-cta-buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.about-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Staggered Animation Delays */
.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }
.why-choose-card:nth-child(4) { animation-delay: 0.4s; }
.why-choose-card:nth-child(5) { animation-delay: 0.5s; }
.why-choose-card:nth-child(6) { animation-delay: 0.6s; }

.about-stat-card:nth-child(1) { animation-delay: 0.1s; }
.about-stat-card:nth-child(2) { animation-delay: 0.2s; }
.about-stat-card:nth-child(3) { animation-delay: 0.3s; }
.about-stat-card:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.mission-vision-card:nth-child(1) { animation-delay: 0.1s; }
.mission-vision-card:nth-child(2) { animation-delay: 0.2s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

/* Responsive Styles for Enhanced About Section */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-story-grid {
        gap: 4rem;
    }
    
    .why-choose-grid {
        gap: 2rem;
    }
    
    .about-stats-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .about-hero {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }
    
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .about-story-section::before {
        display: none;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-image {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .about-story-image img {
        max-width: 400px;
    }
    
    .about-story-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
    
    .about-story-content .section-title {
        font-size: 2rem;
    }
    
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-cta-section {
        padding: 3.5rem 2rem;
    }
    
    .about-cta-content h2 {
        font-size: 2rem;
    }
    
    .about-cta-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero-tagline {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .about-story-section {
        margin-bottom: 4rem;
    }
    
    .about-story-image img {
        max-width: 350px;
    }
    
    .about-story-badge {
        padding: 16px 20px;
    }
    
    .about-story-badge i {
        font-size: 1.5rem;
    }
    
    .about-story-badge span {
        font-size: 0.9rem;
    }
    
    .about-story-content .section-title {
        font-size: 1.75rem;
    }
    
    .about-story-content .about-text {
        font-size: 1rem;
    }
    
    .story-feature {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .why-choose-card {
        padding: 2rem;
    }
    
    .why-choose-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .why-choose-card h3 {
        font-size: 1.15rem;
    }
    
    .why-choose-card p {
        font-size: 0.9rem;
    }
    
    .about-stat-card {
        padding: 2rem;
    }
    
    .about-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .about-cta-section {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    
    .about-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .about-cta-content p {
        font-size: 1rem;
    }
    
    .about-cta-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .about-story-grid {
        gap: 2rem;
    }
    
    .about-story-image img {
        max-width: 300px;
    }
    
    .about-story-content .section-title {
        font-size: 1.5rem;
    }
    
    .why-choose-section {
        padding: 2rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .why-choose-card {
        padding: 1.75rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-stat-card {
        padding: 1.75rem;
    }
    
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .about-cta-section {
        padding: 2.5rem 1rem;
    }
    
    .about-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .about-cta-content p {
        font-size: 0.95rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 400px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero-tagline {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .about-story-image img {
        max-width: 250px;
    }
    
    .about-story-badge {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .about-story-badge i {
        font-size: 1.25rem;
    }
    
    .about-story-badge span {
        font-size: 0.8rem;
    }
    
    .story-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

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

.products {
    background: var(--off-white);
}

.products-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.products-header .section-title {
    margin-bottom: 0.75rem;
}

.products-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards - Zig-Zag Layout */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.product-row:hover {
    box-shadow: var(--card-shadow-hover);
}

.product-row-left {
    grid-template-columns: 1fr 1fr;
}

.product-row-right {
    grid-template-columns: 1fr 1fr;
}

.product-row-right .product-image-wrapper {
    order: 2;
}

.product-row-right .product-content-wrapper {
    order: 1;
}

.product-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-row:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-badge.popular {
    background: linear-gradient(135deg, #f03d21, #ff6b5b);
    color: var(--white);
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: var(--white);
}

.product-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: var(--white);
}

.product-badge.sale {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: var(--white);
}

.product-badge i {
    font-size: 0.875rem;
}

.product-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-content-wrapper .product-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-flex;
    width: fit-content;
}

.product-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.product-content-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.product-content-wrapper > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.product-short-desc {
    font-size: 1rem !important;
    color: var(--text-muted) !important;
}

.product-specs,
.product-applications {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
}

.product-specs h5,
.product-applications h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs h5 i,
.product-applications h5 i {
    font-size: 0.875rem;
}

.product-specs ul,
.product-applications ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-specs li,
.product-applications li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-specs li::before,
.product-applications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-features span i {
    color: #10b981;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    width: fit-content;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.3);
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.4);
}

.product-content {
    padding: 1.5rem;
}

.product-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.product-icon i {
    font-size: 1.125rem;
    color: var(--primary-color);
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.feature-tag {
    padding: 0.25rem 0.625rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.product-btn {
    width: 100%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.product-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ==========================================================================
   ENHANCED PRODUCTS SECTION - Professional & Creative
   ========================================================================== */

/* Products Hero Banner */
.products-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.08) 0%, rgba(246, 124, 30, 0.05) 50%, rgba(240, 61, 33, 0.08) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 61, 33, 0.1);
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 61, 33, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.products-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(246, 124, 30, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.products-hero-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.products-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.product-badge.popular {
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.product-badge.featured {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

.product-badge.sale {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

.product-badge i {
    font-size: 0.875rem;
}

/* Product Button */
.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.4);
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(5px);
}

/* Products CTA */
.products-cta {
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 61, 33, 0.3);
}

.products-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: ctaGlow 10s ease-in-out infinite;
}

.products-cta-content {
    position: relative;
    z-index: 2;
}

.products-cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.products-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.products-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.products-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border-style: solid;
    border-width: 3px;
}

.products-cta-buttons .btn i {
    font-size: 1.125rem;
}

.products-cta-buttons .btn span {
    font-size: 1rem;
}

.products-cta-buttons .btn-primary {
    background: #ffffff !important;
    color: #f03d21 !important;
    border-color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.products-cta-buttons .btn-primary:hover {
    background: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.products-cta-buttons .btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.products-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Staggered Animation Delays for Products */
.product-row:nth-child(1) { animation-delay: 0.1s; }
.product-row:nth-child(2) { animation-delay: 0.2s; }
.product-row:nth-child(3) { animation-delay: 0.3s; }
.product-row:nth-child(4) { animation-delay: 0.4s; }
.product-row:nth-child(5) { animation-delay: 0.5s; }
.product-row:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Responsive Products */
@media (max-width: 1200px) {
    .products-hero {
        flex-direction: column;
        text-align: center;
    }

    .products-hero-subtitle {
        margin: 0 auto;
    }

    .products-hero-stats {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .products-hero-title {
        font-size: 2rem;
    }

    .products-hero-subtitle {
        font-size: 1rem;
    }

    .product-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-row-left,
    .product-row-right {
        grid-template-columns: 1fr;
    }

    .product-row-right .product-image-wrapper {
        order: 0;
    }

    .product-row-right .product-content-wrapper {
        order: 0;
    }

    .product-image-wrapper img {
        height: 300px;
    }

    .product-content-wrapper h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 2rem 1.5rem;
    }

    .products-hero-title {
        font-size: 1.75rem;
    }

    .products-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-item {
        min-width: auto;
        padding: 1rem;
    }

    .products-list {
        gap: 3rem;
    }

    .product-row {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .product-image-wrapper img {
        height: 250px;
    }

    .product-content-wrapper h3 {
        font-size: 1.5rem;
    }

    .product-content-wrapper > p {
        font-size: 1rem;
    }

    .product-features {
        gap: 0.75rem;
    }

    .product-features span {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }

    .product-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .product-specs,
    .product-applications {
        padding: 0.75rem;
    }
    
    .product-specs h5,
    .product-applications h5 {
        font-size: 0.8125rem;
    }
    
    .product-specs li,
    .product-applications li {
        font-size: 0.875rem;
        padding-left: 1rem;
    }

    .products-cta {
        padding: 2rem 1.5rem;
    }

    .products-cta-content h3 {
        font-size: 1.5rem;
    }

    .products-cta-content p {
        font-size: 1rem;
    }

    .products-cta-buttons {
        flex-direction: column;
    }

    .products-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .products-hero-title {
        font-size: 1.5rem;
    }

    .products-hero-subtitle {
        font-size: 0.9375rem;
    }

    .product-row {
        padding: 1.25rem;
    }

    .product-image-wrapper img {
        height: 200px;
    }

    .product-content-wrapper h3 {
        font-size: 1.25rem;
    }

    .product-content-wrapper > p {
        font-size: 0.9375rem;
    }

    .product-features {
        flex-direction: column;
    }

    .product-btn {
        width: 100%;
        justify-content: center;
    }

    .products-cta {
        padding: 1.5rem 1rem;
    }

    .products-cta-content h3 {
        font-size: 1.25rem;
    }

    .products-cta-content p {
        font-size: 0.9375rem;
    }

    .products-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .products-cta-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

/* Services Section Base */
.services {
    background: var(--off-white);
    padding: var(--section-padding);
}

/* Services Hero Banner */
.services-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.08) 0%, rgba(246, 124, 30, 0.05) 50%, rgba(240, 61, 33, 0.08) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 61, 33, 0.1);
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 61, 33, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(246, 124, 30, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Statistics */
.services-stats {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 2rem;
    position: relative;
}

.services-stat-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f03d21, #ff6b5b);
    transition: width 0.3s ease;
}

.services-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.services-stat-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.services-stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.1), rgba(255, 107, 91, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f03d21;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.services-stat-content {
    display: flex;
    flex-direction: column;
}

.services-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.services-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

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

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f03d21, #ff6b5b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-icon-wrapper {
    position: relative;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.1), rgba(255, 107, 91, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f03d21;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #f03d21, #ff6b5b);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f03d21, #ff6b5b);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge-new {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.service-badge-featured {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

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

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.service-features li i {
    color: #10b981;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li i {
    transform: scale(1.2);
}

.service-card-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f03d21;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link span {
    position: relative;
}

.service-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f03d21;
    transition: width 0.3s ease;
}

.service-link:hover span::after {
    width: 100%;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Services CTA Section */
.services-cta {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.08) 0%, rgba(246, 124, 30, 0.05) 50%, rgba(240, 61, 33, 0.08) 100%);
    border-radius: 24px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 61, 33, 0.1);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 61, 33, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.services-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(246, 124, 30, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

.services-cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.services-cta-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.services-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.services-cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.services-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 500;
}

.services-cta-feature i {
    color: #f03d21;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.services-cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.3);
}

.services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.4);
}

.services-cta-btn-secondary {
    background: transparent;
    border-color: #f03d21;
    color: #f03d21;
    box-shadow: none;
}

.services-cta-btn-secondary:hover {
    background: rgba(240, 61, 33, 0.1);
    border-color: #f03d21;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.2);
}

/* Services Section Responsive */
@media (max-width: 1200px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-hero-cta {
        justify-content: center;
    }

    .services-hero-image {
        order: -1;
    }

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

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

@media (max-width: 992px) {
    .services-hero {
        padding: 2.5rem 1.5rem;
    }

    .services-hero-title {
        font-size: 2.25rem;
    }

    .services-hero-description {
        font-size: 1rem;
    }

    .services-hero-icon-wrapper {
        width: 220px;
        height: 220px;
    }

    .services-hero-main-icon {
        font-size: 6rem;
    }

    .services-hero-float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .services-stat-item {
        padding: 1.25rem;
    }

    .services-stat-number {
        font-size: 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

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

@media (max-width: 768px) {
    .services {
        padding: 2rem 0;
    }

    .services-hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .services-hero-title {
        font-size: 1.875rem;
    }

    .services-hero-tagline {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .services-hero-description {
        font-size: 0.9375rem;
    }

    .services-hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .services-hero-icon-wrapper {
        width: 180px;
        height: 180px;
    }

    .services-hero-main-icon {
        font-size: 5rem;
    }

    .services-hero-float-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .services-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .services-stat-item {
        padding: 1rem;
    }

    .services-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .services-stat-number {
        font-size: 1.375rem;
    }

    .services-stat-label {
        font-size: 0.8125rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .service-title {
        font-size: 1.125rem;
    }

    .service-description {
        font-size: 0.9375rem;
    }

    .service-features li {
        font-size: 0.875rem;
    }

    .services-cta {
        padding: 2.5rem 1.5rem;
    }

    .services-cta-title {
        font-size: 1.75rem;
    }

    .services-cta-description {
        font-size: 1rem;
    }

    .services-cta-features {
        gap: 1.5rem;
    }

    .services-cta-feature {
        font-size: 0.875rem;
    }

    .services-cta-buttons {
        flex-direction: column;
    }

    .services-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 1.5rem 0;
    }

    .services-hero {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }

    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-description {
        font-size: 0.875rem;
    }

    .services-hero-cta {
        flex-direction: column;
    }

    .services-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .services-hero-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .services-hero-main-icon {
        font-size: 4rem;
    }

    .services-hero-float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .services-stats {
        padding: 0 0.75rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .service-badge {
        position: static;
        margin-top: 0.5rem;
    }

    .service-features {
        gap: 0.5rem;
    }

    .services-cta {
        padding: 2rem 1rem;
    }

    .services-cta-title {
        font-size: 1.5rem;
    }

    .services-cta-description {
        font-size: 1rem;
    }

    .services-cta-features {
        gap: 1rem;
    }

    .services-cta-feature {
        font-size: 0.875rem;
    }

    .services-cta-buttons {
        flex-direction: column;
    }

    .services-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .services {
        padding: 1rem 0;
    }

    .services-hero {
        padding: 1.25rem 0.5rem;
        margin-bottom: 1rem;
    }

    .services-hero-tagline {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }

    .services-hero-title {
        font-size: 1.25rem;
    }

    .services-hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .services-hero-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .services-hero-main-icon {
        font-size: 3.5rem;
    }

    .services-hero-float-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .services-stats {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        gap: 0.75rem;
    }

    .services-stat-item {
        padding: 0.875rem;
    }

    .service-card {
        padding: 0.875rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.875rem;
    }

    .service-features li {
        font-size: 0.8125rem;
    }

    .services-cta {
        padding: 1.5rem 0.75rem;
    }

    .services-cta-title {
        font-size: 1.25rem;
    }

    .services-cta-description {
        font-size: 0.9375rem;
    }

    .services-cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-cta-feature {
        font-size: 0.8125rem;
    }
}

/* Services Section Animations */
.services .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.services-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.services-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================================================
   SUPPLIERS & DEALERS SECTION
   ========================================================================== */

/* Suppliers Section Base */
.suppliers {
    background: var(--off-white);
    padding: var(--section-padding);
}

/* Suppliers Hero Banner */
.suppliers-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.05) 50%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
}

.suppliers-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.suppliers-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

.suppliers-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.suppliers-hero-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.suppliers-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suppliers-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Suppliers Statistics */
.suppliers-stats {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
    position: relative;
}

.suppliers-stat-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.suppliers-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981, #34d399);
    transition: width 0.3s ease;
}

.suppliers-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.suppliers-stat-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.suppliers-stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.suppliers-stat-content {
    display: flex;
    flex-direction: column;
}

.suppliers-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.suppliers-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Suppliers Grid */
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
}

/* Supplier Card */
.supplier-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.supplier-logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.supplier-card:hover .supplier-logo-wrapper {
    border-color: #10b981;
    transform: scale(1.05);
}

.supplier-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--white);
    z-index: 2;
}

.supplier-badge-premium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.supplier-badge-verified {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.supplier-badge-new {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.supplier-badge-featured {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* Suppliers CTA Section */
.suppliers-cta {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.05) 50%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: 24px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
}

.suppliers-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.suppliers-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

.suppliers-cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.suppliers-cta-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.suppliers-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suppliers-cta-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.suppliers-cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.suppliers-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 500;
}

.suppliers-cta-feature i {
    color: #10b981;
}

.suppliers-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suppliers-cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.suppliers-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.suppliers-cta-btn-secondary {
    background: transparent;
    border-color: #10b981;
    color: #10b981;
    box-shadow: none;
}

.suppliers-cta-btn-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

/* Suppliers Section Responsive */
@media (max-width: 1200px) {
    .suppliers-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .suppliers-hero-cta {
        justify-content: center;
    }

    .suppliers-hero-image {
        order: -1;
    }

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

    .suppliers-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .suppliers-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .suppliers-cta-features {
        justify-content: center;
    }

    .suppliers-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .suppliers-hero {
        padding: 2.5rem 1.5rem;
    }

    .suppliers-hero-title {
        font-size: 2.25rem;
    }

    .suppliers-hero-description {
        font-size: 1rem;
    }

    .suppliers-hero-icon-wrapper {
        width: 220px;
        height: 220px;
    }

    .suppliers-hero-main-icon {
        font-size: 6rem;
    }

    .suppliers-hero-float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .suppliers-stat-item {
        padding: 1.25rem;
    }

    .suppliers-stat-number {
        font-size: 1.5rem;
    }

    .suppliers-grid {
        gap: 1.5rem;
    }

    .supplier-card {
        padding: 0.875rem;
    }

    .suppliers-cta {
        padding: 2.5rem 1.5rem;
    }

    .suppliers-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .suppliers {
        padding: 2rem 0;
    }

    .suppliers-hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .suppliers-hero-title {
        font-size: 1.875rem;
    }

    .suppliers-hero-tagline {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .suppliers-hero-description {
        font-size: 0.9375rem;
    }

    .suppliers-hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .suppliers-hero-icon-wrapper {
        width: 180px;
        height: 180px;
    }

    .suppliers-hero-main-icon {
        font-size: 5rem;
    }

    .suppliers-hero-float-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .suppliers-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .suppliers-stat-item {
        padding: 1rem;
    }

    .suppliers-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .suppliers-stat-number {
        font-size: 1.375rem;
    }

    .suppliers-stat-label {
        font-size: 0.8125rem;
    }

    .suppliers-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 1.25rem;
    }

    .supplier-card {
        padding: 0.75rem;
    }

    .suppliers-cta {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .suppliers-cta-title {
        font-size: 1.5rem;
    }

    .suppliers-cta-description {
        font-size: 1rem;
    }

    .suppliers-cta-features {
        gap: 1rem;
    }

    .suppliers-cta-feature {
        font-size: 0.875rem;
    }

    .suppliers-cta-buttons {
        flex-direction: column;
    }

    .suppliers-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .suppliers {
        padding: 1.5rem 0;
    }

    .suppliers-hero {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }

    .suppliers-hero-title {
        font-size: 1.5rem;
    }

    .suppliers-hero-description {
        font-size: 0.875rem;
    }

    .suppliers-hero-cta {
        flex-direction: column;
    }

    .suppliers-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .suppliers-hero-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .suppliers-hero-main-icon {
        font-size: 4rem;
    }

    .suppliers-hero-float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .suppliers-stats {
        padding: 0 0.75rem;
        margin-bottom: 1.5rem;
    }

    .suppliers-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 1rem;
    }

    .supplier-card {
        padding: 0.625rem;
    }

    .suppliers-cta {
        padding: 1.5rem 0.75rem;
        margin-top: 1.5rem;
    }

    .suppliers-cta-title {
        font-size: 1.25rem;
    }

    .suppliers-cta-description {
        font-size: 0.9375rem;
    }

    .suppliers-cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 400px) {
    .suppliers {
        padding: 1rem 0;
    }

    .suppliers-hero {
        padding: 1.25rem 0.5rem;
        margin-bottom: 1rem;
    }

    .suppliers-hero-tagline {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }

    .suppliers-hero-title {
        font-size: 1.25rem;
    }

    .suppliers-hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .suppliers-hero-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .suppliers-hero-main-icon {
        font-size: 3.5rem;
    }

    .suppliers-hero-float-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .suppliers-stats {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        gap: 0.75rem;
    }

    .suppliers-stat-item {
        padding: 0.875rem;
    }

    .suppliers-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.75rem;
    }

    .supplier-card {
        padding: 0.5rem;
    }

    .suppliers-cta {
        padding: 1.25rem 0.5rem;
        margin-top: 1rem;
    }

    .suppliers-cta-title {
        font-size: 1.125rem;
    }

    .suppliers-cta-description {
        font-size: 0.875rem;
    }

    .suppliers-cta-feature {
        font-size: 0.8125rem;
    }
}

/* Suppliers Section Animations */
.suppliers .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.suppliers .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.suppliers-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.suppliers-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.suppliers-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.suppliers-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.suppliers-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.suppliers-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.suppliers-grid .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.suppliers-grid .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.suppliers-grid .animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.suppliers-grid .animate-on-scroll:nth-child(10) { transition-delay: 0.5s; }
.suppliers-grid .animate-on-scroll:nth-child(11) { transition-delay: 0.55s; }
.suppliers-grid .animate-on-scroll:nth-child(12) { transition-delay: 0.6s; }
.suppliers-grid .animate-on-scroll:nth-child(13) { transition-delay: 0.65s; }
.suppliers-grid .animate-on-scroll:nth-child(14) { transition-delay: 0.7s; }
.suppliers-grid .animate-on-scroll:nth-child(15) { transition-delay: 0.75s; }
.suppliers-grid .animate-on-scroll:nth-child(16) { transition-delay: 0.8s; }
.suppliers-grid .animate-on-scroll:nth-child(17) { transition-delay: 0.85s; }
.suppliers-grid .animate-on-scroll:nth-child(18) { transition-delay: 0.9s; }
.suppliers-grid .animate-on-scroll:nth-child(19) { transition-delay: 0.95s; }
.suppliers-grid .animate-on-scroll:nth-child(20) { transition-delay: 1.0s; }
.suppliers-grid .animate-on-scroll:nth-child(21) { transition-delay: 1.05s; }
.suppliers-grid .animate-on-scroll:nth-child(22) { transition-delay: 1.1s; }
.suppliers-grid .animate-on-scroll:nth-child(23) { transition-delay: 1.15s; }
.suppliers-grid .animate-on-scroll:nth-child(24) { transition-delay: 1.2s; }
.suppliers-grid .animate-on-scroll:nth-child(25) { transition-delay: 1.25s; }
.suppliers-grid .animate-on-scroll:nth-child(26) { transition-delay: 1.3s; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

/* Contact Section Base */
.contact {
    background: var(--off-white);
    padding: 0;
}

/* Contact Hero Banner */
.contact-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.08) 0%, rgba(246, 124, 30, 0.05) 50%, rgba(240, 61, 33, 0.08) 100%);
    border-radius: 24px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 61, 33, 0.1);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 61, 33, 0.15) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(246, 124, 30, 0.1) 0%, transparent 60%);
    animation: heroGlow 15s ease-in-out infinite reverse;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-tagline {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-header {
    margin-bottom: 1rem;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #f03d21;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.1), rgba(255, 107, 91, 0.1));
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: #f03d21;
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #f03d21;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #d6331a;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f03d21, #ff6b5b);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 61, 33, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group label span {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #f03d21;
    box-shadow: 0 0 0 3px rgba(240, 61, 33, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 61, 33, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    padding-right: 2.5rem;
}

/* Map */
.map-wrapper {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    color: var(--white);
}

.map-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Contact Section Responsive */
@media (max-width: 1200px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-hero-cta {
        justify-content: center;
    }

    .contact-hero-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 2.5rem 1.5rem;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-hero-icon-wrapper {
        width: 220px;
        height: 220px;
    }

    .contact-hero-main-icon {
        font-size: 6rem;
    }

    .contact-hero-float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 2rem 0;
    }

    .contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero-title {
        font-size: 1.875rem;
    }

    .contact-hero-tagline {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .contact-hero-description {
        font-size: 0.9375rem;
    }

    .contact-hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .contact-hero-icon-wrapper {
        width: 180px;
        height: 180px;
    }

    .contact-hero-main-icon {
        font-size: 5rem;
    }

    .contact-hero-float-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

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

    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 1.5rem 0;
    }

    .contact-hero {
        padding: 1.5rem 0.75rem;
    }

    .contact-hero-title {
        font-size: 1.5rem;
    }

    .contact-hero-description {
        font-size: 0.875rem;
    }

    .contact-hero-cta {
        flex-direction: column;
    }

    .contact-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-hero-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .contact-hero-main-icon {
        font-size: 4rem;
    }

    .contact-hero-float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .contact-item {
        padding: 0.875rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 0.9375rem;
    }

    .contact-details p {
        font-size: 0.875rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-form-header h3 {
        font-size: 1.25rem;
    }

    .form-group label {
        font-size: 0.8125rem;
    }

    .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .map-header {
        padding: 1rem;
    }

    .map-header h3 {
        font-size: 1.125rem;
    }

    .map-header p {
        font-size: 0.875rem;
    }

    .map-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .contact {
        padding: 1rem 0;
    }

    .contact-hero {
        padding: 1.25rem 0.5rem;
    }

    .contact-hero-tagline {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }

    .contact-hero-title {
        font-size: 1.25rem;
    }

    .contact-hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .contact-hero-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .contact-hero-main-icon {
        font-size: 3.5rem;
    }

    .contact-hero-float-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .contact-item {
        padding: 0.75rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .map-wrapper {
        margin-top: 2rem;
    }

    .map-wrapper iframe {
        height: 200px;
    }
}

/* Contact Section Animations */
.contact .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.contact-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.map-wrapper .animate-on-scroll { transition-delay: 0.3s; }

/* ==========================================================================
   PREMIUM FOOTER - ENHANCED & UPGRADED
   ========================================================================== */

.premium-footer {
    background: linear-gradient(180deg, #0a0f1a 0%, #141b2d 50%, #0a0f1a 100%);
    padding: 6rem 0 0;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #f03d21 0%, #f67c1e 50%, #f03d21 100%);
    position: relative;
    overflow: hidden;
}

.footer-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Background Pattern with Particles */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(240, 61, 33, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 124, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 61, 33, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.premium-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

/* Footer About Section */
.footer-about {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.75rem;
}

.footer-logo {
    
    width: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(240, 61, 33, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.footer-logo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(240, 61, 33, 0.4);
}

.footer-logo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
    line-height: 1.8;
    position: relative;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scale(0);
    border-radius: 12px;
}

.social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(240, 61, 33, 0.5);
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Footer Section Header */
.footer-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(240, 61, 33, 0.2);
    position: relative;
}

.footer-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f03d21 0%, #f67c1e 100%);
    animation: lineExpand 3s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; }
    50% { width: 80px; }
}

.footer-section-header i {
    color: #f03d21;
    font-size: 1.25rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer-section-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Links */
.footer-links,
.footer-products {
    animation: fadeInUp 0.8s ease forwards 0.1s;
    opacity: 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-links-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f03d21 0%, #f67c1e 100%);
    transition: width 0.3s ease;
}

.footer-links-list li a:hover {
    color: #f03d21;
    padding-left: 10px;
    transform: translateX(5px);
}

.footer-links-list li a:hover::before {
    width: 100%;
}

.footer-links-list li a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #f03d21;
}

.footer-links-list li a:hover i {
    transform: translateX(5px) scale(1.2);
}

/* Footer Contact */
.footer-contact {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.footer-contact-info {
    margin-bottom: 2.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(240, 61, 33, 0.1);
    border-color: rgba(240, 61, 33, 0.3);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.2);
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.35);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(240, 61, 33, 0.5);
}

.contact-text {
    flex: 1;
}

.contact-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    color: #e2e8f0;
    font-size: 0.88rem;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #f03d21;
    text-shadow: 0 0 10px rgba(240, 61, 33, 0.5);
}

/* Footer Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(240, 61, 33, 0.15) 0%, rgba(246, 124, 30, 0.08) 100%);
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid rgba(240, 61, 33, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 61, 33, 0.1) 0%, transparent 60%);
    animation: newsletterGlow 8s ease-in-out infinite;
}

@keyframes newsletterGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

.footer-newsletter h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-newsletter p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0 0 1.15rem 0;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.88rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f03d21;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(240, 61, 33, 0.15), 0 4px 15px rgba(240, 61, 33, 0.2);
    transform: translateY(-2px);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    padding: 0;
    background: linear-gradient(135deg, #f03d21 0%, #f67c1e 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(240, 61, 33, 0.35);
}

.newsletter-form button:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(240, 61, 33, 0.5);
}

.newsletter-form button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.footer-developedby {
    flex: 1;
    text-align: center;
}

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

.footer-developedby a {
    color: #f03d21;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-developedby a:hover {
    color: #f67c1e;
    text-shadow: 0 0 10px rgba(240, 61, 33, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.75rem;
}

.footer-legal a {
    color: #64748b;
    font-size: 0.87rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f03d21;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #f03d21;
    text-shadow: 0 0 10px rgba(240, 61, 33, 0.5);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Scroll Animation Classes */
.premium-footer .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-footer .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 5rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about,
    .footer-links,
    .footer-products,
    .footer-contact {
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-developedby {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .premium-footer {
        padding: 4rem 0 0;
    }
    
    
    
    .footer-logo-badge {
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    .footer-description {
        font-size: 0.88rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-section-header h4 {
        font-size: 1.05rem;
    }
    
    .footer-links-list li a {
        font-size: 0.88rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-newsletter {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.125rem;
    box-shadow: var(--card-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    color: var(--white);
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale-up.animated {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   COUNTUP ANIMATION
   ========================================================================== */

.countup {
    opacity: 0;
}

.countup.animated {
    opacity: 1;
}

/* ==========================================================================
   PAGE TRANSITIONS
   ========================================================================== */

.page-transition {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-transition.loaded {
    opacity: 1;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 992px) {
    .hide-lg {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hide-md {
        display: none !important;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hide-sm {
        display: none !important;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    body {
        background: white;
        color: black;
    }
    
    .navbar,
    .back-to-top,
    .whatsapp-button,
    .preloader {
        display: none !important;
    }
}

/* ==========================================================================
   END OF STYLES
   ========================================================================== */
