/* 
========================================================================
   BEYOND LUXURY SOURCING - MAIN STYLESHEET
   Design Style: Luxury Corporate, Glassmorphism, Responsive Grid
   Primary: #0F4C81 | Secondary: #1E88E5 | Accent: #FFB300 | Dark: #111827
========================================================================
*/

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

/* ---------------------------------------------------------------------
   1. DESIGN SYSTEM VARIABLES
   --------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary: #0F4C81;
    --primary-light: #1664a7;
    --primary-dark: #0a3357;
    --secondary: #1E88E5;
    --secondary-glow: rgba(30, 136, 229, 0.15);
    
    /* Luxury Gold & Metallic Accents */
    --accent: #FFB300;
    --accent-hover: #e09d00;
    --gold-metallic: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    --gold-premium: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    
    --dark: #0b0f19;
    --dark-section: #111827;
    --dark-card: #1e293b;
    --light: #F8FAFC;
    --light-section: #f1f5f9;
    --white: #ffffff;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-white-muted: #cbd5e1;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 25px rgba(30, 136, 229, 0.3);
    --shadow-accent-glow: 0 0 20px rgba(255, 179, 0, 0.4);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glassmorphism Specs */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-dark: rgba(17, 24, 39, 0.75);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-dark: rgba(255, 255, 255, 0.05);
    --glass-blur: 16px;

    /* Layout Bounds */
    --max-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 40px;
}

/* ---------------------------------------------------------------------
   2. RESET & BASE STYLING
   --------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ---------------------------------------------------------------------
   3. UTILITIES & GLOBAL LAYOUTS
   --------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-light {
    background-color: var(--light);
}

.section-light-alt {
    background-color: var(--light-section);
}

.section-dark {
    background-color: var(--dark);
    color: var(--text-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-white);
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section-dark .section-desc {
    color: var(--text-white-muted);
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 76, 129, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
}

.btn-accent:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-glow);
}

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

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

/* ---------------------------------------------------------------------
   4. LAYOUT COMPONENTS
   --------------------------------------------------------------------- */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
    margin-bottom: 1.5rem;
}

.loader-logo {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.loader-logo span {
    color: var(--accent);
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    width: 0%;
    z-index: 1002;
    transition: width 0.1s ease-out;
}

/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    height: 70px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text-fallback {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.logo-text-fallback span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Navigation Drawer Mobile */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--dark-section);
    z-index: 999;
    padding: 7rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white-muted);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--white);
    padding-left: 0.5rem;
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Overlay dark layer when drawer opens */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------------------------------
   5. HERO SECTION (WITH AUTO SLIDING BACKGROUNDS)
   --------------------------------------------------------------------- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.94) 0%, rgba(15, 76, 129, 0.65) 50%, rgba(11, 15, 25, 0.95) 100%);
    z-index: 1;
}

.hero-bg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.2;
    background-image: radial-gradient(var(--secondary) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
    margin-top: 40px;
}

.hero-content {
    max-width: 720px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero-tagline i {
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--gold-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-white-muted);
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-badge-panel {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.hero-badge-card {
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 179, 0, 0.15);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.hero-badge-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero-badge-text {
    font-size: 0.85rem;
    color: var(--text-white-muted);
}

/* Floating Banner link to sections */
.hero-scroll-btn {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white-muted);
    cursor: pointer;
}

.hero-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-white-muted);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ---------------------------------------------------------------------
   6. ABOUT SECTION & WHY CHOOSE US
   --------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 76, 129, 0.4), transparent);
}

.about-floating-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 280px;
    z-index: 5;
}

.about-floating-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(15, 76, 129, 0.4);
    font-size: 1.5rem;
}

.about-floating-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
}

.about-floating-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.about-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content h3 span {
    color: var(--primary);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.about-bullet-icon {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Why Choose Us features list */
.why-choose-us {
    margin-top: 8rem;
    padding-top: 6rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

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

.why-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 136, 229, 0.1);
}

.why-icon {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---------------------------------------------------------------------
   7. SERVICES: WHAT WE OFFER (UPGRADED CARD HEADERS)
   --------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-premium);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: 5;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image-box img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 175px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 3;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon-floating {
    background: var(--gold-premium);
    color: var(--dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.service-features-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.service-feature i {
    color: var(--accent);
}

.service-learn-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-learn-more i {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-learn-more i {
    transform: translateX(5px);
}

/* ---------------------------------------------------------------------
   8. FACTORY VISITS
   --------------------------------------------------------------------- */
.factory-visits {
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(15, 76, 129, 0.85) 100%);
    position: relative;
}

.factory-visits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: 1;
}

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

.factory-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.factory-content h2 {
    color: var(--white);
}

.factory-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0 3.5rem 0;
}

.factory-feature-card {
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.factory-feature-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.factory-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.factory-feature-card p {
    font-size: 0.85rem;
    color: var(--text-white-muted);
}

.factory-visuals-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.factory-vis-img {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.factory-vis-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.factory-vis-img:hover img {
    transform: scale(1.08);
}

.factory-vis-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.8) 0%, transparent 60%);
}

.factory-vis-img-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

/* ---------------------------------------------------------------------
   9. CATEGORIES WE SERVE
   --------------------------------------------------------------------- */
.categories-title {
    font-size: clamp(1.4rem, 4vw, 2.75rem) !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 136, 229, 0.1);
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-section);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all var(--transition-normal);
    font-size: 1.5rem;
}

.category-card:hover .category-icon-wrapper {
    background-color: var(--accent);
    color: var(--dark);
    transform: rotateY(180deg);
}

.category-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------------------------------------------------------------------
   10. PROCESS: HOW IT WORKS (STRICT LEFT/RIGHT TIMELINE)
   --------------------------------------------------------------------- */
.process-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
}

.process-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 90%;
    background-color: var(--light-section);
    top: 5%;
    z-index: 1;
}

.process-line-fill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    top: 5%;
    z-index: 2;
    transition: height var(--transition-slow);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 3;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Force specific left and right cards */
.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content-box {
    width: 44%;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
}

.process-content-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 136, 229, 0.15);
}

.process-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary-glow);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.process-step h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.process-number-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--light-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-secondary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    transition: all var(--transition-normal);
}

.process-step.active .process-number-node {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(15, 76, 129, 0.4);
}

.process-empty-filler {
    width: 44%;
}

/* ---------------------------------------------------------------------
   10.1 SUPPLY CHAIN INFOGRAPHIC REVAMP (MODERN TRACK)
   --------------------------------------------------------------------- */
.infographic-container {
    margin-top: 6rem;
    background: #0f172a;
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.infographic-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(30, 136, 229, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.infographic-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.info-track-line {
    position: absolute;
    top: 145px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    opacity: 0.3;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    position: relative;
    z-index: 2;
}

.info-step-node {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-node-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1e293b;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(30,136,229,0.3);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.info-step-node:hover .info-node-circle {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: scale(1.15);
    box-shadow: var(--shadow-accent-glow);
}

.info-node-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.info-node-desc {
    font-size: 0.72rem;
    color: var(--text-white-muted);
    line-height: 1.3;
    max-width: 110px;
    margin: 0 auto;
}

.info-connector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    opacity: 0.5;
    font-size: 1rem;
    height: 46px;
    margin-bottom: 1.5rem;
}

/* ---------------------------------------------------------------------
   11. OUR PRESENCE (MAP OUTLINE VISIBILITY FIX)
   --------------------------------------------------------------------- */
.presence-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.presence-map-panel {
    position: relative;
    background: url('../assets/images/world_map_realistic.jpg') center/cover no-repeat;
    border-radius: var(--border-radius-lg);
    padding: 0;
    aspect-ratio: 3/2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Animated dots on map grid */
.map-pulse-point {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    z-index: 5;
}

.map-pulse-point::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: beaconPulse 2s infinite;
}

@keyframes beaconPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Location coordinates approximations to match standard projection world map background */
.point-india-hyd { top: 56%; left: 64.5%; }
.point-india-delhi { top: 50%; left: 63%; }
.point-india-kurnool { top: 59%; left: 64.2%; }
.point-china-sz { top: 51%; left: 74.5%; }
.point-china-gz { top: 49%; left: 73.5%; }
.point-china-yiwu { top: 45%; left: 76.5%; }
.point-china-sh { top: 42%; left: 78%; }

.presence-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.presence-country-block h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.country-flag-icon {
    font-size: 1.25rem;
}

.presence-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.presence-office-card {
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

.presence-office-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.presence-office-card p {
    font-size: 0.82rem;
    color: var(--text-white-muted);
    line-height: 1.4;
}

.presence-office-role {
    font-size: 0.72rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent) !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ---------------------------------------------------------------------
   12. IMPORT STATISTICS
   --------------------------------------------------------------------- */
.stats-banner {
    background-color: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-white-muted);
}

/* ---------------------------------------------------------------------
   13. CLIENT BENEFITS
   --------------------------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
}

.benefit-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--secondary-glow);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.benefit-text-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-text-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.benefits-visualization {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-vis-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.benefit-vis-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-vis-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------------------------------------------------------------------
   14. FAQ ACCORDION (ACCORDION TOGGLE STATE FIX)
   --------------------------------------------------------------------- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
}

.faq-icon-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--light-section);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

/* FAQ active selector changed to .faq-open to avoid clash with reveal observer */
.faq-item.faq-open .faq-icon-node {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------------------------------------------------------------------
   15. CONTACT SECTION
   --------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-intro h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--text-secondary);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--light-section);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-detail-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-detail-info p, 
.contact-detail-info a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-detail-info a:hover {
    color: var(--primary);
}

.contact-map-frame {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Styling */
.contact-form-panel {
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

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

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.88rem 1.25rem;
    background-color: var(--white);
    border: 1.5px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--dark);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

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

/* Form success response styling */
.form-feedback {
    display: none;
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.4;
}

.form-feedback.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-feedback.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ---------------------------------------------------------------------
   16. FLOATING & STICKY ACTIONS
   --------------------------------------------------------------------- */
.sticky-contact-bar {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 990;
}

.floating-action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.floating-action-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.btn-whatsapp {
    background-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

/* Back to top scroll button */
.back-to-top-btn {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
}

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

.back-to-top-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Mobile Sticky Bar for quick action clicks */
.mobile-sticky-quick-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 995;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.quick-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.quick-bar-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.quick-bar-call {
    background-color: var(--primary);
    color: var(--white);
}

/* ---------------------------------------------------------------------
   17. CALL TO ACTION SECTION
   --------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 7rem 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-container p {
    font-size: 1.15rem;
    color: var(--text-white-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ---------------------------------------------------------------------
   18. FOOTER
   --------------------------------------------------------------------- */
.footer {
    background-color: var(--dark);
    color: var(--text-white-muted);
    padding: 6rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.88rem;
}

.footer-link-item {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-link-item i {
    color: var(--accent);
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--white);
    padding-left: 0.25rem;
}

.footer-link-item:hover i {
    opacity: 1;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-newsletter p {
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input-group {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: var(--white);
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 0 1.25rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--primary-light);
}

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

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* ---------------------------------------------------------------------
   19. INTERACTIVE SCROLL ANIMATION & REVEAL CLASSES
   --------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.slide-up {
    transform: translateY(40px);
}

.slide-left {
    transform: translateX(40px);
}

.slide-right {
    transform: translateX(-40px);
}

.scale-up {
    transform: scale(0.93);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger transition delay helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS (MOBILE RESOLUTION COVERAGE)
   --------------------------------------------------------------------- */

/* Large Desktop screens (> 1200px) */
@media (max-width: 1280px) {
    .container {
        padding: 0 3rem;
    }
}

/* Laptop Screens (1024px - 1200px) */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

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

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

    .info-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    
    .info-connector-arrow {
        display: none;
    }

    .info-track-line {
        display: none;
    }

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

    .stat-item:nth-child(even)::after {
        display: none;
    }

    .presence-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .presence-map-panel {
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablet Screens (768px - 1023px) */
@media (max-width: 820px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 60px;
    }

    .hero-badge-panel {
        display: none; /* Hide badges on tablet layout to focus text */
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .factory-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .factory-visuals-panel {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .process-line, .process-line-fill {
        left: 20px;
    }

    .process-number-node {
        left: 20px;
        transform: none;
    }

    .process-step {
        flex-direction: row !important;
        margin-bottom: 4rem;
    }

    .process-content-box {
        width: calc(100% - 60px);
        margin-left: auto;
    }

    .process-empty-filler {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .benefits-visualization {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

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

/* Small Tablets / Large Mobile (< 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .hero-title {
        font-size: 2.75rem;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu, .header-cta .btn {
        display: none;
    }

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

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

    .why-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-panel {
        padding: 2rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* Medium Mobile Devices (< 576px) */
@media (max-width: 576px) {
    .btn {
        padding: 0.8rem 1.25rem !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero {
        height: auto;
        padding: 8rem 0 6rem 0;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-bullets {
        grid-template-columns: 1fr;
    }

    .about-floating-card {
        right: 0;
        bottom: -1rem;
        padding: 1.25rem;
        max-width: 220px;
    }

    .about-floating-icon {
        width: 44px;
        height: 44px;
    }

    .about-floating-content h4 {
        font-size: 1.2rem;
    }

    .factory-features {
        grid-template-columns: 1fr;
    }

    .factory-vis-img img {
        height: 240px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }

    .benefit-vis-card {
        padding: 1.5rem;
    }

    .faq-question-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .sticky-contact-bar {
        display: none; /* Hide floating buttons on mobile and use bottom sticky bar instead */
    }

    .mobile-sticky-quick-bar {
        display: grid;
    }

    body {
        padding-bottom: 56px; /* Offset for mobile quick action bar */
    }
}

/* Ultra Small Mobile Devices (< 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

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