@charset "UTF-8";

:root {
    --primary-orange: #FF6B35;
    --secondary-blue: #004E89;
    --dark-charcoal: #1A1A1A;
    --medium-gray: #2D2D2D;
    --light-gray: #E8E8E8;
    --pure-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --accent-metallic: #C0C0C0;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

strong {
    color: inherit;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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


.hl-header {
    background: var(--dark-charcoal);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hl-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hl-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hl-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--pure-white);
    letter-spacing: 1px;
}

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

.hl-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.hl-nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.hl-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.hl-nav-link:hover::after,
.hl-nav-link.active::after {
    width: 100%;
}

.hl-cta-btn {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    color: var(--pure-white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hl-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    color: var(--pure-white);
}

.hl-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hl-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--pure-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}


.hl-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-gray) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hl-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/media/hero-repair-shop.webp') center center/cover no-repeat;
    opacity: 0.3;
}

.hl-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 78, 137, 0.85) 100%);
}

.hl-hero-content {
    position: relative;
    z-index: 2;
    color: var(--pure-white);
}

.hl-hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hl-hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hl-hero-title span {
    color: var(--primary-orange);
}

.hl-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

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

.hl-btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    color: var(--pure-white);
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.hl-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: var(--pure-white);
}

.hl-btn-secondary {
    background: transparent;
    color: var(--dark-charcoal);
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--dark-charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.hl-hero .hl-btn-secondary,
.hl-section-dark .hl-btn-secondary {
    background: transparent;
    color: var(--pure-white);
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--pure-white);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hl-hero .hl-btn-secondary:hover,
.hl-section-dark .hl-btn-secondary:hover {
    background: var(--pure-white);
    color: var(--dark-charcoal);
}


.hl-section {
    padding: 100px 0;
}

.hl-section-dark {
    background: var(--dark-charcoal);
    color: var(--pure-white);
}

.hl-section-accent {
    background: linear-gradient(135deg, var(--secondary-blue), #0066a3);
    color: var(--pure-white);
}

.hl-section-light {
    background: var(--light-gray);
}

.hl-section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hl-section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 50px;
}

.hl-section-dark .hl-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.hl-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-blue));
    margin-bottom: 30px;
    border-radius: 2px;
}


.hl-service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    color: var(--dark-charcoal);
}

.hl-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-orange);
}

.hl-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.hl-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-charcoal);
}

.hl-service-description {
    color: rgba(0, 0, 0, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hl-service-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.hl-service-link {
    color: var(--secondary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hl-service-link:hover {
    color: var(--primary-orange);
    gap: 15px;
}


.hl-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.hl-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.hl-feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pure-white);
}

.hl-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}


.hl-team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hl-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.hl-team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

.hl-team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 5px;
}

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


.hl-testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px;
    margin: 15px;
}

.hl-testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 25px;
}

.hl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hl-testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
}

.hl-testimonial-name {
    font-weight: 700;
    color: var(--pure-white);
    font-size: 16px;
}

.hl-testimonial-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}


.hl-contact-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.hl-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.hl-contact-item:last-child {
    margin-bottom: 0;
}

.hl-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hl-contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.h1-section-white .hl-contact-label {
    color: rgba(0, 0, 0, 0.6);
    display: block;
    margin-bottom: 2px;
}

.hl-contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--pure-white);
}

.h1-section-white .hl-contact-value {
    color: var(--text-dark);
}

.hl-contact-value a {
    color: var(--pure-white);
    transition: color 0.3s ease;
}



.h1-section-white .hl-contact-value a {
    color: var(--dark-charcoal);
}

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


.hl-form-group {
    margin-bottom: 25px;
}

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

.hl-form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--pure-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hl-form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hl-form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.hl-form-control.textarea {
    min-height: 150px;
    resize: vertical;
}


.hl-page-header {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-gray) 100%);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.hl-page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 78, 137, 0.85) 100%);
}

.hl-page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hl-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--pure-white);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hl-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.hl-breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}

.hl-breadcrumb li a {
    color: var(--primary-orange);
}

.hl-breadcrumb li::after {
    content: '/';
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.hl-breadcrumb li:last-child::after {
    display: none;
}


.hl-footer {
    background: var(--dark-charcoal);
    padding: 70px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

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

.hl-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hl-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hl-footer-links {
    list-style: none;
    padding: 0;
}

.hl-footer-links li {
    margin-bottom: 12px;
}

.hl-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.hl-footer-links a:hover {
    color: var(--primary-orange);
}

.hl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
}

.hl-footer-bottom a {
    color: var(--primary-orange);
}


.hl-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: var(--dark-charcoal);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: block;
}

.hl-cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 15px;
}

.hl-cookie-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.hl-cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.hl-cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    color: var(--pure-white);
    border: none;
}

.hl-cookie-btn-accept:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hl-cookie-btn-decline {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hl-cookie-btn-decline:hover {
    border-color: var(--pure-white);
}


.hl-faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.hl-faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.h1-section-white .hl-faq-question {
    color: var(--dark-charcoal);
}

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

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

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

.hl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hl-faq-answer-content {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.h1-section-white .hl-faq-answer-content {
    color: rgba(0, 0, 0, 0.75);
}

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


.hl-text-orange {
    color: var(--primary-orange);
}

.hl-text-blue {
    color: var(--secondary-blue);
}

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

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


@media (max-width: 991px) {
    .hl-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-charcoal);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hl-nav-menu.active {
        transform: translateY(0);
    }

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

    .hl-nav-link {
        display: block;
        padding: 20px 0;
    }

    .hl-mobile-toggle {
        display: flex;
    }

    .hl-hero-title {
        font-size: 42px;
    }

    .hl-section {
        padding: 70px 0;
    }

    .hl-section-title {
        font-size: 36px;
    }

    .hl-cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 767px) {
    .hl-hero-title {
        font-size: 32px;
    }

    .hl-hero-subtitle {
        font-size: 17px;
    }

    .hl-page-title {
        font-size: 36px;
    }

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

    .hl-btn-primary,
    .hl-btn-secondary {
        width: 100%;
        text-align: center;
    }
}


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

.hl-animate-fade {
    animation: fadeInUp 0.6s ease forwards;
}

.hl-animate-delay-1 {
    animation-delay: 0.1s;
}

.hl-animate-delay-2 {
    animation-delay: 0.2s;
}

.hl-animate-delay-3 {
    animation-delay: 0.3s;
}
