/* KAM Auto Electrical - Complete CSS Styles */

/* CSS Variables */
:root {
    --primary-color: #e68220;
    --primary-metallic-light: #f9a847;
    --primary-metallic-dark: #c26810;
    --dark-color: #0a0a0a;
    --light-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --electrical-blue: #3d8fc7;
    --electrical-blue-light: rgba(61, 143, 199, 0.1);
    --electrical-blue-bright: #5ba8db;
    --electrical-blue-dark: #2a6a8f;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--gray-100);
}

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

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

a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--electrical-blue);
    outline-offset: 2px;
}

/* Enhanced Focus Indicators */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--electrical-blue);
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid var(--electrical-blue);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

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

/* Navigation */
.navbar {
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
}

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

.nav-menu li {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a {
    display: block;
    padding: 1rem;
    color: var(--light-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--primary-color);
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-logo {
    width: 100%;
    max-width: 250px;
    margin: 1rem 0;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header h1 {
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.page-header p {
    color: var(--gray-300);
}

/* Enhanced Page Header - About Page */
.page-header-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.page-header-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(230, 130, 32, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-color);
    letter-spacing: -0.02em;
    position: relative;
}

.page-header-hero p {
    color: var(--gray-400);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .page-header-hero {
        padding: 6rem 0;
    }

    .page-header-hero h1 {
        font-size: 3rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-metallic-light) 0%, var(--primary-color) 50%, var(--primary-metallic-dark) 100%);
    color: var(--light-color);
    box-shadow: 0 4px 12px rgba(230, 130, 32, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-metallic-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 130, 32, 0.5);
}

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

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

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

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

/* Section Spacing */
section {
    padding: 3rem 0;
}

/* Remove gap between hero and first section */
.hero + section {
    margin-top: 0;
    padding-top: 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

/* Services Overview */
.services-overview {
    background-color: var(--light-color);
    padding: 4rem 0;
}

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

.service-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.service-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gray-600) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-weight: bold;
}

.service-card h3 {
    padding: 1rem 1.5rem 0;
    color: var(--light-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--gray-300);
}

.service-link {
    display: block;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-700);
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-metallic-light);
}

/* Why Choose Us */
.why-choose {
    background-color: var(--dark-color);
    padding: 4rem 0;
}

.why-choose .section-title {
    color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.feature {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.feature h3 {
    color: var(--light-color);
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--gray-300);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Recent Work */
.client-instructions-box {
    background-color: #fff3cd;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.client-instructions-box h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.client-instructions-box ul {
    list-style: none;
    margin: 1rem 0;
}

.client-instructions-box li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.example-project {
    background-color: var(--gray-100);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.recent-work {
    background-color: var(--light-color);
    padding: 4rem 0;
}

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

.work-item {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.client-placeholder {
    border: 2px dashed var(--primary-color);
    opacity: 0.7;
}

.work-image-placeholder {
    height: 200px;
    background: linear-gradient(45deg, var(--gray-600) 0%, var(--gray-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    padding: 1rem;
    text-align: center;
}

.work-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}

.work-content {
    padding: 1.5rem;
}

.work-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.work-content p {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.65;
    font-weight: 500;
}

.work-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.work-content li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.work-content li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-metallic-light) 0%, var(--primary-color) 50%, var(--primary-metallic-dark) 100%);
    color: var(--light-color);
    text-align: center;
    padding: 3rem 0;
    box-shadow:
        0 8px 24px rgba(230, 130, 32, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Services Page Specific */
.service-section {
    margin-bottom: 4rem;
}

.service-confirm-box {
    background-color: #fff3cd;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.service-confirm-box p {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
}

.service-confirm-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-confirm-box li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.additional-services {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.additional-services h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1.5rem;
}

.additional-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-color), var(--gray-600));
    border-radius: 2px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding: 3rem 2rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    background-color: var(--light-color);
}

.service-detail:nth-of-type(odd) {
    background-color: var(--gray-100);
}

.service-main-image {
    height: 630px;
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-weight: bold;
    border-radius: 10px;
    object-fit: cover;
    image-orientation: none;
    transform: rotate(0deg);
}

.service-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.equipment-tag {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

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

.extra-service {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.extra-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-color) 0%, var(--gray-600) 100%);
    border-radius: 12px 12px 0 0;
    transition: opacity 0.3s ease;
}

.extra-service:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.extra-service:hover::before {
    opacity: 0;
}

.extra-service h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-color);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.extra-service:hover h3 {
    color: var(--primary-color);
}

.extra-service h3::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.extra-service:hover h3::before {
    background: linear-gradient(135deg, var(--primary-metallic-light) 0%, var(--primary-color) 50%, var(--primary-metallic-dark) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(230, 130, 32, 0.5);
}

.extra-service p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 0;
}

.extra-service:nth-child(5),
.extra-service:nth-child(6) {
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.extra-service:nth-child(5):hover,
.extra-service:nth-child(6):hover {
    border-left-color: var(--electrical-blue);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    box-shadow:
        0 8px 20px rgba(61, 143, 199, 0.35),
        0 20px 48px rgba(61, 143, 199, 0.45);
}

.extra-service:nth-child(5):hover h3,
.extra-service:nth-child(6):hover h3 {
    color: var(--electrical-blue);
}

.extra-service:nth-child(5):hover h3::before,
.extra-service:nth-child(6):hover h3::before {
    background: linear-gradient(135deg, var(--electrical-blue-bright) 0%, var(--electrical-blue) 50%, var(--electrical-blue-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(61, 143, 199, 0.5);
}

.service-cta {
    text-align: center;
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 10px;
}

/* Gallery Page Specific */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    background-color: var(--light-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

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

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4 / 3;
}

.gallery-item.large {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .gallery-item.large {
        grid-column: span 2;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.gallery-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--gray-500) 0%, var(--gray-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    padding: 1rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--light-color);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.project-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-metallic-light) 0%, var(--primary-color) 50%, var(--primary-metallic-dark) 100%);
    color: var(--light-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(230, 130, 32, 0.3);
}

.gallery-footer {
    text-align: center;
    margin-top: 3rem;
}

/* About Page Specific */
.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--gray-500) 0%, var(--gray-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    border-radius: 10px;
}

/* Centered intro section (no image) */
.about-intro-centered {
    display: block;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.about-intro-centered h2 {
    margin-bottom: 1.5rem;
}

.about-intro-centered p {
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Careers CTA on About page */
.careers-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 12px;
    margin-top: 3rem;
}

.careers-cta h2 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.careers-cta p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Careers Page Styles */
.careers-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    min-height: 60vh;
}

.careers-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.careers-logo {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.careers-logo img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.careers-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.careers-intro p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.careers-action {
    margin-top: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.value-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.value-card h3 {
    color: var(--light-color);
}

.value-card p {
    color: var(--gray-300);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-section {
    background-color: var(--gray-100);
    padding: 3rem 0;
    margin: 3rem 0;
}

.expertise-section .section-title,
.expertise-section h2,
.expertise-section h3 {
    color: var(--gray-900);
}

.expertise-section p {
    color: var(--gray-700);
}

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

.expertise-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-300);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    margin: 0;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-metallic-light) 0%, var(--primary-color) 50%, var(--primary-metallic-dark) 100%);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 130, 32, 0.4);
}

.service-areas {
    background-color: var(--gray-100);
    padding: 4rem 0;
}

.service-areas .section-title {
    color: var(--gray-900);
}

.service-areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.area-tag {
    background: linear-gradient(135deg, var(--primary-metallic-light) 0%, var(--primary-color) 50%, var(--primary-metallic-dark) 100%);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(230, 130, 32, 0.3);
    transition: all 0.3s ease;
}

.area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 130, 32, 0.5);
}

.service-areas-cta {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray-900);
    font-size: 1rem;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--primary-metallic-light);
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
}

.contact-form-section h2,
.contact-form-section h3 {
    color: var(--light-color);
}

.form-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(230, 130, 32, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.form-trust-signals span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 1rem;
}

form {
    margin-top: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 130, 32, 0.2);
}

.contact-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 20px rgba(10, 10, 10, 0.4),
        0 20px 48px rgba(10, 10, 10, 0.5);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card ul {
    color: var(--gray-300);
}

.contact-note {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.service-areas-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.social-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 4px 12px rgba(10, 10, 10, 0.3),
        0 12px 32px rgba(10, 10, 10, 0.4);
}

.social-card h3 {
    color: var(--light-color);
}

.social-card p {
    color: var(--gray-300);
}

.social-button {
    display: inline-block;
    background-color: #1877f2;
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: 600;
}

.social-button:hover {
    background-color: #1664d1;
}

.emergency-contact {
    background-color: #fef3e7;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.map-section {
    margin-top: 3rem;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--gray-400) 0%, var(--gray-600) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    border-radius: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-900) 100%);
    color: var(--gray-400);
    padding: 3rem 0 1rem;
    margin-top: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-column h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: var(--gray-400);
}

.footer-column a:hover {
    color: var(--primary-color);
}

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

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .navbar {
        padding: 0;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        background: none;
    }
    
    .nav-menu li {
        border: none;
    }
    
    .nav-menu a {
        padding: 1.5rem 1rem;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.125rem;
    }

    .hero-logo {
        max-width: 350px;
        margin: 1.5rem 0;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .extra-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .contact-options {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    
    .hero {
        min-height: 85vh;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .hero-logo {
        max-width: 500px;
        margin: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .service-detail {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
        gap: 0.625rem;
    }
    
    .service-detail.reverse {
        direction: rtl;
    }
    
    .service-detail.reverse > * {
        direction: ltr;
    }
    
    .about-intro {
        grid-template-columns: 3fr 2fr;
        align-items: center;
    }
    
    .expertise-content {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .extra-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .additional-services h2 {
        font-size: 2.5rem;
    }

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

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

/* Products Page Specific */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--gray-500) 0%, var(--gray-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.product-description {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.products-info-section {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.products-info-section h2 {
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

/* Hidden class for filtered items */
.hidden {
    display: none !important;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.5s ease-out;
}

/* ============================================
   LOCATION LANDING PAGES
   ============================================ */

.location-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.location-intro {
    padding: 3rem 0;
    background: var(--light-color);
}

.location-intro h2 {
    margin-bottom: 1rem;
}

.location-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.service-tag {
    background: var(--gray-100);
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.service-tag:hover {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.trust-line svg {
    width: 20px;
    height: 20px;
    fill: #4caf50;
}

.location-cta {
    background: var(--gray-100);
    padding: 3rem 0;
    text-align: center;
}

.location-cta h2 {
    margin-bottom: 1rem;
}

.location-cta p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

/* Breadcrumb styling */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

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

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin: 0 0.5rem;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--gray-600);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
    padding: 3rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--light-color);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question.active {
    background: var(--gray-100);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    line-height: 1.8;
}

.faq-answer.show {
    display: block;
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 1.8rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .services-tags {
        justify-content: center;
    }
}

/* Footer Credit */
.footer-credit {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.7rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
}

.footer-credit img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.footer-credit a {
    color: #00A3E0;
    text-decoration: underline;
}

.footer-credit a:hover {
    opacity: 0.8;
}