/* ====================================
   Arctic Thermal Oil Systems - Enhanced Stylesheet
   Modern, Professional, Arctic-Inspired Design
   ==================================== */

/* Root Variables */
:root {
    /* Colors - Premium Arctic Theme */
    --primary-color: #0066cc;
    --primary-light: #3388dd;
    --primary-dark: #004999;
    --secondary-color: #ff6600;
    --secondary-light: #ff8533;
    --secondary-dark: #cc5200;
    --dark-blue: #003d7a;
    --light-blue: #e6f2ff;
    --accent-cyan: #00d4ff;
    --accent-ice: #a8e6ff;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --text-light: #8a8a8a;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fc;
    --bg-gradient-1: linear-gradient(135deg, #001d3d 0%, #003d7a 30%, #0066cc 70%, #0088ee 100%);
    --bg-gradient-2: linear-gradient(135deg, #ff4500 0%, #ff6600 50%, #ff8533 100%);
    --bg-gradient-3: linear-gradient(135deg, #e6f2ff 0%, #cce4ff 50%, #b3d9ff 100%);
    --bg-gradient-hero: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.12) 0%, transparent 50%), linear-gradient(135deg, #001d3d 0%, #003d7a 30%, #0066cc 70%, #0088ee 100%);
    --border-gray: #e5e7eb;
    --success-green: #10b981;
    --error-red: #ef4444;
    --warning-yellow: #f59e0b;
    --shadow-color-1: rgba(0, 102, 204, 0.15);
    --shadow-color-2: rgba(255, 102, 0, 0.15);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* 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;
    
    /* Effects */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    --box-shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12), 0 16px 24px rgba(0, 0, 0, 0.08);
    --box-shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
    --box-shadow-glow: 0 0 30px rgba(0, 102, 204, 0.4), 0 0 60px rgba(0, 102, 204, 0.2);
    --box-shadow-glow-orange: 0 0 30px rgba(255, 102, 0, 0.4), 0 0 60px rgba(255, 102, 0, 0.2);
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fc 50%, #e6f2ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-base);
    font-weight: 500;
}

a:hover {
    color: var(--secondary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 3px solid var(--bg-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Header - Enhanced */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    transition: all var(--transition-base);
}

.header:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    border-bottom-color: rgba(0, 102, 204, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
}

.logo a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.logo svg {
    transition: transform var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo a:hover svg {
    transform: rotate(5deg) scale(1.05);
}

/* Navigation - Enhanced */
.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-list a {
    color: var(--text-gray);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: all var(--transition-base);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--bg-gradient-2);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(168, 230, 255, 0.3) 100%);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.nav-list a:hover::before,
.nav-list a.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
    background: var(--light-blue);
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Hero Section - Enhanced */
.hero {
    background: var(--bg-gradient-hero);
    color: var(--bg-white);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,154.7C96,149,192,139,288,154.7C384,171,480,213,576,213.3C672,213,768,171,864,165.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: heroAnimation 25s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroAnimation {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.01); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-feature svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-feature span {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Buttons - Enhanced */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--bg-gradient-2);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35), 0 2px 8px rgba(255, 102, 0, 0.2);
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.5), 0 6px 16px rgba(255, 102, 0, 0.3), var(--box-shadow-glow-orange);
    border-color: var(--secondary-light);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(200%);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Section Headers - Enhanced */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--bg-gradient-2);
    border-radius: 2px;
    box-shadow: 0 2px 8px var(--shadow-color-2);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 400;
}

/* Overview Section - Enhanced */
.overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

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

.overview-card {
    padding: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border-radius: var(--border-radius-xl);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px var(--shadow-color-2);
}

.overview-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-ice) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--box-shadow-2xl), 0 0 0 1px var(--primary-color);
    border-color: var(--primary-color);
    background: white;
}

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

.overview-card:hover::after {
    opacity: 0.3;
}

.overview-icon {
    margin-bottom: 1.75rem;
    display: inline-flex;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.overview-card:hover .overview-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.overview-card:hover .overview-icon svg {
    filter: brightness(0) invert(1);
}

.overview-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.overview-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Technology Section - Enhanced */
.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e6f2ff 100%);
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    opacity: 0.5;
}

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

.technology-text h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.technology-text > p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.technology-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.technology-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-base);
}

.technology-features li:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--box-shadow-lg);
}

.technology-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.technology-image {
    position: relative;
}

.technology-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-1);
    border-radius: var(--border-radius-2xl);
    z-index: -1;
    opacity: 0.1;
}

.technology-image img {
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-xl);
    transition: all var(--transition-slow);
}

.technology-image:hover img {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Statistics Section - Enhanced */
.statistics {
    padding: 80px 0;
    background: var(--bg-gradient-1);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-lg);
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Services Overview Section - Enhanced */
.services-overview {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: var(--border-radius-2xl);
    border: 2px solid var(--border-gray);
    border-left: 6px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-ice) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.5);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bg-gradient-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--box-shadow-2xl), var(--box-shadow-glow-orange);
    border-color: var(--secondary-color);
    border-left-width: 8px;
    background: white;
}

.service-card:hover::before {
    opacity: 0.5;
    transform: scale(1);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    opacity: 0.15;
    transition: all var(--transition-base);
}

.service-card:hover .service-number {
    opacity: 0.25;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    transition: all var(--transition-base);
}

.service-link:hover {
    gap: 1rem;
    color: var(--secondary-dark);
}

/* Testimonials Section - Enhanced */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #e6f2ff 100%);
    position: relative;
}

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

.testimonial-card {
    padding: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid var(--border-gray);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: var(--light-blue);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    transition: all 0.5s ease;
    opacity: 0.7;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--box-shadow-2xl), 0 0 0 1px var(--primary-color);
    border-color: var(--primary-color);
    background: white;
}

.testimonial-card:hover::before {
    color: var(--accent-cyan);
    transform: scale(1.1);
    opacity: 1;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-gray);
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Contact Section - Enhanced */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-info > p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.contact-detail {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.contact-detail:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-md);
    transform: translateX(5px);
}

.contact-detail svg {
    flex-shrink: 0;
    background: var(--light-blue);
    padding: 0.75rem;
    border-radius: var(--border-radius-md);
}

.contact-detail > div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-detail strong {
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.contact-detail a {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Forms - Enhanced */
.contact-form,
.contact-form-main,
.service-form {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-lg);
    border: 2px solid var(--border-gray);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.required {
    color: var(--error-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15), 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
    background: white;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-md);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.error-message {
    display: none;
    color: var(--error-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-red);
    background: rgba(239, 68, 68, 0.05);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 100px 0;
    background: var(--bg-gradient-1);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
}

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

/* Footer - Enhanced */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--bg-white);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-size: var(--font-size-xl);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-column p,
.footer-column address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-style: normal;
}

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

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-hours {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

/* Page Header - Enhanced */
.page-header {
    background: var(--bg-gradient-1);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: var(--font-size-5xl);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: var(--font-size-xl);
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Thank You Page - Enhanced */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.thank-you-content {
    max-width: 900px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.thank-you-message {
    font-size: var(--font-size-xl);
    color: var(--text-gray);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.thank-you-info {
    background: white;
    padding: 3.5rem;
    border-radius: var(--border-radius-2xl);
    margin-bottom: 4rem;
    box-shadow: var(--box-shadow-lg);
    border: 2px solid var(--border-gray);
}

.thank-you-info h2,
.thank-you-contact h3,
.thank-you-cta h3 {
    font-size: var(--font-size-3xl);
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.next-step:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient-2);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.step-content h3 {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.thank-you-contact,
.thank-you-cta {
    margin-bottom: 4rem;
}

.urgent-contact {
    margin-top: 1.5rem;
}

.back-home {
    margin-top: 4rem;
}

/* About Page Styles - Enhanced */
.company-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.story-text p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.story-image {
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-2);
    border-radius: var(--border-radius-2xl);
    z-index: -1;
    opacity: 0.15;
}

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

.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e6f2ff 100%);
}

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

.mv-card {
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-xl);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    margin-bottom: 2rem;
    display: inline-flex;
    padding: 1.25rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-xl);
}

.mv-card h2 {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mv-card p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    line-height: 1.9;
}

.core-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.value-card {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--border-gray);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-xl);
    border-color: var(--primary-color);
    background: white;
}

.value-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.value-card:hover .value-icon svg {
    filter: brightness(0) invert(1);
}

.value-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.expertise {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #e6f2ff 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.expertise-item {
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius-xl);
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-base);
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-xl);
    border-left-width: 8px;
}

.expertise-item h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.leadership {
    padding: 100px 0;
    background: white;
}

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

.team-member {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: var(--border-radius-2xl);
    border: 2px solid var(--border-gray);
    transition: all var(--transition-base);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-xl);
    border-color: var(--primary-color);
    background: white;
}

.member-photo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.member-photo img,
.member-photo svg {
    border-radius: 50%;
    border: 4px solid var(--light-blue);
    transition: all var(--transition-base);
    object-fit: cover;
    width: 150px;
    height: 150px;
}

.member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid transparent;
    transition: all var(--transition-base);
    pointer-events: none;
}

.team-member:hover .member-photo img,
.team-member:hover .member-photo svg {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.25);
}

.team-member:hover .member-photo::after {
    border-color: var(--secondary-color);
    transform: translateX(-50%) scale(1.15);
    opacity: 0.6;
}

.team-member h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.8;
}

.certifications {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e6f2ff 100%);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.cert-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.cert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-xl);
}

.cert-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--light-blue);
}

.cert-card ul {
    list-style: none;
}

.cert-card li {
    padding: 1.25rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-gray);
    transition: all var(--transition-base);
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.cert-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 900;
    font-size: 1.2rem;
}

.cert-card li:last-child {
    border-bottom: none;
}

.cert-card li:hover {
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.climate-experience {
    padding: 100px 0;
    background: white;
}

.climate-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.climate-experience h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.climate-text p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.climate-list {
    list-style: none;
    margin: 2rem 0;
}

.climate-list li {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    border-bottom: 1px solid var(--border-gray);
    background: var(--bg-gray);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--secondary-color);
    transition: all var(--transition-base);
}

.climate-list li:hover {
    background: white;
    border-left-width: 8px;
    transform: translateX(10px);
    box-shadow: var(--box-shadow-md);
}

.climate-list li:last-child {
    border-bottom: none;
}

.climate-list strong {
    color: var(--primary-color);
    font-weight: 700;
}

.climate-map {
    position: relative;
}

.climate-map::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-1);
    border-radius: var(--border-radius-2xl);
    z-index: -1;
    opacity: 0.1;
}

.climate-map img {
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-xl);
}

/* Services Page - Enhanced */
.service-detail {
    padding: 100px 0;
    background: white;
}

.service-detail.alt {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.service-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.service-content.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.service-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-gradient-2);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    letter-spacing: 0.5px;
}

.service-text h2 {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-intro {
    font-size: var(--font-size-xl);
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.service-text h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    border-bottom: 1px solid var(--border-gray);
    background: var(--bg-gray);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    font-size: 1.05rem;
}

.service-features li:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--box-shadow-md);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-gray);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-md);
    transform: translateY(-3px);
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-gray);
    line-height: 1.7;
}

.service-image img {
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-xl);
    position: sticky;
    top: 120px;
    transition: all var(--transition-base);
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-request {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e6f2ff 100%);
}

.service-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Solutions Page - Enhanced */
.solution-detail {
    padding: 100px 0;
    background: white;
}

.solution-detail.alt {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.solution-content.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.solution-text h2 {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.solution-intro {
    font-size: var(--font-size-xl);
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.solution-text h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.application-grid,
.component-list,
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.application-card,
.component-item,
.challenge-card {
    padding: 2rem;
    background: linear-gradient(145deg, var(--light-blue) 0%, rgba(230, 242, 255, 0.5) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.application-card:hover,
.component-item:hover,
.challenge-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.application-card h4,
.component-item h4,
.challenge-card h4 {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.application-card p,
.component-item p,
.challenge-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.tech-features {
    list-style: none;
    margin-top: 2rem;
}

.tech-features li {
    padding: 1.25rem 0 1.25rem 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    transition: all var(--transition-base);
    font-size: 1.05rem;
}

.tech-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.tech-features li:hover {
    color: var(--primary-color);
    padding-left: 3rem;
}

.tech-features li:hover::before {
    transform: translateX(5px);
}

.solution-image img {
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-xl);
    transition: all var(--transition-base);
}

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

.engineering-examples {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e6f2ff 100%);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 3rem;
}

.example-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.example-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.example-header h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    font-weight: 700;
}

.example-tag {
    padding: 0.6rem 1.25rem;
    background: var(--bg-gradient-2);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
    letter-spacing: 0.5px;
}

.example-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
}

.spec-item {
    font-size: 0.95rem;
}

.spec-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.example-card > p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Case Studies Page - Enhanced */
.case-study {
    padding: 100px 0;
    background: white;
}

.case-study.alt {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.case-header {
    margin-bottom: 4rem;
    text-align: center;
}

.case-title h2 {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.case-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.case-meta span {
    padding: 0.75rem 1.5rem;
    background: var(--light-blue);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: var(--box-shadow-sm);
}

.case-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
}

.case-text h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.case-text h3:first-of-type {
    margin-top: 0;
}

.case-text p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.case-text ul {
    list-style: none;
    margin: 1.5rem 0 3rem;
}

.case-text ul li {
    padding: 1.25rem 0 1.25rem 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    font-size: 1.05rem;
}

.case-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.result-card {
    padding: 2.5rem;
    background: linear-gradient(145deg, var(--light-blue) 0%, rgba(230, 242, 255, 0.5) 100%);
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.result-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.result-label {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 700;
}

.case-testimonial {
    padding: 2.5rem;
    background: white;
    border-left: 5px solid var(--secondary-color);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.9;
    margin: 3rem 0;
    box-shadow: var(--box-shadow-md);
}

.case-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.case-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-gallery img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    transition: all var(--transition-base);
}

.case-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--box-shadow-xl);
}

.case-summary {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e6f2ff 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.impact-card {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--box-shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.impact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.impact-icon svg {
    background: var(--light-blue);
    padding: 1.25rem;
    border-radius: var(--border-radius-xl);
}

.impact-card h3 {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.impact-card p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Contact Page - Enhanced */
.contact-page {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-info-section > p,
.contact-form-section > p {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--border-gray);
    transition: all var(--transition-base);
}

.contact-method:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

.method-icon {
    flex-shrink: 0;
}

.method-icon svg {
    background: var(--light-blue);
    padding: 1rem;
    border-radius: var(--border-radius-md);
}

.method-details h3 {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.method-details p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-details a {
    color: var(--primary-color);
    font-weight: 700;
}

.method-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.emergency-link {
    font-size: 1.3rem;
    font-weight: 800;
}

.service-areas {
    padding: 2.5rem;
    background: linear-gradient(145deg, var(--light-blue) 0%, rgba(230, 242, 255, 0.5) 100%);
    border-radius: var(--border-radius-xl);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.service-areas:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-md);
}

.service-areas h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-areas p {
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.service-areas ul {
    list-style: none;
}

.service-areas li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-gray);
    position: relative;
    font-size: 1.05rem;
}

.service-areas li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 900;
    font-size: 1.3rem;
}

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

.map-section h2 {
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.map-container {
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: var(--box-shadow-xl);
    margin-bottom: 1.5rem;
}

.map-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Legal Pages - Enhanced */
.legal-page {
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
}

.legal-page h2 {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    padding-top: 2rem;
    border-top: 3px solid var(--light-blue);
}

.legal-page h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

.legal-page h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-page p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.legal-page ul {
    margin: 1.5rem 0 2rem 2.5rem;
}

.legal-page li {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.legal-page strong {
    color: var(--text-dark);
    font-weight: 700;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .section-header h2 {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .technology-content,
    .story-content,
    .climate-content,
    .service-content,
    .solution-content,
    .case-content,
    .contact-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-content.reverse,
    .solution-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--box-shadow-xl);
        display: none;
        gap: 0.5rem;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: var(--font-size-3xl);
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .btn-large {
        padding: 14px 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .overview-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Accessibility Improvements - Enhanced */
:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0 0 var(--border-radius-md) 0;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* ====================================
   FAQ Section Styles
   ==================================== */
.faq-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fc 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: var(--font-size-4xl);
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.faq-intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all var(--transition-base);
    box-shadow: var(--box-shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--box-shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: var(--space-md);
    transition: transform var(--transition-base);
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
    padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: var(--font-size-base);
}

/* ====================================
   Cookie Banner Styles
   ==================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 29, 61, 0.98) 0%, rgba(0, 61, 122, 0.98) 100%);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: var(--space-lg) 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 102, 204, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-banner-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.cookie-banner-text a:hover {
    color: var(--accent-ice);
}

.cookie-banner-buttons {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-lg);
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .mobile-menu-toggle,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: white;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.visible { display: block; }
