/* =====================================================
   PLA - POWER LINE ACCESSORIES
   Premium Industrial Website with Glassmorphism
   ===================================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Brand Colors - ENSOL Official Palette */
    --primary: #e90f2b;
    --primary-dark: #B50015;
    --primary-light: #FF4D63;
    --secondary: #000000;
    --secondary-light: #333333;

    /* Neutral Colors - ENSOL Palette */
    --neutral-cream: #EDEBE2;
    --neutral-light: #DADDDF;
    --neutral-mid: #C1C3C2;
    --neutral-warm: #DBD8C7;
    --neutral-dark: #B6BBBB;
    --neutral-darker: #85898A;

    /* Text Colors */
    --dark: #000000;
    --dark-blue: #111111;
    --navy: #111111;
    --gray-900: #111111;
    --gray-800: #222222;
    --gray-700: #333333;
    --gray-600: #555555;
    --gray-500: #777777;
    --gray-400: #B6BBBB;
    --gray-300: #C1C3C2;
    --gray-200: #DADDDF;
    --gray-100: #EDEBE2;
    --white: #ffffff;

    /* Accent Colors */
    --accent-green: #2e7d32;
    --accent-yellow: #fbc02d;
    --accent-red: #e90f2b;

    /* Glassmorphism - Updated for light background */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --glass-blur: blur(20px);

    /* Typography */
    --font-primary: 'Neue Montreal', 'Space Grotesk', sans-serif;
    --font-secondary: 'Neue Montreal', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */

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

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

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

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

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

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

ul,
ol {
    list-style: none;
}

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

/* =====================================================
   GLASSMORPHISM UTILITIES
   ===================================================== */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
}

.glass-card-subtle {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
}

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

/* =====================================================
   ORGANIC SHAPES (Background Elements)
   ===================================================== */

.organic-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #e1002e;
    top: -200px;
    right: -200px;
    animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #333333;
    bottom: -100px;
    left: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #e1002e;
    top: 40%;
    left: 30%;
    animation: float-slow 18s ease-in-out infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(40px, 10px) rotate(3deg);
    }
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
}

.glass-nav.nav-hidden {
    transform: translateY(-100%);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
}

.logo {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: #e1002e;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #555555;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111111;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e1002e;
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: #e1002e;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    padding: var(--space-sm) var(--space-lg);
    background: #e1002e;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(225, 0, 46, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(225, 0, 46, 0.4);
    background: #b8001f;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(225, 0, 46, 0.08);
    color: #e1002e;
    padding-left: 24px;
}

.dropdown-menu a::after {
    display: none;
}

/* Dropdown Categories */
.dropdown-category {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-category:last-child {
    border-bottom: none;
}

.category-title {
    display: block;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e1002e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-submenu li {
    list-style: none;
}

.dropdown-submenu a,
.dropdown-submenu span {
    display: block;
    padding: 8px 20px 8px 28px;
    font-size: 0.82rem;
    color: #555;
    transition: all 0.2s ease;
}

.dropdown-submenu a:hover {
    background: rgba(225, 0, 46, 0.05);
    color: #e1002e;
    padding-left: 32px;
}

.dropdown-submenu span {
    color: #888;
    cursor: default;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111111;
    transition: var(--transition-base);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-lg) 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero Background Image */
.hero-background-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.65) 40%,
            rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(0px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding-top: var(--space-3xl);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
    color: #555555;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #e1002e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero-title span {
    display: block;
}

.hero-title .line-1 {
    color: #555555;
    font-weight: 500;
}

.hero-title .line-2 {
    color: #111111;
}

.hero-title .highlight {
    color: #e1002e;
    -webkit-text-fill-color: #e1002e;
}

.hero-description {
    font-size: 1.125rem;
    color: #555555;
    max-width: 540px;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-primary {
    background: #e1002e;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(225, 0, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(225, 0, 46, 0.4);
    background: #b8001f;
}

.btn-primary i {
    transition: var(--transition-base);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    color: #111111;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #e1002e;
    border-color: #e1002e;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #111111;
}

.btn-outline:hover {
    background: #ffffff;
    border-color: #e1002e;
    color: #e1002e;
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-top: var(--space-md);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    min-width: 120px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #e1002e;
    line-height: 1;
}

.stat-plus,
.stat-unit {
    font-size: 1.5rem;
    color: #e1002e;
    font-weight: 600;
}

.stat-label {
    font-size: 0.75rem;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.stat-value-wrapper .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e1002e;
}

.stat-value-wrapper .stat-plus,
.stat-value-wrapper .stat-unit {
    font-size: 1.5rem;
    color: #e1002e;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: #777777;
    font-size: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #777777;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #777777;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

@keyframes scroll-wheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* =====================================================
   SECTION COMMON STYLES
   ===================================================== */

section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #e1002e;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111111;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #555555;
}

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

.about-section {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text .lead {
    font-size: 1rem;
    color: #555555;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-text p {
    color: #555555;
    line-height: 1.8;
}

.about-text strong {
    color: #e1002e;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-lg);
    transition: var(--transition-base);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
}

.value-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1002e;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
    color: #ffffff;
}

.value-card h4 {
    font-size: 1rem;
    color: #111111;
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.875rem;
    color: #555555;
}

/* About Visual */
.about-visual {
    position: relative;
    padding-left: var(--space-xl);
}

.experience-badge {
    position: absolute;
    top: 50px;
    left: 0;
    padding: var(--space-lg) var(--space-xl);
    z-index: 10;
    text-align: center;
    border: 1px solid rgba(225, 0, 46, 0.1);
    animation: float-slow 8s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: #e1002e;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #333333;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.image-stack {
    position: relative;
    height: 600px;
}

.img-frame {
    position: absolute;
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.img-frame.frame-1 {
    width: 80%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-frame.frame-2 {
    width: 65%;
    height: 50%;
    bottom: 40px;
    left: 20px;
    z-index: 2;
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.img-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

/* Remove Image Placeholder Styles */

.about-shape-1 {
    width: 400px;
    height: 400px;
    background: #e1002e;
    top: 20%;
    right: -150px;
    opacity: 0.04;
}

.about-shape-2 {
    width: 300px;
    height: 300px;
    background: #333333;
    bottom: 10%;
    left: -100px;
    opacity: 0.03;
}

/* =====================================================
   ENERGY SOLUTIONS SECTION
   ===================================================== */

.products-section {
    background: transparent;
}

.product-features {
    margin-top: var(--space-md);
}

.product-features li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--primary);
    margin-right: var(--space-sm);
}

.product-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

.solution-block {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    position: relative;
}

.solution-block.reverse {
    flex-direction: row-reverse;
}

/* Image Container */
.solution-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

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

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

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(225, 0, 46, 0.1), transparent);
    pointer-events: none;
}

/* Content Container */
.solution-content {
    flex: 1;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.solution-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: #111111;
}

.solution-content p {
    color: #555555;
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
}

/* Responsive adjustments for Products */
@media (max-width: 900px) {

    .solution-block,
    .solution-block.reverse {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .solution-image {
        width: 100%;
        height: 300px;
    }
}


/* =====================================================
   WHY SECTION
   ===================================================== */

.why-section {
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
}

.why-main {
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
}

.why-main-content h3 {
    font-size: 1.75rem;
    color: #111111;
    margin-bottom: var(--space-md);
}

.why-main-content p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.why-stats {
    display: flex;
    gap: var(--space-xl);
}

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

.why-stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #e1002e;
    line-height: 1;
}

.why-stat-label {
    font-size: 0.75rem;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.why-main-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icons {
    position: relative;
    width: 200px;
    height: 200px;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    color: #e1002e;
    font-size: 1.25rem;
    animation: float-icon 5s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 25%;
    right: 0;
    animation-delay: 0.5s;
}

.float-icon:nth-child(3) {
    bottom: 25%;
    right: 0;
    animation-delay: 1s;
}

.float-icon:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.float-icon:nth-child(5) {
    bottom: 25%;
    left: 0;
    animation-delay: 2s;
}

.float-icon:nth-child(6) {
    top: 25%;
    left: 0;
    animation-delay: 2.5s;
}

@keyframes float-icon {

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

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

.float-icon:nth-child(1) {
    animation: float-icon-center 5s ease-in-out infinite;
}

.float-icon:nth-child(4) {
    animation: float-icon-center 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float-icon-center {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.why-card {
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: var(--transition-base);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
}

.why-card:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1002e;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 1.1rem;
}

.why-card h4 {
    color: #111111;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.why-card p {
    color: #555555;
    font-size: 0.875rem;
}

/* =====================================================
   SECTORS SECTION
   ===================================================== */

.sectors-section {
    background: transparent;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.sector-card-new {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sector-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.sector-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sector-card-new:hover .sector-bg {
    transform: scale(1.1);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    color: white;
}

.sector-overlay .sector-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: #e1002e;
}

.sector-overlay h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-xs);
}

.sector-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 90%;
}

.sectors-shape-1 {
    width: 350px;
    height: 350px;
    background: #333333;
    top: 20%;
    left: -100px;
    opacity: 0.03;
}

.sectors-shape-2 {
    width: 400px;
    height: 400px;
    background: #e1002e;
    bottom: -100px;
    right: -100px;
    opacity: 0.04;
}

/* =====================================================
   CERTIFICATION SECTION
   ===================================================== */
.certification-section {
    background: #fafafa;
}

.certification-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    padding: var(--space-2xl);
    background: #ffffff;
}

.certification-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.certification-image img {
    width: 100%;
    height: auto;
    display: block;
}

.certification-content {
    flex: 1;
}

.cert-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(225, 0, 46, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(225, 0, 46, 0.1);
}

.cert-badge i {
    font-size: 1.5rem;
    color: #e1002e;
    flex-shrink: 0;
}

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

.cert-badge-text span {
    font-weight: 600;
    color: #333333;
    font-size: 0.95rem;
}

.cert-badge-text small {
    font-size: 0.75rem;
    color: #666;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .certification-wrapper {
        flex-direction: column;
    }

    .cert-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: var(--space-3xl) 0;
}

.cta-content {
    padding: var(--space-3xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2xl);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 2rem;
    color: #111111;
    margin-bottom: var(--space-sm);
}

.cta-text p {
    color: #555555;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

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

.contact-section {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
}

.contact-grid-simple {
    grid-template-columns: 1fr 1.5fr;
}

.contact-map-large {
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-map-large iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: var(--transition-base);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
}

.contact-card:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-map {
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1002e;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-details h4 {
    color: #111111;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-details p {
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: var(--space-2xl);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111111;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    color: #111111;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e1002e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(225, 0, 46, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #ffffff;
}

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

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #111111;
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    align-items: start;
}

.footer-brand p {
    color: #777777;
    font-size: 0.9rem;
    margin: var(--space-md) 0 var(--space-lg);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: #ffffff;
    transition: var(--transition-base);
}

.social-link:hover {
    background: #e1002e;
    border-color: #e1002e;
    color: #ffffff;
}

.footer-links h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: #777777;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #e1002e;
}

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

.footer-bottom p {
    color: #777777;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: #777777;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: #e1002e;
}

/* Footer Enquiry Form */
.footer-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-enquiry-form input,
.footer-enquiry-form select {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-enquiry-form input::placeholder {
    color: #999;
}

.footer-enquiry-form input:focus,
.footer-enquiry-form select:focus {
    outline: none;
    border-color: #e1002e;
    background: rgba(255, 255, 255, 0.1);
}

.footer-enquiry-form select {
    cursor: pointer;
}

.footer-enquiry-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

.footer-enquiry-form .btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.footer-address {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
}

.footer-email {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
}

.footer-email i {
    margin-right: 6px;
    color: #e1002e;
}

.footer-contacts li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contacts li strong {
    color: #e1002e;
    font-size: 0.8rem;
}

.footer-contacts a {
    color: #ffffff !important;
}

.footer-contacts a:hover {
    color: #e1002e !important;
}

.footer-contact-email {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-email i {
    color: #e1002e;
    margin-right: 6px;
}

/* Clean footer contacts style */
.footer-contacts-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts-clean li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
    flex-wrap: wrap;
}

.footer-contacts-clean li i {
    color: #e1002e;
    width: 16px;
    flex-shrink: 0;
}

.footer-contacts-clean li strong {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contacts-clean li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts-clean li a:hover {
    color: #e1002e;
}

.footer-contact-email a {
    color: #ffffff !important;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-visual {
        order: -1;
    }

    .image-stack {
        height: 400px;
    }

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

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

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

@media (max-width: 900px) {


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

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

    .contact-grid-simple {
        grid-template-columns: 1fr;
    }

    .contact-map-large iframe {
        min-height: 250px;
    }


}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border: none;
        border-radius: 8px;
        margin-top: 8px;
        padding: 8px 0;
        opacity: 1;
        visibility: visible;
        display: none;
        min-width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 16px;
    }

    .dropdown-category {
        padding: 4px 0;
    }

    .category-title {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .dropdown-submenu a,
    .dropdown-submenu span {
        padding: 6px 16px 6px 24px;
        font-size: 0.8rem;
    }

    .cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item {
        flex-direction: row;
        gap: var(--space-sm);
        padding: var(--space-sm) var(--space-md);
    }

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

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul {
        align-items: center;
    }

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

    .social-links {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 3rem;
        --space-4xl: 4rem;
    }



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

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

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

/* =====================================================
   ANIMATIONS & INTERACTIONS
   ===================================================== */

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-children.visible>* {
    opacity: 1;
    transform: translateY(0);
}