/* ===================================
   Hero Section Styles
   =================================== */

.hero-wrapper {
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-wrapper {
        padding: 0 10px;
    }
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 700px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.25)),
                url('https://images.unsplash.com/photo-1556740758-90de374c12ad?w=1920&auto=format') center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 500px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    max-width: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.hero-title {
    color: var(--white);
    font-size: 62px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 600px;
    font-family: var(--font-family-elegant);
    letter-spacing: -1px;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 60px;
    font-family: var(--font-family-base);
    text-align: left;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

.hero-description {
    margin-top: 20px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Info Blocks at Bottom */
.hero-info-blocks {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-info-blocks {
        flex-direction: column;
    }
}

.info-block {
    flex: 1;
    padding: 25px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    min-height: 100px;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.2);
}

.info-block:first-child {
    border-radius: 0 0 0 30px;
}

.info-block:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 30px 0;
}

@media (max-width: 768px) {
    .info-block {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        min-height: 90px;
        padding: 20px;
    }

    .info-block:first-child {
        border-radius: 0;
    }

    .info-block:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 0 0 30px 30px;
    }
}

.info-block-title {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
    font-family: var(--font-family-base);
    letter-spacing: 0.3px;
}

.info-block-value {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-family: var(--font-family-base);
}

.info-block-phone {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.info-block-phone:hover {
    color: var(--brand-color);
}