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

:root {
    --charcoal-dark: #0d0d0d;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --steel-gray: #4a4a4a;
    --electric-silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --molten-orange: #ff6b35;
    --molten-orange-dark: #e55a2b;
    --electric-blue: #00b4d8;
    --electric-blue-dark: #0096c7;
    --neon-green: #39ff14;
    --warning-yellow: #ffc107;
    --pure-white: #ffffff;
    --pure-black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--charcoal-dark);
    color: var(--silver-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pure-white);
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--molten-orange);
}

[class*="text-"] strong,
[class*="text-"] b,
.text-white strong,
.text-white b {
    color: inherit;
}

.pure-g {
    letter-spacing: normal;
}

.pure-g [class*="pure-u"] {
    letter-spacing: normal;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }
.mb-8 { margin-bottom: 96px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

.py-6 { padding-top: 64px; padding-bottom: 64px; }
.py-8 { padding-top: 96px; padding-bottom: 96px; }
.py-10 { padding-top: 120px; padding-bottom: 120px; }

.display-block { display: block; }
.display-none { display: none; }
.display-flex { display: flex; }
.display-grid { display: grid; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.gap-5 { gap: 48px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

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

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-sm { padding: 40px 0; }
    .container { padding: 0 16px; }
    .hide-mobile { display: none !important; }
}

.hide-desktop { display: none; }

@media (min-width: 769px) {
    .hide-desktop { display: block !important; }
    .hide-desktop-flex { display: flex !important; }
}

.display-block-mobile { display: block; }
.display-none-mobile { display: none; }

@media (min-width: 769px) {
    .display-block-mobile { display: block; }
    .display-none-mobile { display: none; }
}

.full-width { width: 100%; }
.max-width-600 { max-width: 600px; }
.max-width-800 { max-width: 800px; }
.max-width-1000 { max-width: 1000px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.z-index-10 { z-index: 10; }
.z-index-100 { z-index: 100; }
.z-index-1000 { z-index: 1000; }

.border-radius-4 { border-radius: 4px; }
.border-radius-8 { border-radius: 8px; }
.border-radius-12 { border-radius: 12px; }
.border-radius-16 { border-radius: 16px; }
.border-radius-50 { border-radius: 50%; }
.border-radius-0 { border-radius: 0; }

.shadow-sm { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.shadow-md { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.shadow-lg { box-shadow: 0 8px 40px rgba(0,0,0,0.35); }
.shadow-xl { box-shadow: 0 16px 60px rgba(0,0,0,0.45); }

.shadow-orange { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3); }
.shadow-blue { box-shadow: 0 8px 30px rgba(0, 180, 216, 0.3); }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

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

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

.hover-shrink:hover {
    transform: scale(0.98);
}

.btn,
.pure-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary {
    background: var(--molten-orange);
    color: var(--pure-white);
    border: 2px solid var(--molten-orange);
}

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

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--electric-silver);
}

.btn-secondary:hover {
    background: var(--electric-silver);
    color: var(--charcoal-dark);
    border-color: var(--electric-silver);
}

.btn-accent {
    background: var(--electric-blue);
    color: var(--pure-white);
    border: 2px solid var(--electric-blue);
}

.btn-accent:hover {
    background: var(--electric-blue-dark);
    border-color: var(--electric-blue-dark);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--pure-white);
    border: 2px solid var(--charcoal);
}

.btn-dark:hover {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    color: var(--pure-white);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 13px;
    min-height: 44px;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 17px;
    min-height: 64px;
}

.btn-full {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--molten-orange), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
    border-radius: 8px;
}

.logo-text {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--molten-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--silver-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--molten-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--electric-silver);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pure-white);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 81px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 8px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-link {
        padding: 16px 24px;
        background: var(--charcoal-light);
        border: 1px solid rgba(192, 192, 192, 0.1);
    }

    .nav-link::after {
        display: none;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--charcoal-dark);
    overflow: hidden;
    padding-top: 81px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%232d2d2d" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--molten-orange);
    color: var(--molten-orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .accent {
    color: var(--molten-orange);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--electric-silver);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--molten-orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--electric-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

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

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

.section-header {
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--electric-silver);
    max-width: 600px;
}

.section-title-light {
    color: var(--pure-white);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--molten-orange);
    margin-top: 24px;
}

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

.service-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--molten-orange), var(--electric-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-orange);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--molten-orange), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    border-radius: 8px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-description {
    color: var(--electric-silver);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--molten-orange);
}

.service-price span {
    font-size: 14px;
    color: var(--electric-silver);
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(145deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--molten-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-text {
    color: var(--electric-silver);
    font-size: 15px;
    line-height: 1.7;
}

.about-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 180, 216, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.about-content {
    padding-left: 48px;
}

@media (max-width: 1024px) {
    .about-content {
        padding-left: 0;
        padding-top: 48px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.3);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--charcoal-light);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-role {
    color: var(--molten-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--electric-silver);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    position: relative;
}

.review-quote {
    font-size: 48px;
    color: var(--molten-orange);
    line-height: 1;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--silver-light);
    font-style: italic;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--molten-orange);
}

.review-name {
    font-size: 16px;
    font-weight: 600;
}

.review-company {
    color: var(--electric-silver);
    font-size: 14px;
}

.review-stars {
    color: var(--warning-yellow);
    margin-top: 8px;
    font-size: 16px;
}

.contact-section {
    background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
    position: relative;
}

.contact-info-card {
    background: var(--charcoal-dark);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--molten-orange);
    transform: translateX(8px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--electric-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--pure-white);
    font-weight: 500;
}

.contact-value a {
    color: inherit;
}

.contact-value a:hover {
    color: var(--molten-orange);
}

.form-container {
    background: var(--charcoal-dark);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--silver-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--charcoal);
    border: 2px solid var(--steel-gray);
    color: var(--pure-white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--molten-orange);
    background: var(--charcoal-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--steel-gray);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 32px 24px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--charcoal-light);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(0, 180, 216, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 32px;
    color: var(--pure-white);
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.faq-item {
    border: 1px solid rgba(192, 192, 192, 0.1);
    background: var(--charcoal);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--charcoal-light);
}

.faq-question-text {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pure-white);
}

.faq-icon {
    font-size: 24px;
    color: var(--molten-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 32px 24px;
    color: var(--electric-silver);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    background: var(--charcoal);
    border: 2px solid var(--molten-orange);
    padding: 32px;
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-xl);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.cookie-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--molten-orange);
}

.cookie-text {
    font-size: 14px;
    color: var(--electric-silver);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 44px;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 24px;
    }
}

.footer {
    background: var(--charcoal-dark);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--electric-silver);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--charcoal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--molten-orange);
    color: var(--pure-white);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--pure-white);
}

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

.footer-link {
    display: block;
    padding: 8px 0;
    color: var(--electric-silver);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--molten-orange);
    padding-left: 8px;
}

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

.footer-copyright {
    color: var(--steel-gray);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--steel-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--electric-silver);
}

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

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

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 32px;
    }

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

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

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

.page-header {
    padding: 160px 0 80px;
    background: var(--charcoal-dark);
    position: relative;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%232d2d2d" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

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

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb {
    color: var(--electric-silver);
    font-size: 14px;
    text-decoration: none;
}

.breadcrumb.active {
    color: var(--molten-orange);
}

.breadcrumb:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: var(--steel-gray);
}

.page-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--electric-silver);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, var(--molten-orange) 0%, var(--electric-blue) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--pure-white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--charcoal-dark);
    border-color: var(--charcoal-dark);
    color: var(--pure-white);
}

.cta-section .btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.cta-section .btn-secondary {
    background: transparent;
    border-color: var(--pure-white);
    color: var(--pure-white);
}

.cta-section .btn-secondary:hover {
    background: var(--pure-white);
    color: var(--molten-orange);
}

.pricing-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--molten-orange);
}

.pricing-name {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--molten-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 18px;
    color: var(--electric-silver);
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-feature {
    padding: 12px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--silver-light);
}

.pricing-feature::before {
    content: '✓';
    color: var(--molten-orange);
    font-weight: 700;
}

.vacancy-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    border-color: var(--molten-orange);
}

.vacancy-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.vacancy-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vacancy-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--electric-silver);
    font-size: 14px;
}

.vacancy-description {
    color: var(--silver-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.legal-text {
    color: var(--silver-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.legal-text:last-child {
    margin-bottom: 0;
}

.legal-heading {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--pure-white);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 32px 24px;
    }
}

.text-orange { color: var(--molten-orange); }
.text-blue { color: var(--electric-blue); }
.text-white { color: var(--pure-white); }
.text-silver { color: var(--electric-silver); }
.text-gray { color: var(--steel-gray); }

.bg-dark { background-color: var(--charcoal-dark); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-charcoal-light { background-color: var(--charcoal-light); }
.bg-orange { background-color: var(--molten-orange); }
.bg-blue { background-color: var(--electric-blue); }

.border-orange { border-color: var(--molten-orange); }
.border-blue { border-color: var(--electric-blue); }
.border-silver { border-color: var(--electric-silver); }

/* Additional styles for career-opportunities.html */
.job-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: var(--molten-orange);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-title {
    font-size: 22px;
    margin-bottom: 4px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-type {
    background: rgba(255, 107, 53, 0.15);
    color: var(--molten-orange);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--molten-orange);
    border-radius: 4px;
}

.job-location {
    background: rgba(0, 180, 216, 0.15);
    color: var(--electric-blue);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--electric-blue);
    border-radius: 4px;
}

.job-salary {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--molten-orange);
    margin-bottom: 16px;
}

.job-salary span {
    font-size: 14px;
    color: var(--electric-silver);
    font-weight: 400;
}

.job-description h4 {
    font-size: 18px;
    margin: 20px 0 12px 0;
    color: var(--pure-white);
}

.job-description ul {
    list-style: none;
    padding-left: 0;
}

.job-description li {
    padding: 6px 0;
    color: var(--electric-silver);
    position: relative;
    padding-left: 20px;
}

.job-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--molten-orange);
    font-weight: 700;
}

.job-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.form-input-file {
    width: 100%;
    padding: 12px 20px;
    background: var(--charcoal);
    border: 2px solid var(--steel-gray);
    color: var(--pure-white);
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
}

.form-input-file:focus {
    outline: none;
    border-color: var(--molten-orange);
    background: var(--charcoal-light);
}

.form-hint {
    font-size: 12px;
    color: var(--steel-gray);
    margin-top: 8px;
}

.form-success {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 32px;
    border-radius: 8px;
    margin-top: 24px;
}

/* Additional styles for service-area-map.html */
.service-area-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.area-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateX(8px);
    border-color: var(--molten-orange);
}

.area-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    flex-shrink: 0;
}

.area-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.area-description {
    color: var(--electric-silver);
    font-size: 14px;
    line-height: 1.6;
}

.highway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.highway-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 32px;
    transition: all 0.3s ease;
}

.highway-card:hover {
    transform: translateY(-4px);
    border-color: var(--molten-orange);
}

.highway-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.highway-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.highway-description {
    color: var(--electric-silver);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highway-exits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exit-badge {
    background: var(--charcoal-light);
    color: var(--pure-white);
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 4px;
}

.service-type-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-type-card {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.service-type-card:hover {
    transform: translateX(8px);
    border-color: var(--molten-orange);
}

.service-type-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-type-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-type-description {
    color: var(--electric-silver);
    font-size: 14px;
    line-height: 1.6;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.response-item {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.response-time {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--molten-orange);
}

.response-area {
    color: var(--electric-silver);
    font-size: 14px;
}

.service-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    background: var(--charcoal);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 20px;
}

.hours-label {
    font-size: 14px;
    color: var(--electric-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hours-value {
    color: var(--pure-white);
    font-size: 16px;
    margin-bottom: 4px;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--electric-silver);
    font-size: 14px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-primary {
    background: var(--molten-orange);
    border: 1px solid var(--molten-orange);
}

.legend-secondary {
    background: var(--electric-blue);
    border: 1px solid var(--electric-blue);
}

.legend-mobile {
    background: var(--neon-green);
    border: 1px solid var(--neon-green);
}

/* Responsive adjustments for new components */
@media (max-width: 1024px) {
    .highway-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .area-card {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-type-card {
        flex-direction: column;
        gap: 12px;
    }
    
    .response-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
