/* ===== FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&family=Source+Sans+3:wght@400;600;700&display=swap');

/* ===== PREMIUM DESIGN SYSTEM ===== */
:root {
    /* Polycab Red & White Color Palette */
    --primary-accent: #E31E24;
    --primary-accent-light: #FF4C52;
    --primary-accent-dark: #B71C1C;
    --secondary-accent: #FFFFFF;
    --tertiary-accent: #F44336;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FAFBFC;
    --gray-100: #F4F6F8;
    --gray-200: #E5E8EB;
    --gray-300: #D1D6DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-muted: var(--gray-500);
    --text-light: var(--gray-400);
    --text-inverse: var(--white);
    
    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --bg-dark: var(--gray-900);
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    
    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Layout & Spacing */
    --border-radius-sm: 6px;
    --border-radius: 8px;
    --border-radius-md: 10px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 20px;
    --border-radius-full: 9999px;
    
    /* Smooth Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container & Layout */
    --max-width: 1280px;
    --max-width-sm: 640px;
    --max-width-md: 768px;
    --max-width-lg: 1024px;
    --max-width-xl: 1280px;
    --max-width-2xl: 1536px;
    
    /* Section Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 80px 0;
    --section-padding-xs: 60px 0;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    --font-size-7xl: 4.5rem;    /* 72px */
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'DM Sans', 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Montserrat', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Playfair Display', 'Montserrat', 'Lato', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero h1 {
    color: rgb(255, 0, 0);

}

h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    font-weight: 700; 
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem); 
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

p {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-feature-settings: "kern" 1, "liga" 1;
}

.section-subtitle {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* ===== COMPREHENSIVE TEXT STYLING FOR ALL PAGES ===== */

/* All paragraph elements across the website */
p,
.description,
.text-content,
.content-text,
.about-text p,
.overview-text p,
.company-text p,
.service-description,
.product-description,
.feature-description,
.testimonial-text,
.contact-text,
.form-description,
.card-text,
.section-text,
.intro-text,
.summary-text {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 1rem !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Specific card content */
.product-card p,
.feature-card p,
.testimonial-card p,
.category-content p,
.highlight-content p,
.value-card p,
.contact-details p,
.spec-card p,
.timeline-content p,
.overview-content p,
.service-card p,
.brand-card p,
.stats-card p,
.info-card p {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 1rem !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Lead text and important descriptions */
.lead-text,
.intro-paragraph,
.main-description,
.section-intro,
.page-intro {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 2rem !important;
    max-width: 700px !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* About page specific elements */
.about-preview p,
.company-overview p,
.timeline-item p,
.values-section p,
.mission-text,
.vision-text,
.history-text {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Products page specific elements */
.product-categories p,
.specifications p,
.product-info p,
.category-description,
.spec-description {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Contact page specific elements */
.contact-section p,
.contact-info p,
.contact-form p,
.address-text,
.phone-text,
.email-text {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Homepage specific sections */
.features-section p,
.testimonials p,
.stats-section p,
.cta-section p,
.brand-section p {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Footer text */
.footer p,
.footer-text,
.footer-description {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* List items */
li,
.product-features li,
.service-list li,
.feature-list li {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* Any remaining text elements */
.text,
.content,
.description-block,
.info-text,
.detail-text,
.summary,
.excerpt {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    min-height: 48px;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-300);
}

.btn-primary:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.2);
    border-color: var(--primary-accent);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: black;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* ===== PREMIUM NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--gray-300);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-menu {
    margin-left: auto;
    margin-right: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: none;
}

.logo-img {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo-text h2 {
    font-size: var(--font-size-2xl);
    margin: 0;
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text span {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.01em;
    font-family: 'DM Sans', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--gray-100);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-accent);
    border-radius: var(--border-radius-full);
    box-shadow: 0 0 0 2px var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-backgrounds/edisionbg.png') center/cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('../images/hero-backgrounds/edisionhomepage.jpeg') center/cover;
    animation: heroZoomInLarge 10s ease-in-out infinite;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heroZoomInLarge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: #fffb00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
    color: black !important;
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    margin-bottom: 2rem !important;
    line-height: 1.7 !important;
    max-width: 650px;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}
/* Universal hero subtitle styling - CENTERED */

.hero .hero-subtitle,
.about-hero .hero-subtitle,
.products-hero .hero-subtitle,
.contact-hero .hero-subtitle,
.hero-content .hero-subtitle,
.about-hero-content .hero-subtitle,
.products-hero-content .hero-subtitle,
.contact-hero-content .hero-subtitle {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    color: rgb(0, 0, 0) !important;
    margin-bottom: 2rem !important;
    line-height: 1.7 !important;
    max-width: 650px;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Hero visual removed - using background image instead */

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('../logo/coverimg.jpeg') center/cover;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('../logo/coverimg.jpeg') center/cover;
    animation: heroZoomIn 10s ease-in-out infinite;
    z-index: -2;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.about-hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-content .hero-subtitle {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.7 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

.company-overview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary-accent);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.highlight-content h4 {
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.timeline {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-accent);
    flex-shrink: 0;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-accent);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-accent);
    border-radius: 50%;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-accent);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e31e24" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-accent);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.mission-card h3::after,
.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
    border-radius: 2px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.energy-flow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes energyPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

/* Mission & Vision Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
    }
}

/* ===== PRODUCTS PAGE STYLES ===== */
.products-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('../Newimages/industrial.jpeg') center/cover;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('../Newimages/industrial.jpeg') center/cover;
    animation: heroZoomIn 10s ease-in-out infinite;
    z-index: -2;
}

.products-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.products-hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.products-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-hero-content .hero-subtitle {
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.7 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
    text-align: center !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
}

/* ===== SIMPLE PRODUCT TABS ===== */
.product-tabs {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--gray-200);
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.02em;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.tab-btn i {
    font-size: 16px;
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .tabs-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-tabs {
        padding: 30px 0;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .tab-btn i {
        font-size: 14px;
    }
}

/* ===== CLEAN PRODUCTS GRID ===== */
.products-grid-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    justify-items: center;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.products-grid .product-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    width: 100%;
    max-width: 320px;
    background: var(--white);
}

.products-grid .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.15);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image-container img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(227, 30, 36, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.product-badge {
    background: var(--primary-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
    text-shadow: none;
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.product-modal .modal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-accent);
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 1rem;
}

.modal-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-details h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.modal-badge {
    background: var(--primary-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.modal-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Product Info Grid in Modal */
.product-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 120px;
    flex-shrink: 0;
}

.info-item span {
    color: var(--text-secondary);
    text-align: right;
    flex: 1;
    margin-left: 1rem;
    word-break: break-word;
}

.modal-specs {
    margin-bottom: 2rem;
}

.modal-specs .spec {
    display: inline-block;
    background: var(--gray-100);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--gray-200);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    justify-content: center;
}

/* Product Info Grid in Modal */
.product-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 120px;
    flex-shrink: 0;
}

.info-item span {
    color: var(--text-secondary);
    text-align: right;
    flex: 1;
    margin-left: 1rem;
    word-break: break-word;
    font-size: 0.9rem;
}

/* Products Grid Specific Styles */
.products-grid .product-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0.5rem;
}

.products-grid .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.products-grid .product-item:hover .product-image-container img {
    transform: scale(1.05);
}

.products-grid .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(227, 30, 36, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.products-grid .product-item:hover .product-overlay {
    opacity: 1;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .product-modal .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .modal-image {
        height: 300px;
        padding: 0.5rem;
    }
    
    .modal-image img {
        border-radius: 6px;
    }
    
    .modal-details {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        flex: none;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .info-item strong {
        min-width: auto;
    }
    
    .info-item span {
        text-align: left;
        margin-left: 0;
    }
}

.product-info {
    padding: 0.75rem;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-info h3 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.product-info p,
.product-specs,
.product-actions {
    display: none;
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec {
    background: var(--gray-100);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--gray-200);
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    padding: 10px 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .products-grid .product-item {
        max-width: 100%;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .products-grid .product-item {
        max-width: 100%;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Loading and Animation States */
.product-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-grid .product-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.products-grid .product-item:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-item:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-item:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-item:nth-child(4) { animation-delay: 0.4s; }
.products-grid .product-item:nth-child(5) { animation-delay: 0.5s; }
.products-grid .product-item:nth-child(6) { animation-delay: 0.6s; }
.products-grid .product-item:nth-child(7) { animation-delay: 0.7s; }
.products-grid .product-item:nth-child(8) { animation-delay: 0.8s; }
.products-grid .product-item:nth-child(9) { animation-delay: 0.9s; }
.products-grid .product-item:nth-child(10) { animation-delay: 1.0s; }
.products-grid .product-item:nth-child(11) { animation-delay: 1.1s; }
.products-grid .product-item:nth-child(12) { animation-delay: 1.2s; }

/* Professional Enhancement */
.products-grid .product-title {
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.products-grid .product-badge {
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ===== FOOTER STYLES (REMOVED DUPLICATE) ===== */
/* Footer styles are defined later in the file under PREMIUM FOOTER section */

/* ===== MAIN CONTENT WRAPPER ===== */
main {
    flex: 1;
}

/* Ensure all sections before footer take up available space */
body > *:not(.footer):not(.floating-buttons):not(#preloader) {
    flex-shrink: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== PRODUCT CARD IMPROVEMENTS ===== */
.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== LOADING STATES ===== */
.product-card[style*="display: none"] {
    display: none !important;
}

.product-card[style*="display: block"] {
    display: block !important;
}


/* ===== IMAGE MODAL STYLES ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-accent);
    transform: scale(1.1);
}

#modalImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.modal-info {
    padding: 2rem;
    text-align: center;
}

.modal-info h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ===== MODAL ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== MODAL RESPONSIVE ===== */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    #modalImage {
        height: 300px;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 20px;
    }
    
    .modal-info p {
        font-size: 14px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-card:nth-child(1) .product-image {
    background-image: url('../images/flameretantantwire.jpeg');
}

.product-card:nth-child(2) .product-image {
    background-image: url('../images/whitewire.jpeg');
}

.product-card:nth-child(3) .product-image {
    background-image: url('../images/smalltobigcables.jpeg');
}

.product-card:nth-child(4) .product-image {
    background-image: url('../images/fuses.jpeg');
}

.product-content {
    padding: 1.5rem;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    font-size: 20px;
}

.product-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.product-btn {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-btn::after {
    content: '→';
    transition: var(--transition);
}

.product-btn:hover {
    color: var(--primary-accent-dark);
    transform: translateX(4px);
}

.product-btn:hover::after {
    transform: translateX(4px);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e31e24" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.about-text {
    padding: 2rem 0;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
    opacity: 0.8;
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text .btn {
    margin-top: 1rem;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image {
    width: 100%;
    height: 450px;
    background: url(../images/edisionabout.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.3) 0%, rgba(183, 28, 28, 0.2) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(227, 30, 36, 0.2);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

/* ===== PRODUCT HIGHLIGHTS SECTION ===== */
.product-highlights {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e31e24" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.product-highlights .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.product-highlights .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
    opacity: 0.7;
}

.product-highlights .section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.product-highlights .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
    justify-items: center;
    align-items: start;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-highlights .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 1px solid rgba(227, 30, 36, 0.08);
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.product-highlights .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--gray-300);
}

.product-highlights .product-image {
    width: 100%;
    height: 90%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    cursor: pointer;
}

.product-highlights .product-card:nth-child(1) .product-image {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=500&h=300&fit=crop&crop=center');
}

.product-highlights .product-card:nth-child(2) .product-image {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=500&h=300&fit=crop&crop=center');
}

.product-highlights .product-card:nth-child(3) .product-image {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=500&h=300&fit=crop&crop=center');
}

.product-highlights .product-card:nth-child(4) .product-image {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%), url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?w=500&h=300&fit=crop&crop=center');
}

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

.product-highlights .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-highlights .product-card:hover .product-image::before {
    opacity: 1;
}

.product-highlights .product-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    transition: all 0.4s ease;
    z-index: 3;
}

.product-highlights .product-card:hover .product-icon {
    transform: scale(1.1);
    background: var(--primary-accent-dark);
    color: white;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.product-highlights .product-content {
    padding: 1rem;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-highlights .product-content h3 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.product-highlights .product-card:hover .product-content h3 {
    color: var(--primary-accent);
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-300);
}

.product-btn:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.2);
    text-decoration: none;
    border-color: var(--primary-accent);
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-btn:hover::before {
    left: 100%;
}

.product-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

/* Product Highlights - New Image-Only Style */
.product-highlights .product-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.product-highlights .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.15);
}

.product-highlights .product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-highlights .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-highlights .product-item:hover .product-image-container img {
    transform: scale(1.05);
}

.product-highlights .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(227, 30, 36, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-highlights .product-item:hover .product-overlay {
    opacity: 1;
}

.product-highlights .product-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.product-highlights .product-badge {
    background: var(--primary-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
    text-shadow: none;
    font-family: 'DM Sans', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.section-footer .btn {
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
}

/* ===== ABOUT STRIP SECTION ===== */
.about-strip {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.about-strip .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-strip .about-text h3 {
    color: var(--primary-accent);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-strip .about-text p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.experience-badge {
    background: var(--gray-900);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-accent);
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.experience-badge .year {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.experience-badge .to {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0.5rem 0;
    display: block;
    font-weight: 500;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== PREMIUM STATISTICS ===== */
.stats-section {
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section p,
.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: var(--font-size-5xl);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    opacity: 1;
}

.stat-number {
    font-size: var(--font-size-6xl);
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-family: 'Source Sans 3', 'Lato', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-accent);
}

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

.feature-icon {
    width: 88px;
    height: 88px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-4xl);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-slow);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.4);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: var(--font-size-base);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.quote-icon {
    font-size: var(--font-size-4xl);
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating i {
    color: var(--tertiary-accent);
    font-size: var(--font-size-lg);
}

.customer-info strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.customer-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}


/* ===== CONTACT CTA ===== */
.contact-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== PREMIUM FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    clear: both;
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(255, 76, 96, 0.05) 100%);
    z-index: 1;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-info p a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info p a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

.contact-info p i {
    color: var(--primary-accent) !important;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-red);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-buttons a,
.floating-buttons button {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-btn {
    background: var(--gradient-secondary);
}

.back-to-top {
    background: var(--gradient-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-buttons a:hover,
.floating-buttons button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl);
    filter: brightness(1.1);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.wire-reel {
    width: 80px;
    height: 80px;
    border: 4px solid var(--bg-tertiary);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.6), 0 0 30px rgba(0, 122, 255, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.glow-animation {
    animation: glow 2s ease-in-out infinite alternate;
}

.bounce-animation {
    animation: bounce 1s;
}

/* Simple animations */
.product-card,
.feature-card,
.testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PREMIUM RESPONSIVE DESIGN ===== */
@media (max-width: 1280px) {
    .container {
        padding: 0 32px;
    }
    
    .section {
        padding: var(--section-padding-sm);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: var(--section-padding-xs);
    }
    
    h1 {
        font-size: clamp(var(--font-size-3xl), 8vw, var(--font-size-5xl));
    }
    
    h2 {
        font-size: clamp(var(--font-size-2xl), 6vw, var(--font-size-4xl));
    }
    
    .section-subtitle {
        margin-bottom: 3rem;
    }
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-buttons a,
    .floating-buttons button {
        width: 56px;
        height: 56px;
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        max-width: none;
        padding: 20px 24px;
    }
    
    .product-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .product-icon,
    .feature-icon {
        width: 72px;
        height: 72px;
        font-size: var(--font-size-3xl);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-buttons a,
    .floating-buttons button {
        width: 52px;
        height: 52px;
        font-size: var(--font-size-lg);
    }
    
    .nav-container {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        width: 100px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .logo-text h2 {
        font-size: var(--font-size-xl);
    }
    
    .logo-text span {
        font-size: var(--font-size-xs);
    }
}


/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('../logo/coverimg.png') center/cover;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('../logo/coverimg.png') center/cover;
    animation: heroZoomIn 10s ease-in-out infinite;
    z-index: -2;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.contact-hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero-content .hero-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.7 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
    text-align: center !important;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-accent);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-accent-dark);
    text-decoration: underline;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 2rem;
    position: relative;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: var(--bg-primary);
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    padding: 0 6px;
    margin-left: -6px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 13px;
    color: var(--primary-accent);
    font-weight: 600;
    transform: scale(0.95);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E31E24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group select option {
    padding: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.form-group select option[value=""] {
    display: none;
}

.form-group select + label {
    top: -8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    transform: scale(0.95);
}

.form-group select:focus + label {
    color: var(--primary-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.form-group textarea::placeholder {
    color: var(--gray-400);
    font-style: italic;
}

/* Form field icons */
.form-group::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.form-group:has(input[type="text"])::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3e%3c/path%3e%3ccircle cx='12' cy='7' r='4'%3e%3c/circle%3e%3c/svg%3e");
}

.form-group:has(input[type="email"])::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3e%3c/path%3e%3cpolyline points='22,6 12,13 2,6'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group:has(input[type="tel"])::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3e%3c/path%3e%3c/svg%3e");
}

.form-group:has(textarea)::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3e%3c/path%3e%3c/svg%3e");
    top: 30px;
    transform: none;
}

.form-group:focus-within::before {
    opacity: 0.8;
    filter: hue-rotate(340deg) saturate(1.5);
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.4);
    background: linear-gradient(135deg, var(--primary-accent-light) 0%, var(--primary-accent) 100%);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(2px);
}

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

.submit-btn.loading {
    pointer-events: none;
}

/* ===== FORM STATUS MESSAGES ===== */
.form-status {
    display: none;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    animation: fadeInDown 0.3s ease;
}

.form-status.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #c3e6cb;
}

.form-status.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-color: #f5c6cb;
}

.form-status.loading {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-color: #bee5eb;
    position: relative;
}

.form-status.loading::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #0c5460;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.form-status.loading {
    padding-left: 50px;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 8px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

/* Form Validation Styles */
.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not([value=""]),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group input:valid:not(:placeholder-shown) + label,
.form-group select:valid:not([value=""]) + label,
.form-group textarea:valid:not(:placeholder-shown) + label {
    color: #28a745;
}

/* Error message styling */
.form-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    display: none;
    animation: fadeInUp 0.3s ease;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Focus ring for accessibility */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.submit-btn:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* Loading state improvements */
.submit-btn.loading .btn-text {
    opacity: 0.7;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Form animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved form field focus effects */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(227, 30, 36, 0.02);
}

/* Better select dropdown styling */
.form-group select option:checked {
    background: var(--primary-accent);
    color: white;
}

/* WhatsApp Backup Link */
.whatsapp-backup-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-backup-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-1px);
}

/* Form Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* ===== MAP CONTAINER ===== */
.map-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
}

.map-container h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.map-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.directions-info {
    margin-top: 2rem;
}

.directions-info h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.directions-info ul {
    list-style: none;
    padding: 0;
}

.directions-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--gray-100);
}

.directions-info li:last-child {
    border-bottom: none;
}

.directions-info li i {
    color: var(--primary-accent);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ===== QUICK ACTIONS SECTION ===== */
.quick-actions {
    padding: 80px 0;
    background: var(--bg-primary);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(227, 30, 36, 0.1);
    text-align: center;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-accent);
    text-decoration: none;
    color: inherit;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-accent-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

.action-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.action-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-arrow {
    color: var(--primary-accent);
    font-size: 18px;
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    transform: translateX(5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE STYLES FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .overview-content,
    .contact-content,
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .form-group label {
        font-size: 15px;
        top: 16px;
        left: 18px;
    }
    
    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group select:focus + label,
    .form-group select:not([value=""]) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
        font-size: 12px;
        top: -6px;
    }
    
    .submit-btn {
        padding: 16px 28px;
        font-size: 16px;
        margin-top: 1.5rem;
        min-height: 52px;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container,
    .map-container {
        padding: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero,
    .products-hero,
    .contact-hero {
        min-height: 50vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        border-left: none;
        border-top: 3px solid var(--primary-accent);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .timeline-content::before {
        left: 50%;
        top: -8px;
        transform: translateX(-50%);
    }
}



/* ===== COMPREHENSIVE ALIGNMENT & CONSISTENCY FIXES ===== */

/* Fix section spacing consistency */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix contact page alignment issues */
.contact-content-grid {
    align-items: stretch;
}

.map-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-light) 100%);
}

.map-container h3 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.map-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.directions-info h4 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
    font-size: 18px;
    font-family: 'DM Sans', 'Montserrat', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.directions-info ul {
    list-style: none;
    padding: 0;
}

.directions-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.directions-info i {
    color: var(--primary-accent);
    width: 20px;
    text-align: center;
}

/* Fix quick actions alignment */
.quick-actions {
    padding: 80px 0;
    background: var(--bg-primary);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-accent);
    color: var(--text-primary);
    text-decoration: none;
}

.action-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.ac.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.action-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.action-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--primary-accent);
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Fix FAQ section alignment */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', 'Playfair Display', 'Lato', 'Montserrat', 'Inter Tight', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.faq-question i {
    color: var(--primary-accent);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-family: 'Source Sans 3', 'Lato', 'Inter Tight', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive fixes for contact page */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 100%;
    }
    
    .map-container {
        width: 100%;
        max-width: 100%;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .contact-form-container,
    .map-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-strip .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-strip .about-text h3 {
        font-size: 2rem;
    }
    
    .experience-badge .year {
        font-size: 2rem;
    }
    
    .product-highlights .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-highlights .product-card {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        width: 100% !important;
        max-width: 300px;
        height: 300px !important;
        margin: 0 auto;
    }
    
    .product-highlights .section-title {
        font-size: 2.5rem;
    }
    
    .product-highlights .product-content {
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-image {
        height: 350px;
    }
    
    .product-highlights .product-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

/* ===== BUTTON LOADING STATES & ENHANCEMENTS ===== */
.btn.loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== FLOATING BUTTONS IMPROVEMENTS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-buttons a,
.floating-buttons button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: var(--primary-accent);
    color: white;
}

.call-btn:hover {
    background: var(--primary-accent-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.back-to-top {
    background: var(--gray-800);
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.back-to-top:hover {
    background: var(--gray-900);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE NAVIGATION IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .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(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 18px;
        padding: 15px 30px;
        border-radius: 8px;
        width: 200px;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-buttons a,
    .floating-buttons button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS FIXES ===== */

/* Premium Products Section Mobile Fix */
@media (max-width: 768px) {
    /* Premium Products Grid - Critical Fix */
    .product-highlights .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
        justify-items: center !important;
    }
    
    .product-highlights .product-item {
        max-width: 300px !important;
        width: 100% !important;
    }
    
    .product-highlights .product-item {
        aspect-ratio: 1 !important;
        min-height: 250px !important;
        border-radius: 12px !important;
    }
    
    .product-highlights .product-overlay {
        padding: 1rem !important;
    }
    
    .product-highlights .product-title {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .product-highlights .product-badge {
        font-size: 0.7rem !important;
        padding: 3px 8px !important;
    }
    
    /* Hero Section Mobile Fixes */
    .hero {
        background-attachment: scroll !important;
        min-height: 70vh !important;
        padding-top: 100px !important;
    }
    
    .about-hero,
    .products-hero,
    .contact-hero {
        background-attachment: scroll !important;
        min-height: 50vh !important;
        padding-top: 100px !important;
    }
    
    .hero-content,
    .about-hero-content,
    .products-hero-content,
    .contact-hero-content {
        padding: 0 10px !important;
    }
    
    .hero-subtitle {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 600px !important;
        padding: 0 20px !important;
    }
    
    /* Navigation Mobile Fix */
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 2rem !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* About Page Mobile */
    .about-content,
    .overview-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .timeline-year {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .timeline-content {
        padding-left: 0 !important;
        border-left: none !important;
        border-top: 3px solid var(--primary-accent) !important;
        padding-top: 1rem !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Products Page Mobile */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    /* Contact Page Mobile */
    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
}

@media (max-width: 480px) {
    /* Premium Products Section - Ultra Mobile Fix */
    .product-highlights .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .product-highlights .product-item {
        aspect-ratio: 1.2 !important;
        min-height: 200px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .product-highlights .product-title {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-highlights .product-badge {
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }
    
    /* Hero Mobile Ultra */
    .hero {
        min-height: 60vh !important;
        padding-top: 80px !important;
    }
    
    .about-hero,
    .products-hero,
    .contact-hero {
        min-height: 45vh !important;
        padding-top: 80px !important;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    /* Navigation Ultra Mobile */
    .nav-menu {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }
    
    .logo-img {
        width: 100px !important;
        height: 50px !important;
    }
    
    /* Stats Ultra Mobile */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .stat-item {
        padding: 1.5rem 1rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    
    /* Products Page Ultra Mobile */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .tabs-wrapper {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
    }
    
    .tab-btn {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
    }
    
    /* Contact Ultra Mobile */
    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .actions-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* About Ultra Mobile */
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .company-stats {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    .connecting-wire {
        display: none !important;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .container {
        padding: 0 12px !important;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem) !important;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
    }
    
    .product-highlights .products-grid {
        gap: 1rem !important;
    }
    
    .product-highlights .product-item {
        min-height: 180px !important;
    }
    
    .btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
        min-height: 40px !important;
    }
    
    .floating-buttons {
        right: 10px !important;
        bottom: 15px !important;
    }
    
    .whatsapp-btn,
    .call-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

/* ===== PRODUCT CATALOGUE TABLE STYLES ===== */

