:root {
    --primary-red: #C90D2D;
    --accent-yellow: #FDDD00;
    --dark-neutral: #222222;
    --light-neutral: #F8F8F8;
    --white: #ffffff;
    --text-dark: #222222;
    --text-light: #666666;
    --text-muted: #888888;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.2s ease-in-out;
    --transition-slow: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 10px;
}

.primary-cta {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-red);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.primary-cta:hover {
    background-color: #a80a24;
    border-color: #a80a24;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 13, 45, 0.4);
}

.secondary-cta {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-red);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-red);
    transition: all var(--transition-normal);
}

.secondary-cta:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--dark-neutral);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled .logo-img {
    max-height: 50px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: block;
}

.logo-img {
    max-height: 70px;
    width: auto;
    transition: all var(--transition-normal);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-fast);
}

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

.nav-link-cta {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all var(--transition-normal);
}

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

.nav-link-cta:hover {
    background-color: #a80a24;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-neutral);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/assets_images_hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    padding: 14px 24px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    transition: all var(--transition-normal);
}

.hero-phone:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

.services {
    padding: 100px 0;
    background-color: var(--light-neutral);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--accent-yellow);
    color: var(--dark-neutral);
}

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

.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

.road-divider {
    padding: 20px 0;
    overflow: hidden;
}

.road-line {
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent-yellow) 0,
        var(--accent-yellow) 40px,
        var(--dark-neutral) 40px,
        var(--dark-neutral) 80px
    );
    animation: roadMove 20s linear infinite;
}

@keyframes roadMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 80px 0;
    }
}

.about-preview {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text .section-title {
    text-align: center;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-vision {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.value-icon {
    color: var(--accent-yellow);
    font-size: 18px;
}

.process {
    padding: 100px 0;
    background-color: var(--light-neutral);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all var(--transition-normal);
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.step-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.step-number {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-red);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-neutral);
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-connector {
    width: 50px;
    height: 2px;
    background-color: var(--accent-yellow);
    margin-top: 50px;
    flex-shrink: 0;
}

.why-choose {
    padding: 100px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 35px 25px;
    text-align: center;
    border-radius: 8px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--accent-yellow);
    background-color: var(--light-neutral);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--accent-yellow);
    color: var(--dark-neutral);
    transform: scale(1.1);
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-neutral);
}

.benefit-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials {
    padding: 100px 0;
    background-color: var(--light-neutral);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: center;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: 20px;
    animation: quoteGlow 3s ease-in-out infinite;
}

@keyframes quoteGlow {
    0%, 100% {
        opacity: 0.3;
        text-shadow: 0 0 10px rgba(201, 13, 45, 0.2);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 20px rgba(201, 13, 45, 0.4);
    }
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-yellow);
}

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

.author-name {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-neutral);
}

.author-title {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    background-color: transparent;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

.blog-preview {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.blog-image {
    height: 200px;
    background-color: var(--light-neutral);
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
}

.blog-card:hover .blog-image svg {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-neutral);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-link:hover {
    color: #a80a24;
}

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

.contact-section {
    padding: 100px 0;
    background-color: var(--light-neutral);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

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

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: #fefefe;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    text-align: center;
}

.page-hero {
    padding: 160px 0 80px;
    background-color: var(--dark-neutral);
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.about-hero {
    padding: 80px 0;
    background-color: var(--white);
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-detail {
    padding: 80px 0;
    background-color: var(--light-neutral);
}

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

.about-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    border-radius: 50%;
    color: var(--white);
}

.about-card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-vision {
    padding: 80px 0;
    background-color: var(--white);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-values {
    padding: 80px 0;
    background-color: var(--light-neutral);
}

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

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.value-icon-large {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

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

.value-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a80a24 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .primary-cta {
    background-color: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

.cta-section .primary-cta:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--dark-neutral);
}

.services-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-item-reverse {
    direction: rtl;
}

.service-item-reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.service-image svg {
    width: 100%;
    height: auto;
}

.service-content .service-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.contact-page {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-heading {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-neutral);
}

.contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.method-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
}

.method-details {
    flex: 1;
}

.method-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.method-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-method a.method-value:hover {
    color: var(--primary-red);
}

.contact-form-section .contact-form {
    padding: 35px;
}

.map-section {
    padding-bottom: 80px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.footer {
    background-color: var(--dark-neutral);
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

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

.footer-links li:not(:has(a)) {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

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

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

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

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
    
    .road-line {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .process-connector {
        width: 30px;
    }
    
    .service-item {
        gap: 40px;
    }
    
    .contact-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px var(--shadow-medium);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-slow);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .nav-link-cta {
        margin-top: 15px;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .logo-img {
        max-height: 55px;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-phone {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .benefits-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .about-values {
        text-align: center;
    }
    
    .value-item {
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 130px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .service-item,
    .service-item-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-content .service-title {
        font-size: 26px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .primary-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .testimonial-slide {
        padding: 0;
    }
}
