/*=============================================
    UDYOGAXIS - COMPREHENSIVE INDUSTRIAL CSS FRAMEWORK
    =============================================
    A complete, unified stylesheet for all industrial
    property specializations including:
    
    ✓ Auto Parts           ✓ Cold Storage        ✓ Co-working
    ✓ E-commerce           ✓ Food Processing     ✓ Furniture
    ✓ Garment              ✓ Hosiery             ✓ Leather & Footwear
    ✓ Logistics            ✓ Manufacturing       ✓ Medical Devices
    ✓ Packaging            ✓ Pharmaceutical      ✓ Plastic Moulding
    ✓ Rubber Products      ✓ Textiles            ✓ General Manufacturing
    ============================================*/

/*=== 1. ROOT VARIABLES - MASTER CONTROLS ===*/
:root {
    /*-------------------------------------------------------------------------
        BASE COLORS - DO NOT CHANGE THESE DIRECTLY
        These are the foundation. Industry colors are defined separately below.
    -------------------------------------------------------------------------*/
    --text-black: #1a2e3b;
    --text-gray: #546e7a;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray-1: #fafafa;
    --light-gray-2: #f5f5f5;
    --light-gray-3: #f0f0f0;
    --border-light: rgba(0,0,0,0.05);
    --border-medium: rgba(0,0,0,0.1);
    --border-dark: rgba(0,0,0,0.15);
    
    /*-------------------------------------------------------------------------
        SPACING SYSTEM - Consistent spacing throughout
    -------------------------------------------------------------------------*/
    --spacing-xs: 4px;
    --spacing-tight: 8px;
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 2rem;       /* 32px */
    --spacing-lg: 3rem;       /* 48px */
    --spacing-xl: 4rem;       /* 64px */
    --spacing-xxl: 6rem;      /* 96px */
    --spacing-xxxl: 8rem;     /* 128px */
    
    /*-------------------------------------------------------------------------
        TYPOGRAPHY - Font families and weights
    -------------------------------------------------------------------------*/
    --font-family-base: "Poppins", sans-serif;
    --font-family-alt: "Inter", sans-serif;
    --font-family-heading: "Poppins", sans-serif;
    --line-height-tight: 1.2;
    --line-height-base: 1.6;
    --line-height-loose: 1.8;
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 2vw, 0.875rem);     /* 12-14px */
    --text-sm: clamp(0.875rem, 2.5vw, 1rem);      /* 14-16px */
    --text-base: clamp(1rem, 3vw, 1.125rem);      /* 16-18px */
    --text-md: clamp(1.125rem, 3.5vw, 1.25rem);   /* 18-20px */
    --text-lg: clamp(1.25rem, 4vw, 1.5rem);       /* 20-24px */
    --text-xl: clamp(1.5rem, 5vw, 1.875rem);      /* 24-30px */
    --text-2xl: clamp(1.875rem, 6vw, 2.25rem);    /* 30-36px */
    --text-3xl: clamp(2.25rem, 7vw, 3rem);        /* 36-48px */
    --text-4xl: clamp(3rem, 8vw, 3.75rem);        /* 48-60px */
    --text-5xl: clamp(3.75rem, 10vw, 4.5rem);     /* 60-72px */
    
    /*-------------------------------------------------------------------------
        SHADOWS - Depth and elevation
    -------------------------------------------------------------------------*/
    --shadow-xs: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.12);
    --shadow-xxl: 0 35px 70px rgba(0,0,0,0.15);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    
    /* Inner Shadows */
    --shadow-inner-sm: inset 0 2px 5px rgba(0,0,0,0.05);
    --shadow-inner-md: inset 0 5px 15px rgba(0,0,0,0.08);
    
    /*-------------------------------------------------------------------------
        BORDER RADIUS - Shape and form
    -------------------------------------------------------------------------*/
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-xxl: 24px;
    --radius-circle: 50%;
    --radius-pill: 50px;
    
    /*-------------------------------------------------------------------------
        GRADIENTS - Reusable gradient patterns
    -------------------------------------------------------------------------*/
    --gradient-primary: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    --gradient-dark: linear-gradient(135deg, var(--text-black), #2c3e50);
    --gradient-light: linear-gradient(135deg, var(--white), var(--off-white));
    --gradient-overlay: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 27%, rgba(0,0,0,0.65) 90%);
    --gradient-hero: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    
    /*-------------------------------------------------------------------------
        CONTAINER WIDTHS - Responsive containers
    -------------------------------------------------------------------------*/
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-xxl: 1440px;
    --container-fluid: 100%;
    
    /*-------------------------------------------------------------------------
        Z-INDEX LAYERS - Stacking order
    -------------------------------------------------------------------------*/
    --z-below: -1;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
    --z-toast: 700;
    --z-header: 1000;
    --z-overlay: 2000;
    --z-max: 9999;
    
    /*-------------------------------------------------------------------------
        ANIMATIONS - Timing and curves
    -------------------------------------------------------------------------*/
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-elastic: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Animation Timings */
    --duration-instant: 0.1s;
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;
    --duration-slower: 0.8s;
    --duration-slowest: 1.2s;
    
    /* Easing Curves */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /*-------------------------------------------------------------------------
        GRID SYSTEM - Bootstrap compatible overrides
    -------------------------------------------------------------------------*/
    --grid-gutter: var(--spacing-tight);
    --grid-columns: 12;
    
    /*-------------------------------------------------------------------------
        SECTIONS - Default padding
    -------------------------------------------------------------------------*/
    --section-padding: var(--spacing-xl) 0;
    --section-padding-sm: var(--spacing-lg) 0;
    --section-padding-lg: var(--spacing-xxl) 0;
    
    /*-------------------------------------------------------------------------
        CARD DEFAULTS
    -------------------------------------------------------------------------*/
    --card-padding: var(--spacing-md);
    --card-border-radius: var(--radius-lg);
    --card-shadow: var(--shadow-sm);
    --card-shadow-hover: var(--shadow-lg);
}

/*=============================================
    INDUSTRY COLOR THEMES
    Each industry gets its own primary color scheme
=============================================*/

/*-------------------------------------------------------------------------
    AUTO PARTS - Industrial Blue (#0d47a1, #1976d2)
-------------------------------------------------------------------------*/
.industry-auto-parts {
    --brand-primary: #0d47a1;
    --brand-secondary: #1976d2;
    --brand-tertiary: #42a5f5;
    --brand-light: #e3f2fd;
    --brand-dark: #0d2131;
    --brand-accent: #ff9800;
    --gradient-brand: linear-gradient(135deg, #0d47a1, #1976d2, #42a5f5);
    --shadow-brand: 0 10px 30px -10px rgba(13, 71, 161, 0.5);
}

/*-------------------------------------------------------------------------
    COLD STORAGE - Cool Blue (#01579b, #0277bd)
-------------------------------------------------------------------------*/
.industry-cold-storage {
    --brand-primary: #01579b;
    --brand-secondary: #0277bd;
    --brand-tertiary: #4fc3f7;
    --brand-light: #e1f5fe;
    --brand-dark: #0a3143;
    --brand-accent: #ff9800;
    --gradient-brand: linear-gradient(135deg, #01579b, #0277bd, #4fc3f7);
    --shadow-brand: 0 10px 30px -10px rgba(1, 87, 155, 0.5);
}

/*-------------------------------------------------------------------------
    CO-WORKING - Teal & Orange (#008080, #ff8c00)
-------------------------------------------------------------------------*/
.industry-co-working {
    --brand-primary: #008080;
    --brand-secondary: #ff8c00;
    --brand-tertiary: #4fd1c5;
    --brand-light: #e0f7fa;
    --brand-dark: #1a2b3c;
    --brand-accent: #ff8c00;
    --gradient-brand: linear-gradient(135deg, #008080, #ff8c00, #4fd1c5);
    --shadow-brand: 0 10px 30px -10px rgba(0, 128, 128, 0.5);
}

/*-------------------------------------------------------------------------
    E-COMMERCE - Vibrant Purple (#6a1b9a, #8e24aa)
-------------------------------------------------------------------------*/
.industry-e-commerce {
    --brand-primary: #6a1b9a;
    --brand-secondary: #8e24aa;
    --brand-tertiary: #ba68c8;
    --brand-light: #f3e5f5;
    --brand-dark: #2a1b3c;
    --brand-accent: #ff6d00;
    --gradient-brand: linear-gradient(135deg, #6a1b9a, #8e24aa, #ba68c8);
    --shadow-brand: 0 10px 30px -10px rgba(106, 27, 154, 0.5);
}

/*-------------------------------------------------------------------------
    FOOD PROCESSING - Fresh Green (#2e7d32, #81c784)
-------------------------------------------------------------------------*/
.industry-food-processing {
    --brand-primary: #2e7d32;
    --brand-secondary: #81c784;
    --brand-tertiary: #a5d6a7;
    --brand-light: #e8f5e9;
    --brand-dark: #1b3b1b;
    --brand-accent: #ff8f00;
    --gradient-brand: linear-gradient(135deg, #2e7d32, #81c784, #a5d6a7);
    --shadow-brand: 0 10px 30px -10px rgba(46, 125, 50, 0.5);
}

/*-------------------------------------------------------------------------
    FURNITURE - Warm Brown (#6d4c41, #8b5a2b)
-------------------------------------------------------------------------*/
.industry-furniture {
    --brand-primary: #6d4c41;
    --brand-secondary: #8b5a2b;
    --brand-tertiary: #a67c52;
    --brand-light: #efebe9;
    --brand-dark: #4e342e;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #6d4c41, #8b5a2b, #a67c52);
    --shadow-brand: 0 10px 30px -10px rgba(109, 76, 65, 0.5);
}

/*-------------------------------------------------------------------------
    GARMENT - Deep Pink & Purple (#283593, #c2185b)
-------------------------------------------------------------------------*/
.industry-garment {
    --brand-primary: #283593;
    --brand-secondary: #c2185b;
    --brand-tertiary: #e91e63;
    --brand-light: #fce4ec;
    --brand-dark: #1a2b3c;
    --brand-accent: #ffc107;
    --gradient-brand: linear-gradient(135deg, #283593, #c2185b, #e91e63);
    --shadow-brand: 0 10px 30px -10px rgba(40, 53, 147, 0.5);
}

/*-------------------------------------------------------------------------
    HOSIERY - Rich Red (#c62828, #e91e63)
-------------------------------------------------------------------------*/
.industry-hosiery {
    --brand-primary: #c62828;
    --brand-secondary: #e91e63;
    --brand-tertiary: #ef5350;
    --brand-light: #fce4ec;
    --brand-dark: #2a1b3c;
    --brand-accent: #ffc107;
    --gradient-brand: linear-gradient(135deg, #c62828, #e91e63, #ef5350);
    --shadow-brand: 0 10px 30px -10px rgba(198, 40, 40, 0.5);
}

/*-------------------------------------------------------------------------
    LEATHER & FOOTWEAR - Rich Brown (#8B4513, #A0522D)
-------------------------------------------------------------------------*/
.industry-leather-footwear {
    --brand-primary: #8B4513;
    --brand-secondary: #A0522D;
    --brand-tertiary: #b76e3c;
    --brand-light: #F5E8DA;
    --brand-dark: #5D4037;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #8B4513, #A0522D, #b76e3c);
    --shadow-brand: 0 10px 30px -10px rgba(139, 69, 19, 0.5);
}

/*-------------------------------------------------------------------------
    LOGISTICS - Deep Blue (#1a237e, #3949ab)
-------------------------------------------------------------------------*/
.industry-logistics {
    --brand-primary: #1a237e;
    --brand-secondary: #3949ab;
    --brand-tertiary: #5c6bc0;
    --brand-light: #E3F2FD;
    --brand-dark: #263238;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #1a237e, #3949ab, #5c6bc0);
    --shadow-brand: 0 10px 30px -10px rgba(26, 35, 126, 0.5);
}

/*-------------------------------------------------------------------------
    MANUFACTURING - Industrial Orange (#e65100, #f57c00)
-------------------------------------------------------------------------*/
.industry-manufacturing {
    --brand-primary: #e65100;
    --brand-secondary: #f57c00;
    --brand-tertiary: #ff9800;
    --brand-light: #fff3e0;
    --brand-dark: #37474f;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #e65100, #f57c00, #ff9800);
    --shadow-brand: 0 10px 30px -10px rgba(230, 81, 0, 0.5);
}

/*-------------------------------------------------------------------------
    MEDICAL DEVICE - Medical Blue (#0077be, #00a1b0)
-------------------------------------------------------------------------*/
.industry-medical-device {
    --brand-primary: #0077be;
    --brand-secondary: #00a1b0;
    --brand-tertiary: #4aa3ff;
    --brand-light: #e1f5fe;
    --brand-dark: #1a2b3c;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #0077be, #00a1b0, #4aa3ff);
    --shadow-brand: 0 10px 30px -10px rgba(0, 119, 190, 0.5);
}

/*-------------------------------------------------------------------------
    PACKAGING - Bright Blue (#0288d1, #0277bd)
-------------------------------------------------------------------------*/
.industry-packaging {
    --brand-primary: #0288d1;
    --brand-secondary: #0277bd;
    --brand-tertiary: #4fc3f7;
    --brand-light: #E3F2FD;
    --brand-dark: #263238;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #0288d1, #0277bd, #4fc3f7);
    --shadow-brand: 0 10px 30px -10px rgba(2, 136, 209, 0.5);
}

/*-------------------------------------------------------------------------
    PHARMACEUTICAL - Clean Green (#2e7d32, #81c784)
-------------------------------------------------------------------------*/
.industry-pharmaceutical-medical {
    --brand-primary: #2e7d32;
    --brand-secondary: #66bb6a;
    --brand-tertiary: #a5d6a7;
    --brand-light: #e8f5e9;
    --brand-dark: #1a2b3c;
    --brand-accent: #42a5f5;
    --gradient-brand: linear-gradient(135deg, #2e7d32, #66bb6a, #a5d6a7);
    --shadow-brand: 0 10px 30px -10px rgba(46, 125, 50, 0.5);
}

/*-------------------------------------------------------------------------
    PLASTIC MOULDING - Polymer Blue (#1565c0, #1976d2)
-------------------------------------------------------------------------*/
.industry-plastic-moulding {
    --brand-primary: #1565c0;
    --brand-secondary: #1976d2;
    --brand-tertiary: #42a5f5;
    --brand-light: #e3f2fd;
    --brand-dark: #1a2b3c;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #1565c0, #1976d2, #42a5f5);
    --shadow-brand: 0 10px 30px -10px rgba(21, 101, 192, 0.5);
}

/*-------------------------------------------------------------------------
    RUBBER PRODUCTS - Deep Grey (#455a64, #607d8b)
-------------------------------------------------------------------------*/
.industry-rubber-products {
    --brand-primary: #455a64;
    --brand-secondary: #607d8b;
    --brand-tertiary: #78909c;
    --brand-light: #eceff1;
    --brand-dark: #263238;
    --brand-accent: #ff8a65;
    --gradient-brand: linear-gradient(135deg, #455a64, #607d8b, #78909c);
    --shadow-brand: 0 10px 30px -10px rgba(69, 90, 100, 0.5);
}

/*-------------------------------------------------------------------------
    TEXTILES - Royal Purple (#4a148c, #6a1b9a)
-------------------------------------------------------------------------*/
.industry-textiles {
    --brand-primary: #4a148c;
    --brand-secondary: #6a1b9a;
    --brand-tertiary: #8e24aa;
    --brand-light: #f3e5f5;
    --brand-dark: #1a2b3c;
    --brand-accent: #ffc107;
    --gradient-brand: linear-gradient(135deg, #4a148c, #6a1b9a, #8e24aa);
    --shadow-brand: 0 10px 30px -10px rgba(74, 20, 140, 0.5);
}

/*-------------------------------------------------------------------------
    GENERAL MANUFACTURING - Industrial Grey (#546e7a, #78909c)
-------------------------------------------------------------------------*/
.industry-general-manufacturing {
    --brand-primary: #546e7a;
    --brand-secondary: #78909c;
    --brand-tertiary: #90a4ae;
    --brand-light: #eceff1;
    --brand-dark: #263238;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #546e7a, #78909c, #90a4ae);
    --shadow-brand: 0 10px 30px -10px rgba(84, 110, 122, 0.5);
}

/*=============================================
    DEFAULT THEME (Fallback)
=============================================*/
:root,
.industry-default {
    --brand-primary: #0288d1;
    --brand-secondary: #0277bd;
    --brand-tertiary: #4fc3f7;
    --brand-light: #e3f2fd;
    --brand-dark: #263238;
    --brand-accent: #ffb74d;
    --gradient-brand: linear-gradient(135deg, #0288d1, #0277bd, #4fc3f7);
    --shadow-brand: 0 10px 30px -10px rgba(2, 136, 209, 0.5);
}

/*=============================================
    GENERAL STYLES
=============================================*/
  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-family-base);
    color: var(--text-gray);
    line-height: var(--line-height-base);
    margin: 0;
    padding: 0;
    background: var(--white);
    overflow-x: hidden;
    font-size: var(--text-base);
    font-weight: var(--font-weight-normal);
    transition: background-color var(--duration-normal) var(--ease-out);
}

/*=== TYPOGRAPHY ===*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-black);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-base);
    font-size: var(--text-base);
}

/*=== LINKS ===*/
a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
}

a:hover {
    color: var(--brand-secondary);
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/*=== LISTS ===*/
ul, ol {
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
    font-size: var(--text-base);
    color: var(--text-gray);
}

/*=== IMAGES ===*/
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*=== BUTTONS ===*/
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-pill);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-size: var(--text-base);
    line-height: 1.2;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

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

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

.btn-outline:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--text-sm);
}

.btn-block {
    display: block;
    width: 100%;
}

/*=== TEXT UTILITIES ===*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-white { color: var(--white); }
.text-black { color: var(--text-black); }
.text-gray { color: var(--text-gray); }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--brand-primary); }
.text-accent { color: var(--brand-accent); }

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--off-white); }
.bg-dark { background-color: var(--text-black); }
.bg-primary { background-color: var(--brand-primary); }
.bg-primary-light { background-color: var(--brand-light); }
.bg-gradient { background: var(--gradient-brand); }

.fw-normal { font-weight: var(--font-weight-normal); }
.fw-medium { font-weight: var(--font-weight-medium); }
.fw-semibold { font-weight: var(--font-weight-semibold); }
.fw-bold { font-weight: var(--font-weight-bold); }
.fw-extrabold { font-weight: var(--font-weight-extrabold); }

.fs-xs { font-size: var(--text-xs); }
.fs-sm { font-size: var(--text-sm); }
.fs-base { font-size: var(--text-base); }
.fs-md { font-size: var(--text-md); }
.fs-lg { font-size: var(--text-lg); }
.fs-xl { font-size: var(--text-xl); }
.fs-2xl { font-size: var(--text-2xl); }
.fs-3xl { font-size: var(--text-3xl); }
.fs-4xl { font-size: var(--text-4xl); }
.fs-5xl { font-size: var(--text-5xl); }

/*=== SPACING UTILITIES ===*/
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.m-xs { margin: var(--spacing-xs); }
.m-tight { margin: var(--spacing-tight); }
.m-sm { margin: var(--spacing-sm); }
.m-md { margin: var(--spacing-md); }
.m-lg { margin: var(--spacing-lg); }
.m-xl { margin: var(--spacing-xl); }
.m-xxl { margin: var(--spacing-xxl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-tight { margin-top: var(--spacing-tight); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-xxl { margin-top: var(--spacing-xxl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-tight { margin-bottom: var(--spacing-tight); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-xxl { margin-bottom: var(--spacing-xxl); }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

.p-xs { padding: var(--spacing-xs); }
.p-tight { padding: var(--spacing-tight); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }
.p-xxl { padding: var(--spacing-xxl); }

.pt-xs { padding-top: var(--spacing-xs); }
.pt-tight { padding-top: var(--spacing-tight); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }
.pt-xxl { padding-top: var(--spacing-xxl); }

.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-tight { padding-bottom: var(--spacing-tight); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }
.pb-xxl { padding-bottom: var(--spacing-xxl); }

/*=== CONTAINERS ===*/
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
    margin: 0 auto;
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }
.container-xl { max-width: var(--container-xl); }
.container-xxl { max-width: var(--container-xxl); }

/*=== GRID SYSTEM ===*/
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1   var(--grid-gutter));
}

.row >   {
    padding: 0 var(--grid-gutter);
    margin-bottom: var(--spacing-md);
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/*=== RESPONSIVE GRID ===*/
@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/*=============================================
    NAVBAR
=============================================*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: var(--z-header);
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-tight) 0;
    transition: var(--transition-base);
}

.navbar-scrolled {
    padding: var(--spacing-xs) 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: var(--font-weight-extrabold);
    font-size: var(--text-xl);
    color: var(--text-black) !important;
    letter-spacing: -0.5px;
}

.navbar-brand .text-warning {
    color: var(--brand-primary) !important;
}

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

.nav-item {
    margin: 0 var(--spacing-xs);
}

.nav-link {
    color: var(--text-black);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-tight) var(--spacing-sm);
    transition: var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--transition-base);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: var(--text-xs);
    margin-left: var(--spacing-xs);
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-tight) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
    list-style: none;
    border: 1px solid var(--border-light);
}

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

.dropdown-item {
    display: block;
    padding: var(--spacing-tight) var(--spacing-md);
    color: var(--text-gray);
    transition: var(--transition-base);
    font-size: var(--text-sm);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding-left: var(--spacing-lg);
}

.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    padding: var(--spacing-tight);
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-black);
    margin: 5px 0;
    transition: var(--transition-base);
}

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

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

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

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    .nav-item {
        margin: var(--spacing-xs) 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: var(--spacing-md);
        display: none;
    }
    
    .dropdown.show .dropdown-menu {
        display: block;
    }
}

/*=============================================
    HERO SECTION & SLIDER
=============================================*/
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    color: var(--white);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-xl);
    color: var(--white);
    animation: fadeUp var(--duration-slow) var(--ease-out);
}

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

.slide-content h1,
.slide-content h2 {
    color: var(--white);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
    line-height: var(--line-height-tight);
}

.slide-content p {
    color: var(--white);
    font-size: var(--text-xl);
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
}

.slide-content .lead {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.7;
    border-radius: var(--radius-circle);
    transition: var(--transition-base);
}

.swiper-pagination-bullet-active {
    background: var(--brand-primary);
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    transition: var(--transition-base);
    backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--brand-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: var(--text-lg);
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: var(--spacing-md);
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: var(--text-3xl);
    }
    
    .slide-content p {
        font-size: var(--text-lg);
    }
}

/*=============================================
    SECTION STYLES
=============================================*/
.section {
    padding: var(--section-padding);
}

.section-sm {
    padding: var(--section-padding-sm);
}

.section-lg {
    padding: var(--section-padding-lg);
}

.section-t8 {
    padding: clamp(15px, 4vh, 30px) 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: none;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-black);
    margin-bottom: var(--spacing-tight);
    text-align: left;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-sm);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-gray);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-a {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-black);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title-a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-sm);
}

/*=============================================
    BREADCRUMB
=============================================*/
.breadcrumb-section {
    background: var(--off-white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: var(--text-sm);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin: 0 var(--spacing-tight);
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-item a:hover {
    color: var(--brand-secondary);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

/*=============================================
    CARDS
=============================================*/
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    height: 100%;
    border: 1px solid var(--border-light);
}

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

.card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-body {
    padding: var(--spacing-md);
}

.card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-black);
    margin-bottom: var(--spacing-tight);
}

.card-text {
    font-size: var(--text-sm);
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-base);
}

.card-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    background: var(--off-white);
}

/* Card Box D (Special Hover Card) */
.card-box-d {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    backface-visibility: hidden;
    transition: var(--transition-bounce);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.card-img-d {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-img-d img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card-box-d:hover .card-img-d img {
    transform: scale(1.05);
}

.card-overlay-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-in-out);
    border-radius: var(--radius-lg);
}

.card-box-d:hover .card-overlay-hover {
    opacity: 0.95;
}

.card-info-d {
    padding: var(--spacing-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-d {
    font-weight: var(--font-weight-semibold);
    margin: var(--spacing-tight) 0;
    transition: var(--transition-base);
    transform: translateY(-15px);
    opacity: 0;
    color: var(--white);
}

.card-box-d:hover .title-d {
    opacity: 1;
    transform: translateY(0);
}

.card-body-d {
    color: var(--white);
}

.card-body-d ul {
    list-style: none;
    padding-left: 0;
}

.card-body-d ul li {
    color: var(--white);
    margin-bottom: var(--spacing-tight);
    font-size: var(--text-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.card-body-d ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.info-ag {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: var(--spacing-sm);
}

.info-ag h4 {
    margin-bottom: 0;
    font-size: var(--text-base);
}

.info-ag small {
    color: var(--text-gray);
    font-size: var(--text-xs);
}

/* Flip Cards */
.flip-card-container {
    perspective: 2000px;
    height: 450px;
    margin-bottom: var(--spacing-md);
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.flip-front {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.flip-front img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.flip-front-content {
    padding: var(--spacing-md);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-front h4 {
    font-size: var(--text-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-black);
    margin-bottom: var(--spacing-tight);
}

.flip-front p {
    color: var(--text-gray);
    font-size: var(--text-sm);
}

.flip-back {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--white);
    transform: rotateY(180deg);
    padding: var(--spacing-md);
    overflow-y: auto;
}

.flip-back h5 {
    color: var(--white);
    font-size: var(--text-md);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.flip-back ul {
    list-style: none;
    padding-left: 0;
}

.flip-back li {
    color: var(--white);
    margin-bottom: var(--spacing-tight);
    font-size: var(--text-sm);
    line-height: var(--line-height-base);
    position: relative;
    padding-left: var(--spacing-md);
}

.flip-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.flip-indicator {
    margin-top: var(--spacing-md);
    font-size: var(--text-sm);
    opacity: 0.8;
}

/*=============================================
    INDUSTRY BADGES
=============================================*/
.spec-badge {
    display: inline-block;
    background: var(--brand-primary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-pill);
    margin: var(--spacing-xs);
    border: 2px solid var(--brand-secondary);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}

.keyword-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-tight);
    margin: var(--spacing-md) 0;
}

.keyword-badge {
    background: var(--gradient-brand);
    color: var(--white);
    padding: var(--spacing-tight) var(--spacing-md);
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.keyword-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-brand);
}

/*=============================================
    QUICK STATS
=============================================*/
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid var(--border-light);
}

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

.stat-value {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--brand-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-medium);
}

/* Quick Stats Row (Gradient) */
.quick-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--gradient-brand);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.quick-stat-item {
    text-align: center;
    position: relative;
    padding: var(--spacing-sm);
}

.quick-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.3);
}

.quick-stat-item .quick-stat-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.quick-stat-item .quick-stat-label {
    font-size: var(--text-sm);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

@media (max-width: 768px) {
    .quick-stat-item:not(:last-child)::after {
        display: none;
    }
}

/*=============================================
    TABLE OF CONTENTS
=============================================*/
.toc-container {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-sm);
}

.toc-title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-tight);
    color: var(--text-black);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-tight);
}

.toc-item {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--text-black);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
    cursor: pointer;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    text-align: center;
}

.toc-item:hover {
    background: var(--brand-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/*=============================================
    FEATURE SECTIONS (Alternating Layouts)
=============================================*/
.feature-section {
    padding: var(--section-padding);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-lg) 0;
}

.feature-image {
    flex: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image.large {
    flex: 1.3;
}

.feature-image.medium {
    flex: 1;
}

.feature-image.small {
    flex: 0.8;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

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

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-black);
    margin-bottom: var(--spacing-md);
}

.feature-content p {
    font-size: var(--text-lg);
    color: var(--text-gray);
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-md);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-tight);
    margin-bottom: var(--spacing-md);
}

.feature-tag {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-base);
}

.feature-tag:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: var(--spacing-tight);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: var(--text-base);
    color: var(--text-black);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: var(--font-weight-bold);
}

@media (max-width: 992px) {
    .feature-row {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .feature-image.large,
    .feature-image.medium,
    .feature-image.small {
        flex: auto;
        width: 100%;
    }
}

/*=============================================
    COMPARISON TABLE
=============================================*/
.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--brand-primary);
    color: var(--white);
    padding: var(--spacing-md);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 1px;
    text-align: left;
}

.comparison-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
}

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

.comparison-table tr:hover td {
    background: var(--brand-light);
}

/*=============================================
    GRADIENT CTA
=============================================*/
.gradient-cta {
    background: var(--gradient-brand);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xxl);
    margin: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.gradient-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gradient-cta h3 {
    color: var(--white);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.gradient-cta p {
    color: rgba(255,255,255,0.9);
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.gradient-cta .cta-button {
    background: var(--white);
    color: var(--brand-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-pill);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
    margin: 0 var(--spacing-tight);
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
    font-size: var(--text-base);
}

.gradient-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--brand-secondary);
}

.gradient-cta .cta-button-wa {
    background: #25D366;
    color: var(--white) !important;
}

.gradient-cta .cta-button-wa:hover {
    background: #20b859;
}

@media (max-width: 768px) {
    .gradient-cta .cta-button {
        display: block;
        margin: var(--spacing-sm) auto;
        max-width: 300px;
    }
}

/*=============================================
    WHATSAPP FLOATING BUTTON
=============================================*/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-max);
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: var(--transition-bounce);
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

.whatsapp-float i {
    color: var(--white);
    font-size: 30px;
}

/*=============================================
    SCROLLING BANNER
=============================================*/
.scrolling-banner,
marquee {
    width: 100%;
    overflow: hidden;
    background: var(--brand-primary);
    padding: var(--spacing-tight) 0;
    margin: var(--spacing-tight) 0;
    white-space: nowrap;
    position: relative;
}

.scrolling-banner h3,
marquee h3 {
    display: inline-block;
    animation: scroll-left 35s linear infinite;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: var(--white);
    margin: 0;
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-tight) 0;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.scrolling-banner h3:hover,
marquee h3:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/*=============================================
    PROGRESS BAR
=============================================*/
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: var(--z-max);
}

.progress-bar-custom {
    height: 4px;
    background: var(--gradient-brand);
    width: 0%;
    transition: width var(--duration-fast) var(--ease-out);
    box-shadow: var(--shadow-brand);
}

/*=============================================
    DARK MODE TOGGLE
=============================================*/
.theme-toggle {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: var(--z-fixed);
    background: var(--white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-pill);
    padding: var(--spacing-tight) var(--spacing-sm);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-tight);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-black);
    transition: var(--transition-base);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/*=============================================
    FLOATING STATS
=============================================*/
.floating-stats {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: var(--z-fixed);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    animation: slideIn var(--duration-normal) var(--ease-out);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.floating-stats.hide {
    animation: slideOut var(--duration-normal) var(--ease-out) forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.floating-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.floating-stats .stat-item {
    text-align: center;
}

.floating-stats .stat-value {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-extrabold);
    color: var(--brand-primary);
    line-height: var(--line-height-tight);
}

.floating-stats .stat-label {
    font-size: var(--text-xs);
    color: var(--text-gray);
}

.floating-stats .close-stats {
    position: absolute;
    top: var(--spacing-tight);
    right: var(--spacing-tight);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: var(--text-lg);
    padding: var(--spacing-xs);
    line-height: 1;
}

/*=============================================
    FOOTER
=============================================*/
.section-footer {
    background: var(--light-gray-3);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.widget-a {
    margin-bottom: var(--spacing-md);
}

.w-header-a {
    margin-bottom: var(--spacing-md);
}

.w-title-a {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--text-black);
}

.w-body-a ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.w-body-a li {
    margin-bottom: var(--spacing-tight);
    color: var(--text-gray);
    font-size: var(--text-sm);
}

.w-body-a li strong {
    color: var(--brand-primary);
}

.w-body-a a {
    color: var(--text-gray);
    transition: var(--transition-base);
}

.w-body-a a:hover {
    color: var(--brand-primary);
    padding-left: var(--spacing-xs);
}

.w-footer-a {
    margin-top: var(--spacing-md);
}

.w-footer-a ul {
    list-style: none;
    padding-left: 0;
}

.w-footer-a li {
    margin-bottom: var(--spacing-tight);
    font-size: var(--text-sm);
}

.w-footer-a .color-a {
    color: var(--text-black);
}

.w-footer-a .color-text-a {
    color: var(--text-gray);
}

footer {
    background: var(--light-gray-3);
}

footer .credits {
    font-size: var(--text-xs) !important;
    color: var(--text-gray);
}

footer .credits a {
    color: var(--brand-primary);
    text-decoration: none;
}

footer .credits a:hover {
    text-decoration: underline;
}

/*=============================================
    UTILITY CLASSES
=============================================*/
.highlight-spec {
    background: #ffeb3b;
    color: #212121;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    display: inline-block;
    margin: 0 3px;
}

[data-theme="dark"] .highlight-spec {
    background: #ffb300;
    color: #000;
}

.overlay-a {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

/*=============================================
    RESPONSIVE UTILITIES
=============================================*/
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .section-t8 h2 {
        font-size: var(--text-2xl);
    }
    
    h1 { font-size: var(--text-3xl); }
    h2 { font-size: var(--text-2xl); }
    h3 { font-size: var(--text-xl); }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .theme-toggle {
        top: 70px;
        right: 10px;
        padding: var(--spacing-xs) var(--spacing-tight);
        font-size: var(--text-xs);
    }
    
    .floating-stats {
        bottom: 80px;
        right: 10px;
        max-width: 220px;
        padding: var(--spacing-sm);
    }
    
    .slide-content h1,
    .slide-content h2 {
        font-size: var(--text-2xl);
        padding: var(--spacing-sm);
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .section-t8 {
        padding: var(--spacing-md) 0 !important;
    }
    
    .quick-stats-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .gradient-cta h3 {
        font-size: var(--text-xl);
    }
    
    .gradient-cta p {
        font-size: var(--text-base);
    }
    
    .swipe-hint {
        display: block;
    }
    
    .card-box-d .card-img-d img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
    
    .quick-stats-row {
        grid-template-columns: 1fr;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-content h3 {
        font-size: var(--text-xl);
    }
    
    .feature-content p {
        font-size: var(--text-base);
    }
    
    .spec-badge {
        padding: var(--spacing-xs) var(--spacing-tight);
        font-size: var(--text-xs);
    }
}

/*=============================================
    ACCESSIBILITY (REDUCED MOTION)
=============================================*/
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*=============================================
    PRINT STYLES
=============================================*/
@media print {
    .navbar,
    .whatsapp-float,
    .scrolling-banner,
    .gradient-cta,
    .section-footer,
    .theme-toggle,
    .floating-stats {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        background: var(--white);
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
        page-break-inside: avoid;
    }
    
    .swiper-slide::after {
        display: none;
    }
    
    .slide-content {
        color: var(--text-black);
    }
    
    .slide-content h1,
    .slide-content h2 {
        color: var(--text-black);
        text-shadow: none;
    }
    
    .slide-content p {
        color: var(--text-gray);
    }
    
    a {
        color: var(--text-black) !important;
        text-decoration: underline !important;
    }
    
    .card,
    .feature-section,
    .section-t8 {
        break-inside: avoid;
    }
}

/*=============================================
    END OF STYLESHEET
=============================================*/
/* Optimization for EMI Calculator Card */
.card-back input.form-control {
    background: #1e293b !important;
    color: #ffffff !important;
    border: 1px solid #f39c12 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem;
    height: 35px;
}
#emiResult p {
    font-size: 0.85rem;
    margin-bottom: 2px !important;
    color: #f8f9fa;
}
#emiResult span {
    color: #f39c12;
    font-weight: bold;
}
/* Custom Styling for Rent Calculator */
.card-back input.form-control {
    background: #1e293b !important;
    color: #ffffff !important;
    border: 1px solid #f39c12 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem;
    height: 34px;
}
#rentResult {
    border: 1px dashed #f39c12;
    margin-top: 10px;
}
#rentResult p {
    font-size: 0.8rem;
    margin-bottom: 2px !important;
    display: flex;
    justify-content: space-between;
}
#rentResult span {
    color: #f39c12;
    font-weight: bold;
}


.card-box-d .card-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-box-d:hover .card-overlay {
    opacity: 1;
}
