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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
            "Inter",
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    line-height: 1.6;
    color: #0f172a;
}

/* Hero Section */
.hero-section {
    background:
            linear-gradient(
                    225deg,
                    rgba(16, 61, 60, 0.85) 14.64%,
                    rgba(27, 94, 32, 0.85) 85.36%
            ),
            url("https://cdn2.focus.bg/mobile/images/housesgallery/h17229627522426293_2b.pic")
            center/cover;
    min-height: 800px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: #fff;
    border-radius: 36px;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: sticky;
    top: 24px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(
            225deg,
            #103d3c 14.64%,
            #1b5e20 50%,
            #da9934 85.36%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.nav-menu,
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #0f172a;
}

.nav-link.active {
    color: #da9934;
    font-weight: 600;
}

.contact-cta {
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-cta:hover {
    background: #1e293b;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #0f172a;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 120px;
    left: 24px;
    right: 24px;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

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

.mobile-nav-link {
    color: #0f172a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #da9934;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-contact-cta {
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.mobile-contact-cta:hover {
    background: #1e293b;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px;
}

.hero-text-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.hero-text p {
    width: 100%;
    max-width: 680px;
    color: #e8f5e8;
    font-size: 20px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-cta {
    background: #da9934;
    color: #103d3c;
    border: none;
    border-radius: 26px;
    padding: 0 28px;
    height: 52px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.primary-cta:hover {
    background: #c8872b;
}

.secondary-cta {
    background: #fff;
    color: #103d3c;
    border: none;
    border-radius: 26px;
    padding: 0 28px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.secondary-cta:hover {
    background: #f8fafc;
}

/* Services Section */
.services-section {
    background: #fff;
    padding: 120px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.section-header {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-icon {
    background: #103d3c;
}

.accent-icon {
    background: #da9934;
}

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

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.service-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #103d3c;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-section .service-link:hover {
    color: #3d6b6a;
}

.services-section .service-link.accent-link:hover {
    color: #e5c368 !important;
}

.accent-link {
    color: #da9934;
}

/* Featured Section */
.featured-section {
    background: #f8fafc;
    padding: 120px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.featured-header {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.header-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

.header-left p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #103d3c;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 1400px;
}

.car-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    display: block;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 40px 0px rgba(0, 0, 0, 0.08);
}

.car-image {
    height: 240px;
    overflow: hidden;
    background: #e2e8f0;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-image-placeholder {
    height: 240px;
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.car-image-placeholder span {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.car-details {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.car-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #da9934;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.features p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.2;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 120px 48px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
}

.about-story,
.about-mission {
    margin-bottom: 24px;
}

.about-story h3,
.about-mission h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.about-story p,
.about-mission p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-story p:last-child,
.about-mission p:last-child {
    margin-bottom: 0;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(225deg, #103d3c 14.64%, #1b5e20 85.36%);
    padding: 80px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-text h2 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.cta-text p {
    color: #e8f5e8;
    font-size: 18px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-actions .primary-cta {
    height: 56px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #103d3c;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    color: #0f172a;
}

.footer-main {
    padding: 60px 48px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.company-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logo .logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #103d3c 0%, #da9934 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-logo .company-name {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
}

.company-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #103d3c;
    border-color: #103d3c;
    color: #fff;
    transform: translateY(-2px);
}

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

.contact-section h4 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #da9934;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-text strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}

.contact-text span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-section h4 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.map-container:hover {
    border-color: #da9934;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-menu {
        display: none;
    }

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

    .mobile-menu-overlay {
        display: block;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        height: 300px;
    }

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

@media (max-width: 768px) {
    .header {
        padding: 0 24px;
        height: 64px;
    }

    .navigation {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: 0;
    }

    .desktop-menu {
        display: none;
    }

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

    .mobile-menu-overlay {
        display: block;
    }

    .hero-content {
        padding: 80px 24px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .stats {
        gap: 24px;
    }

    .services-section,
    .featured-section,
    .about-section {
        padding: 80px 24px;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-header {
        flex-direction: column;
        gap: 20px;
    }

    .view-all {
        align-self: flex-start;
        margin-top: 0;
    }

    .cta-section {
        padding: 60px 24px;
    }

    .cta-text h2 {
        font-size: 32px;
    }

    .cta-actions .primary-cta {
        width: 100%;
        max-width: 300px;
    }

    .footer-main {
        padding: 48px 24px 24px;
    }

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

    .company-description {
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    .hero-section {
        padding: 16px;
    }

    .header {
        height: auto;
        min-height: 72px;
    }

    .logo-section {
        gap: 12px;
    }

    .company-name {
        font-size: 18px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-cta {
        padding: 0 16px;
        height: 36px;
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .primary-cta,
    .secondary-cta {
        height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }

    .service-card {
        padding: 24px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}
