/* ========================
   Font Imports - Poppins Font Family
   ======================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================
   Lazy Loading Styles
   ======================== */
/* @import url('lazy-loading.css'); - Removed to prevent conflicts */

/* ========================
   Page Loader Styles
   ======================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: 120px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeIn 1s ease-out forwards;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(234, 96, 4, 0.1);
    border-top: 3px solid #ea6004;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

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

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.loader-content p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* ========================
   Enhanced CSS Variables - Interrand Website Design System
   ======================== */
:root {
    /* Primary Brand Colors - Orange/White/Gray/Black Color Scheme */
    --primary-orange: #ea6004;
    --primary-orange-light: #ff7a1a;
    --primary-orange-dark: #d45500;
    --primary-orange-gradient: linear-gradient(135deg, #ea6004 0%, #ff7a1a 100%);
    --primary-orange-radial: radial-gradient(circle, #ff7a1a 0%, #ea6004 100%);
    
    /* Enhanced Gradient Variations */
    --gradient-primary: linear-gradient(135deg, #ea6004 0%, #ff7a1a 50%, #ea6004 100%);
    --gradient-secondary: linear-gradient(45deg, #ea6004 0%, #ff7a1a 25%, #ea6004 50%, #ff7a1a 75%, #ea6004 100%);
    --gradient-animated: linear-gradient(270deg, #ea6004, #ff7a1a, #ea6004);

    /* Core Theme Colors */
    --theme-white: #ffffff;
    --theme-gray: #6b7280;
    --theme-gray-light: #f3f4f6;
    --theme-gray-medium: #9ca3af;
    --theme-gray-dark: #4b5563;
    --theme-black: #000000;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #111827;

    /* Interactive States */
    --orange-hover: #d45500;
    --orange-active: #b84500;
    --orange-focus: rgba(234, 96, 4, 0.2);
    --orange-glow: rgba(234, 96, 4, 0.4);

    /* Background Colors */
    --bg-gray-light: #f8f9fa;
    --bg-gray-lighter: #fafbfc;
    --bg-primary-light: rgba(234, 96, 4, 0.1);
    --bg-primary-lighter: rgba(234, 96, 4, 0.05);
    --bg-green-light: #f0fdf4;
    --bg-blue-light: #eff6ff;
    --bg-yellow-light: #fefce8;
    --bg-purple-light: #faf5ff;
    --bg-red-light: #fef2f2;

    /* Component Specific - 10px Border Radius */
    --button-radius: 10px;
    --card-radius: 12px;
    --section-radius: 16px;
    --input-radius: 10px;
    --badge-radius: 10px;

    /* Typography - Roboto for content, Poppins for headings */
    --font-primary: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Advanced Typography Scale */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    --text-7xl: 4.5rem;      /* 72px */
    --text-8xl: 6rem;        /* 96px */
    --text-9xl: 8rem;        /* 128px */

    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* Spacing and Layout */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    --border-radius: var(--button-radius);

    /* Enhanced Spacing Utilities */
    --space-px: 1px;
    --space-0: 0;
    --space-0-5: 0.125rem;   /* 2px */
    --space-1: 0.25rem;      /* 4px */
    --space-1-5: 0.375rem;   /* 6px */
    --space-2: 0.5rem;       /* 8px */
    --space-2-5: 0.625rem;   /* 10px */
    --space-3: 0.75rem;      /* 12px */
    --space-3-5: 0.875rem;   /* 14px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-7: 1.75rem;      /* 28px */
    --space-8: 2rem;         /* 32px */
    --space-9: 2.25rem;      /* 36px */
    --space-10: 2.5rem;      /* 40px */
    --space-11: 2.75rem;     /* 44px */
    --space-12: 3rem;        /* 48px */
    --space-14: 3.5rem;      /* 56px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */
    --space-28: 7rem;        /* 112px */
    --space-32: 8rem;        /* 128px */

    /* Legacy spacing for backward compatibility */
    --space-xs: var(--space-1);
    --space-sm: var(--space-2);
    --space-md: var(--space-4);
    --space-lg: var(--space-6);
    --space-xl: var(--space-8);
    --space-2xl: var(--space-12);
    --space-3xl: var(--space-16);
    --space-4xl: var(--space-24);

    /* Enhanced Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-none: 0 0 transparent;

    /* Orange-themed shadows */
    --shadow-orange-sm: 0 1px 3px rgba(234, 96, 4, 0.12), 0 1px 2px rgba(234, 96, 4, 0.08);
    --shadow-orange-md: 0 4px 6px rgba(234, 96, 4, 0.15), 0 2px 4px rgba(234, 96, 4, 0.1);
    --shadow-orange-lg: 0 10px 15px rgba(234, 96, 4, 0.2), 0 4px 6px rgba(234, 96, 4, 0.1);
    --shadow-orange-xl: 0 20px 25px rgba(234, 96, 4, 0.25), 0 10px 10px rgba(234, 96, 4, 0.1);

    /* Transitions and Animations */
    --transition-none: none;
    --transition-all: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: all 700ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Spring Physics and Advanced Easing Functions */
    --spring-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --spring-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --spring-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --spring-wobbly: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --spring-gentle: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);

    /* Particle Effects and Interactive States */
    --particle-orange: rgba(234, 96, 4, 0.6);
    --particle-orange-light: rgba(255, 122, 26, 0.4);
    --particle-white: rgba(255, 255, 255, 0.8);
    --particle-gray: rgba(107, 114, 128, 0.3);
    
    /* Gradient Overlays for Interactive Elements */
    --gradient-overlay: linear-gradient(45deg, rgba(234, 96, 4, 0.1), rgba(255, 255, 255, 0.05));
    --gradient-overlay-dark: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(234, 96, 4, 0.05));
    --gradient-overlay-light: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(234, 96, 4, 0.02));

    /* Animation Durations */
    --duration-75: 75ms;
    --duration-100: 100ms;
    --duration-150: 150ms;
    --duration-200: 200ms;
    --duration-300: 300ms;
    --duration-500: 500ms;
    --duration-700: 700ms;
    --duration-1000: 1000ms;

    /* Z-Index Scale */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;

    /* Breakpoints (for reference in CSS) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

/* ========================
   Reset & Base Styles
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--theme-gray);
    background: var(--theme-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ========================
   Typography
   ======================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-extrabold);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

p {
    margin-bottom: 1rem;
    color: var(--theme-gray);
}

/* ========================
   Responsive Grid System & Layout Components
   ======================== */

/* Container System */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
}

.container-sm {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
}

.container-md {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
}

.container-lg {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
}

.container-xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
}

.container-2xl {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-4);
}

/* Mobile-First Responsive Grid System */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Grid Column Spans */
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-full { grid-column: 1 / -1; }

/* Grid Gaps */
.gap-0 { gap: 0; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }

/* Flexbox System */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

/* Flex Alignment */
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Flex Grow/Shrink */
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }

/* Section Layouts */
.section-padding {
    padding: var(--section-padding);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    color: var(--secondary-dark);
    margin-bottom: var(--space-4);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--theme-gray);
    max-width: 48rem;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* Reusable Component Styles */

/* Enhanced Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    font-family: var(--font-primary);
    border-radius: var(--button-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    gap: var(--space-2);
    line-height: var(--leading-none);
    user-select: none;
    white-space: nowrap;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px var(--orange-focus);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Button Variants */
.btn-primary {
    background: var(--primary-orange);
    color: var(--theme-white);
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--theme-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-md);
}

.btn-outline {
    background: transparent;
    color: var(--theme-gray-dark);
    border-color: var(--theme-gray-light);
}

.btn-outline:hover {
    background: var(--theme-gray-dark);
    color: var(--theme-white);
    border-color: var(--theme-gray-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-orange);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--bg-primary-light);
    color: var(--orange-hover);
}

.btn-white {
    background: var(--theme-white);
    color: var(--primary-orange);
    border-color: var(--theme-white);
}

.btn-white:hover {
    background: var(--bg-gray-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Button Sizes */
.btn-xs {
    padding: var(--space-1-5) var(--space-3);
    font-size: var(--text-xs);
    gap: var(--space-1);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    gap: var(--space-1-5);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    gap: var(--space-3);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
    gap: var(--space-3);
}

.btn-full {
    width: 100%;
}

/* Enhanced Card Components */
.card {
    background: var(--theme-white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--theme-gray-light);
}

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

.card-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--theme-gray-light);
}

.card-body {
    padding: var(--space-6);
}

.card-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--theme-gray-light);
    background: var(--bg-gray-lighter);
}

.card-compact .card-header,
.card-compact .card-body,
.card-compact .card-footer {
    padding: var(--space-4);
}

.card-spacious .card-header,
.card-spacious .card-body,
.card-spacious .card-footer {
    padding: var(--space-8);
}

/* Form Components */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--font-semibold);
    color: var(--secondary-dark);
    font-size: var(--text-sm);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--theme-gray-light);
    border-radius: var(--input-radius);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background: var(--theme-white);
    color: var(--theme-gray-dark);
    line-height: var(--leading-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px var(--orange-focus);
}

.form-control:disabled {
    background: var(--bg-gray-light);
    color: var(--theme-gray);
    cursor: not-allowed;
}

.form-control-sm {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
}

.form-control-lg {
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-lg);
}

/* Badge Components */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--badge-radius);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    line-height: var(--leading-none);
}

.badge-primary {
    background: var(--bg-primary-light);
    color: var(--primary-orange);
}

.badge-secondary {
    background: var(--bg-gray-light);
    color: var(--theme-gray-dark);
}

.badge-success {
    background: var(--bg-green-light);
    color: #16a34a;
}

.badge-warning {
    background: var(--bg-yellow-light);
    color: #ca8a04;
}

.badge-danger {
    background: var(--bg-red-light);
    color: #dc2626;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .sm\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    
    .sm\:col-span-1 { grid-column: span 1 / span 1; }
    .sm\:col-span-2 { grid-column: span 2 / span 2; }
    .sm\:col-span-3 { grid-column: span 3 / span 3; }
    .sm\:col-span-4 { grid-column: span 4 / span 4; }
    .sm\:col-span-5 { grid-column: span 5 / span 5; }
    .sm\:col-span-6 { grid-column: span 6 / span 6; }
    .sm\:col-span-full { grid-column: 1 / -1; }
    
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:flex-col { flex-direction: column; }
}

@media (min-width: 768px) {
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    
    .md\:col-span-1 { grid-column: span 1 / span 1; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:col-span-3 { grid-column: span 3 / span 3; }
    .md\:col-span-4 { grid-column: span 4 / span 4; }
    .md\:col-span-5 { grid-column: span 5 / span 5; }
    .md\:col-span-6 { grid-column: span 6 / span 6; }
    .md\:col-span-full { grid-column: 1 / -1; }
    
    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:flex-col { flex-direction: column; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-6 { grid-column: span 6 / span 6; }
    .lg\:col-span-full { grid-column: 1 / -1; }
    
    .lg\:flex { display: flex; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:flex-col { flex-direction: column; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    
    .xl\:col-span-1 { grid-column: span 1 / span 1; }
    .xl\:col-span-2 { grid-column: span 2 / span 2; }
    .xl\:col-span-3 { grid-column: span 3 / span 3; }
    .xl\:col-span-4 { grid-column: span 4 / span 4; }
    .xl\:col-span-5 { grid-column: span 5 / span 5; }
    .xl\:col-span-6 { grid-column: span 6 / span 6; }
    .xl\:col-span-full { grid-column: 1 / -1; }
    
    .xl\:flex { display: flex; }
    .xl\:flex-row { flex-direction: row; }
    .xl\:flex-col { flex-direction: column; }
}

/* Legacy button styles maintained for backward compatibility */
.btn-secondary-white {
    background: transparent;
    color: var(--theme-white);
    border: 2px solid var(--theme-white);
}

.btn-secondary-white:hover {
    background: var(--theme-white);
    color: var(--primary-orange);
}

/* ========================
   Page Loader
   ======================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.spinner {
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--bg-gray-light);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.loader-content p {
    color: var(--theme-gray);
}

/* ========================
   Scroll Progress Bar
   ======================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-orange);
    z-index: 50;
    transition: all var(--transition-normal);
    width: 0%;
}

/* ========================
   Enhanced Navigation Header with Glass Morphism
   ======================== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-orange-gradient);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Main Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(234, 96, 4, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(234, 96, 4, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    padding: 0 var(--space-6);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    transition: padding var(--transition-normal);
}

.navbar.scrolled .nav-wrapper {
    padding: var(--space-3) 0;
}

/* Logo/Brand */
.nav-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-brand .logo {
    height: 40px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-4);
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 2rem;
}

.nav-link {
    position: relative;
    color: var(--theme-gray-dark);
    font-weight: 400;
    font-size: var(--text-base);
    text-decoration: none;
    padding: var(--space-2) 0;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange-gradient);
    transition: all var(--transition-normal) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
    transform: translateY(-1px);
}

/* Enhanced active state with glow effect */
.nav-link.active {
    text-shadow: 0 0 8px rgba(234, 96, 4, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Navigation with Magnetic Hover Effects */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.dropdown-toggle i {
    transition: transform var(--transition-normal);
    font-size: var(--text-sm);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(234, 96, 4, 0.1);
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: var(--space-3) 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1002;
}

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

.dropdown-menu li {
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

/* Staggered animation for dropdown items */
.nav-dropdown:hover .dropdown-menu li:nth-child(1) { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.1s; 
}
.nav-dropdown:hover .dropdown-menu li:nth-child(2) { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.2s; 
}
.nav-dropdown:hover .dropdown-menu li:nth-child(3) { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.3s; 
}
.nav-dropdown:hover .dropdown-menu li:nth-child(4) { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.4s; 
}
.nav-dropdown:hover .dropdown-menu li:nth-child(5) { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.5s; 
}

.dropdown-menu a {
    display: block;
    padding: var(--space-3) var(--space-5);
    color: var(--theme-gray-dark);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--bg-primary-light);
    transition: width var(--transition-fast);
    z-index: -1;
}

.dropdown-menu a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    width: 100%;
}

/* CTA Button in Navigation */
.nav-cta {
    display: none;
    align-items: center;
}

/* Mobile Menu Toggle with Morphing Animation */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all var(--transition-normal);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--theme-gray-dark);
    border-radius: 1px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

.hamburger:not(:last-child) {
    margin-bottom: 5px;
}

/* Enhanced Hamburger Animation States with Morphing Effects */
.nav-toggle.morphing .hamburger {
    animation: hamburgerMorph 0.3s ease-in-out;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-orange);
    animation: hamburgerRotateIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    transform: scale(0) rotate(180deg);
    animation: hamburgerFadeOut 0.2s ease-out;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-orange);
    animation: hamburgerRotateIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hamburger Animation Keyframes */
@keyframes hamburgerMorph {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes hamburgerRotateIn {
    0% { 
        transform: rotate(0deg) translate(0, 0) scale(1);
        background: var(--theme-gray-dark);
    }
    50% { 
        transform: rotate(22.5deg) translate(3px, 3px) scale(1.1);
        background: var(--primary-orange-light);
    }
    100% { 
        transform: rotate(45deg) translate(6px, 6px) scale(1);
        background: var(--primary-orange);
    }
}

@keyframes hamburgerFadeOut {
    0% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.5; 
        transform: scale(0.5) rotate(90deg);
    }
    100% { 
        opacity: 0; 
        transform: scale(0) rotate(180deg);
    }
}

/* Enhanced Mobile Navigation Menu with Slide Effects */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    transform: translateY(-20px);
}

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

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for mobile menu items */
.mobile-menu.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-nav-list li:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu.active .mobile-nav-list li:nth-child(7) { transition-delay: 0.7s; }

.mobile-nav-list a {
    color: var(--theme-gray-dark);
    text-decoration: none;
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    transition: all var(--transition-normal);
    display: block;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--button-radius);
    position: relative;
    overflow: hidden;
}

.mobile-nav-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-orange-gradient);
    transition: width var(--transition-normal);
    z-index: -1;
}

.mobile-nav-list a:hover {
    color: var(--theme-white);
    transform: scale(1.05);
}

.mobile-nav-list a:hover::before {
    width: 100%;
}

/* Mobile navigation active states */
.mobile-nav-list a.active {
    color: var(--theme-white);
    background: var(--primary-orange-gradient);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(234, 96, 4, 0.3);
}

.mobile-nav-list a.active::before {
    width: 100%;
}

.mobile-cta {
    margin-top: var(--space-8);
}

.logo {
    height: 45px;
    width: auto;
}

/* Desktop Navigation Display */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Tablet Navigation Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-nav-list a {
        font-size: var(--text-xl);
    }
}

/* Mobile Navigation Adjustments */
@media (max-width: 767px) {
    .navbar .container {
        padding: 0 var(--space-4);
    }
    
    .nav-brand .logo {
        height: 40px;
    }
    
    .navbar.scrolled .nav-brand .logo {
        height: 35px;
    }
    
    .mobile-nav-list a {
        font-size: var(--text-lg);
        padding: var(--space-2) var(--space-4);
    }
}

/* ========================
   Interactive Cursor System
   ======================== */

/* Hide default cursor on desktop */
@media (min-width: 1024px) {
    * {
        cursor: none !important;
    }
    
    /* Show default cursor for form inputs and text areas */
    input, textarea, select, [contenteditable] {
        cursor: text !important;
    }
}

/* Basic Custom Cursor (without animation) */
.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: none; /* No animation */
}

/* Basic cursor states (without animation) */
.custom-cursor.hover-button {
    width: 15px;
    height: 15px;
    background: var(--primary-orange-light);
}

.custom-cursor.hover-link {
    width: 8px;
    height: 8px;
    background: var(--primary-orange-dark);
}

/* Hide custom cursor on mobile devices */
@media (max-width: 1023px) {
    .custom-cursor {
        display: none !important;
    }
}

/* Enhanced Hover Effects for Interactive Elements */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 96, 4, 0.3);
}

/* Card Hover Effects */
.card:hover,
.service-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #111827 0%, #374151 50%, #111827 100%);
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1);
    animation: heroZoom 8s ease-in-out infinite;
}

@keyframes heroZoom {

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

    50% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: var(--theme-white);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #f7efef;
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleIn 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSubtitleIn 1s ease-out 0.8s forwards;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroCTAIn 1s ease-out 1.1s forwards;
}

.hero-image {
    display: none;
}

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

.hero-image img {
    border-radius: var(--section-radius);
    box-shadow: var(--shadow-xl);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: var(--theme-white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

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

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

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

/* ========================
   Services Section
   ======================== */
.bg-gray-light {
    background-color: var(--bg-gray-light);
}

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

.service-card {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-normal);
}

.service-icon i {
    font-size: 1.875rem;
}

.bg-primary-light {
    background: var(--bg-primary-light);
}

.bg-primary-light i {
    color: var(--primary-orange);
}

.bg-green-light {
    background: var(--bg-green-light);
}

.bg-green-light i {
    color: #16a34a;
}

.bg-blue-light {
    background: var(--bg-blue-light);
}

.bg-blue-light i {
    color: #2563eb;
}

.bg-yellow-light {
    background: var(--bg-yellow-light);
}

.bg-yellow-light i {
    color: #ca8a04;
}

.bg-purple-light {
    background: var(--bg-purple-light);
}

.bg-purple-light i {
    color: #9333ea;
}

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

.service-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.service-description {
    color: var(--theme-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-orange);
    font-weight: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 0.5rem;
}

/* ========================
   About Section
   ======================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: var(--text-xl);
    color: var(--theme-gray);
    margin-bottom: 2rem;
}

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

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

.counter {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: var(--theme-gray);
}

.about-image img {
    border-radius: var(--section-radius);
    box-shadow: var(--shadow-xl);
}

/* ========================
   CTA Section
   ======================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--primary-orange);
    color: var(--theme-white);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: var(--text-xl);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* ========================
   Footer
   ======================== */
.site-footer {
    background: var(--secondary-dark);
    color: var(--theme-white);
}

.footer-main {
    padding: 4rem 0 2.5rem;
}

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

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    height: 76px;
    width: 200px;
}


.footer-description {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(234, 96, 4, 0.2);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.social-links i {
    color: var(--primary-orange);
    transition: color var(--transition-fast);
}

.social-links a:hover i {
    color: var(--theme-white);
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color var(--transition-fast);
}

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

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-orange);
    margin-top: 0.125rem;
}

.contact-info span {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

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

.footer-legal a {
    color: #9ca3af;
    transition: color var(--transition-fast);
}

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

/* ========================
   Back to Top Button
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-orange);
    color: var(--theme-white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

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

/* ========================
   Utility Classes
   ======================== */
.text-primary {
    color: var(--primary-orange);
}

.font-primary {
    font-family: var(--font-primary);
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Lazy loading styles consolidated in lazy-loading.css */

/* Stagger Animation Delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* ========================
   Responsive Design
   ======================== */
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

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

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .nav-cta {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

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

    .hero-image {
        display: block;
    }

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

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

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

/* =
=======================
   Enhanced Animations & Effects
   ======================== */

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

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

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

/* Enhanced Button Animations */
.btn-animated {
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-animated:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(234, 96, 4, 0.3);
}

.btn-animated:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animated:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* 3D Hover Effects */
.hover-lift-3d {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.hover-lift-3d:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(234, 96, 4, 0.1);
}

/* Floating Elements - Updated to White with Faster Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.4) !important;
    border-radius: 50%;
    animation: floatFaster 4s ease-in-out infinite !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2) !important;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 1.3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 2.6s;
}

@keyframes floatFaster {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Hide floating elements on mobile for performance */
@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Hero background image styles moved to main hero section above */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.8) 0%,
            rgba(30, 41, 59, 0.6) 50%,
            transparent 100%);
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(234, 96, 4, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .image-overlay,
.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--theme-white);
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: var(--theme-white);
}

.scroll-text {
    font-size: var(--text-sm);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Preview Cards */
.blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background: var(--theme-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: var(--theme-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 0.75rem;
    color: var(--secondary-dark);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--theme-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--theme-gray-dark);
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(234, 96, 4, 0.05);
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(234, 96, 4, 0.1);
    transform: translateY(-2px);
}

.counter {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    display: block;
}

/* Enhanced Social Links */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(234, 96, 4, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(234, 96, 4, 0.3);
}

.social-link i {
    color: var(--primary-orange);
    transition: color 0.3s ease;
    z-index: 1;
}

.social-link:hover i {
    color: var(--theme-white);
}

/* Enhanced Service Cards */
.service-card {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-orange-gradient);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(234, 96, 4, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

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

.service-icon i {
    font-size: 1.875rem;
    transition: all 0.3s ease;
}

/* Pulse Animation for Loading */
@keyframes pulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

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

/* Enhanced Mobile Responsiveness */
@media (min-width: 640px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .hero-image {
        display: block;
    }
}

/* Performance Optimizations */
/* Lazy loading styles moved to lazy-loading.css to prevent conflicts */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .floating-shape,
    .scroll-arrow,
    .gradient-text {
        animation: none;
    }

    .hover-lift-3d:hover,
    .btn-animated:hover {
        transform: none;
    }
}

/*========================Blog Page Styles========================*/
/* Blog Hero Section */
.blog-hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--theme-gray-dark) 100%);
    color: var(--theme-white);
    text-align: center;
}

.blog-hero-content h1 {
    color: var(--theme-white);
    margin-bottom: 1rem;
}

.blog-hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-xl);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Filter Section */
.blog-filter-section {
    padding: 2rem 0;
    background: var(--theme-white);
    border-bottom: 1px solid var(--theme-gray-light);
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--theme-gray-light);
    background: transparent;
    color: var(--theme-gray);
    border-radius: 25px;
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    color: var(--theme-white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.blog-search {
    max-width: 400px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
}

.search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-gray);
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--theme-gray-light);
    border-radius: 25px;
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(234, 96, 4, 0.1);
}

/* Featured Article */
.featured-article-section {
    padding: 3rem 0;
    background: var(--bg-gray-light);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--theme-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: var(--theme-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
}

.featured-content {
    padding: 2rem;
}

.article-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: 1rem;
}

.article-category.construction {
    background: rgba(234, 96, 4, 0.1);
    color: var(--primary-orange);
}

.article-category.agriculture {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.article-category.oil-gas {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.article-category.mining {
    background: rgba(202, 138, 4, 0.1);
    color: #ca8a04;
}

.article-category.real-estate {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.featured-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--secondary-dark);
    line-height: 1.2;
}

.featured-excerpt {
    font-size: var(--text-lg);
    color: var(--theme-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--theme-gray-light);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: var(--font-semibold);
    color: var(--secondary-dark);
}

.author-title {
    font-size: var(--text-sm);
    color: var(--theme-gray);
}

.article-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.article-date,
.read-time {
    font-size: var(--text-sm);
    color: var(--theme-gray);
}

/* Blog Grid */
.blog-articles-section {
    background: var(--theme-white);
}

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

.read-more-link {
    color: var(--primary-orange);
    font-weight: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--secondary-dark);
    color: var(--theme-white);
    text-align: center;
}

.newsletter-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--theme-white);
}

.newsletter-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form .form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--theme-white);
    font-size: var(--text-base);
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(234, 96, 4, 0.2);
}

/* Responsive Design for Blog */
@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form .form-group {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr 1fr;
    }

    .featured-image {
        height: auto;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-filters {
        justify-content: flex-start;
    }
}

/* Blog Category Colors */
.blog-category.construction {
    background: rgba(234, 96, 4, 0.1);
    color: var(--primary-orange);
}

.blog-category.agriculture {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.blog-category.oil-gas {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.blog-category.mining {
    background: rgba(202, 138, 4, 0.1);
    color: #ca8a04;
}

.blog-category.real-estate {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

/* =====
===================
   Page Hero Styles
   ======================== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--theme-gray-dark) 100%);
    color: var(--theme-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero with background image */
.page-hero.hero-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-hero.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.page-hero.hero-with-bg .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-title {
    color: var(--theme-white);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-xl);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Specific hero backgrounds */
.hero-about {
    background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=2126&q=80');
}

.hero-services {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.hero-projects {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.hero-contact {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

.hero-faq {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.hero-blog {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* ========================
   Contact Page Styles
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.contact-info>p {
    margin-bottom: 2rem;
    color: var(--theme-gray);
    font-size: var(--text-lg);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-dark);
    font-size: var(--text-lg);
}

.contact-item p {
    color: var(--theme-gray);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-semibold);
    color: var(--secondary-dark);
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--theme-gray-light);
    border-radius: 10px;
    font-size: var(--text-base);
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--theme-white);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px var(--orange-focus);
}

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

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Responsive Design for Contact */
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

/*

/* ======
==================
   About Page Styles
   ======================== */

/* Mission, Vision, Values Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mvv-card {
    background: var(--theme-white);
    padding: 2.5rem 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mvv-icon {
    width: 4rem;
    height: 4rem;
    background: var(--bg-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

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

.mvv-icon i {
    font-size: 1.875rem;
    color: var(--primary-orange);
}

.mvv-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.mvv-description {
    color: var(--theme-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.mvv-values-list {
    list-style: none;
    text-align: left;
    color: var(--theme-gray);
    line-height: 1.8;
}

.mvv-values-list li {
    margin-bottom: 0.75rem;
}

.mvv-values-list strong {
    color: var(--primary-orange);
    font-weight: var(--font-semibold);
}

/* Stats Showcase Grid */
.stats-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-showcase-item {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-orange-gradient);
    transition: left 0.3s ease;
}

.stat-showcase-item:hover::before {
    left: 0;
}

.stat-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-showcase-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-showcase-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.stat-showcase-item .counter {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-showcase-label {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--secondary-dark);
    margin-bottom: 0.25rem;
}

.stat-showcase-desc {
    font-size: var(--text-sm);
    color: var(--theme-gray);
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.leadership-card {
    background: var(--theme-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.leadership-image {
    height: 250px;
    overflow: hidden;
}

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

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

.leadership-content {
    padding: 2rem;
}

.leadership-name {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 0.5rem;
    color: var(--secondary-dark);
}

.leadership-title {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.leadership-bio {
    color: var(--theme-gray);
    line-height: 1.6;
    margin: 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-orange);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-orange);
    color: var(--theme-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    margin: 0 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 0.75rem;
    color: var(--secondary-dark);
}

.timeline-content p {
    color: var(--theme-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for About Page */
@media (min-width: 640px) {
    .stats-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1024px) {
    .stats-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 4rem;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: var(--text-base);
    }

    .timeline-content {
        margin: 0;
        margin-top: 3rem;
        width: 100%;
    }
}

/* =====
===================
   Services Page Styles
   ======================== */

/* Services Overview Grid */
.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-overview-card {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-orange-gradient);
    transition: left 0.3s ease;
}

.service-overview-card:hover::before {
    left: 0;
}

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

.service-overview-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--primary-orange);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.service-overview-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.service-overview-card p {
    color: var(--theme-gray);
    line-height: 1.6;
    margin: 0;
}

/* Service Detail Sections */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.service-detail-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-badge.construction {
    background: rgba(234, 96, 4, 0.1);
    color: var(--primary-orange);
}

.service-detail-badge.agriculture {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.service-detail-badge.oil-gas {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.service-detail-badge.mining {
    background: rgba(202, 138, 4, 0.1);
    color: #ca8a04;
}

.service-detail-badge.real-estate {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.service-detail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
    color: var(--secondary-dark);
}

.service-detail-description {
    font-size: var(--text-lg);
    color: var(--theme-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-feature i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-feature h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: 0.25rem;
    color: var(--secondary-dark);
}

.service-feature p {
    color: var(--theme-gray);
    margin: 0;
}

.service-detail-image img {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-choose-item {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-choose-icon {
    width: 4rem;
    height: 4rem;
    background: var(--bg-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-icon i {
    font-size: 1.875rem;
    color: var(--primary-orange);
}

.why-choose-item h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.why-choose-item p {
    color: var(--theme-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Services Page */
@media (min-width: 640px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 768px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* =======
=================
   Projects Page Styles
   ======================== */

/* Project Stats Grid */
.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-stat-item {
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-orange-gradient);
    transition: left 0.3s ease;
}

.project-stat-item:hover::before {
    left: 0;
}

.project-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-stat-item .counter {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.project-stat-label {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--secondary-dark);
    margin-bottom: 0.25rem;
}

.project-stat-desc {
    font-size: var(--text-sm);
    color: var(--theme-gray);
}

/* Project Filter Section */
.project-filter-section {
    padding: 2rem 0;
    background: var(--theme-white);
    border-bottom: 1px solid var(--theme-gray-light);
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.project-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--theme-gray-light);
    background: transparent;
    color: var(--theme-gray);
    border-radius: 25px;
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-filter-btn:hover,
.project-filter-btn.active {
    background: var(--primary-orange);
    color: var(--theme-white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Featured Projects Grid */
.featured-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.featured-project-card {
    background: var(--theme-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
}

.project-category.construction {
    background: rgba(234, 96, 4, 0.9);
    color: var(--theme-white);
}

.project-category.agriculture {
    background: rgba(34, 197, 94, 0.9);
    color: var(--theme-white);
}

.project-category.oil-gas {
    background: rgba(59, 130, 246, 0.9);
    color: var(--theme-white);
}

.project-category.mining {
    background: rgba(202, 138, 4, 0.9);
    color: var(--theme-white);
}

.project-category.real-estate {
    background: rgba(147, 51, 234, 0.9);
    color: var(--theme-white);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.project-status.completed {
    background: rgba(34, 197, 94, 0.9);
    color: var(--theme-white);
}

.project-status.ongoing {
    background: rgba(234, 96, 4, 0.9);
    color: var(--theme-white);
}

.featured-project-content {
    padding: 2rem;
}

.project-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.project-description {
    color: var(--theme-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
}

.project-detail i {
    color: var(--primary-orange);
    width: 1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    background: var(--theme-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
}

.project-content {
    padding: 1.5rem;
}

.project-card .project-title {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
}

.project-card .project-description {
    margin-bottom: 1rem;
    font-size: var(--text-sm);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--theme-gray);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-location::before {
    content: '📍';
    font-size: 0.75rem;
}

.project-year {
    font-weight: var(--font-medium);
    color: var(--primary-orange);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--theme-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.process-number {
    background: var(--primary-orange);
    color: var(--theme-white);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    flex-shrink: 0;
}

.process-content h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 0.75rem;
    color: var(--secondary-dark);
}

.process-content p {
    color: var(--theme-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Projects Page */
@media (min-width: 640px) {
    .project-details {
        flex-direction: row;
        justify-content: space-between;
    }

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

@media (min-width: 768px) {
    .project-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================
   Hero Carousel Styles
   ======================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.text-primary {
    color: #ea6004;
}

.gradient-text {
    background: linear-gradient(45deg, #ea6004, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}/*
 ========================
   Global Button Styles with Glassmorphic Effects
   ======================== */

/* Base button styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

/* Large button variant */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Primary button (Schedule Consultation) */
.btn-primary {
    background: #ea6004;
    color: white;
    border: 2px solid #ea6004;
}

/* Secondary button (View Projects) - Glassmorphic */
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ea6004;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Bottom-up fill hover effect for all buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #666666;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

/* Primary button hover effect */
.btn-primary::before {
    background: linear-gradient(180deg, #666666 0%, #555555 100%);
}

/* Secondary button hover effect */
.btn-secondary::before {
    background: linear-gradient(180deg, #666666 0%, #555555 100%);
}

/* Hover states */
.btn:hover::before {
    height: 100%;
}

.btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Ensure text and icons stay above the fill effect */
.btn span,
.btn i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Button ripple effect */
.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Enhanced glassmorphic effect for secondary button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Special hover state for glassmorphic button */
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Button animations */
.btn-animated {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-animated:hover {
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 96, 4, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(234, 96, 4, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 96, 4, 0);
    }
}

/* White button variants (for CTA sections) */
.btn-white {
    background: white;
    color: #ea6004;
    border: 2px solid white;
}

.btn-white::before {
    background: linear-gradient(180deg, #666666 0%, #555555 100%);
}

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

.btn-secondary-white::before {
    background: linear-gradient(180deg, #666666 0%, #555555 100%);
}

/* Full width button for mobile */
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }
}

/* ========================
   Floating Elements (White Circles with Faster Animation)
   ======================== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: floatSlower 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 1.3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 2.6s;
}

@keyframes floatFaster {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Hide floating elements on mobile for performance */
@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
}/* Enhanced
 Floating Elements - More Visible White Circles */
.hero-section .floating-elements .floating-shape {
    background: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-section .floating-elements .floating-shape.shape-1,
.hero-section .floating-elements .floating-shape.shape-2,
.hero-section .floating-elements .floating-shape.shape-3 {
    animation: floatSlowerVisible 8s ease-in-out infinite !important;
}

@keyframes floatSlowerVisible {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-25px) rotate(90deg);
        opacity: 0.8;
    }
}

/* Responsive hero styles */
@media (max-width: 768px) {
    .page-hero.hero-with-bg {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }
    
    .page-hero .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .page-hero .hero-subtitle {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .page-hero.hero-with-bg {
        min-height: 40vh;
        padding: 5rem 0 2.5rem;
    }
    
    .page-hero .hero-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    
    .page-hero .hero-subtitle {
        font-size: var(--text-base);
    }
}


/* Footer Social Icons - White Color */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #ffffff !important;
}

.social-link i {
    color: #ffffff !important;
}
