/**
 * MiniExcavator București - Main Stylesheet
 * Design industrial, optimizat pentru conversii
 */

/* ========================================
   HEADER
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-black);
}

.logo-icon {
    color: var(--color-accent);
    font-size: 28px;
}

.site-logo img {
    max-height: 80px;
    width: auto;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-black);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.phone-btn {
    font-size: 15px;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    transition: all 0.3s ease;
}

/* ========================================
   HERO
======================================== */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-black);
}

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

.hero-text {
    font-size: 20px;
    color: var(--color-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-xl {
    padding: 24px 48px;
    font-size: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SERVICES
======================================== */
.services-section {
    background-color: var(--color-white);
}

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

.service-card {
    padding: 40px 32px;
    background-color: var(--color-gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    border-radius: 8px;
    margin-bottom: 24px;
    color: var(--color-black);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-black);
}

.service-text {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--color-black);
}

/* ========================================
   ADVANTAGES
======================================== */
.advantages-section {
    background-color: var(--color-gray-light);
}

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

.advantage-item {
    text-align: center;
    padding: 32px 24px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black);
}

.advantage-text {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ========================================
   CTA BAND
======================================== */
.cta-band {
    background-color: var(--color-black);
    padding: 60px 0;
}

.cta-band-content {
    text-align: center;
}

.cta-band-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

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

.cta-band .btn-primary {
    font-size: 20px;
}

/* ========================================
   PROCESS
======================================== */
.process-section {
    background-color: var(--color-white);
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 24px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -16px;
    width: 32px;
    height: 2px;
    background-color: var(--color-accent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-black);
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black);
}

.process-text {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ========================================
   GALLERY
======================================== */
.gallery-section {
    background-color: var(--color-gray-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

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

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

/* ========================================
   ZONES
======================================== */
.zones-section {
    background-color: var(--color-white);
}

.zones-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.zones-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
}

.zones-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zone-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-gray-light);
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.zone-badge:hover {
    background-color: var(--color-accent);
    color: var(--color-black);
}

/* ========================================
   CONTACT
======================================== */
.contact-section {
    background: linear-gradient(135deg, var(--color-black) 0%, #222 100%);
}

.contact-box {
    text-align: center;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.contact-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-phone-btn {
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.contact-info-item svg {
    color: var(--color-accent);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: var(--color-black);
    padding: 60px 0 24px;
    border-top: 4px solid var(--color-accent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-logo .site-logo-text {
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4,
.footer-schedule h4 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

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

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-address svg {
    flex-shrink: 0;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-schedule p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-emergency {
    color: var(--color-accent) !important;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-seo {
    font-size: 13px !important;
}

/* ========================================
   PAGE CONTENT
======================================== */
.page-content {
    padding: 120px 0 80px;
}

.entry-header {
    margin-bottom: 32px;
}

.entry-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-black);
}

.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--color-black);
    margin-top: 32px;
    margin-bottom: 16px;
}

.entry-content p {
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 40px;
    }

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

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

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

    .process-step::after {
        display: none;
    }

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

    .zones-content {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 8px 0;
        display: block;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 17px;
    }

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

    .btn-lg {
        padding: 16px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .services-grid,
    .advantages-grid,
    .process-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 32px 24px;
    }

    .cta-band-title {
        font-size: 26px;
    }

    .cta-band-text {
        font-size: 16px;
    }

    .contact-box {
        padding: 40px 24px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-text {
        font-size: 16px;
    }

    .btn-xl {
        padding: 20px 32px;
        font-size: 20px;
    }

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

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

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