/* ==========================================================================
   Homepage Styles
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    min-height: var(--hero-height-home);
    display: flex;
    flex-direction: column;
    background-color: var(--color-navy);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(26, 43, 74, 0.88) 0%,
        rgba(26, 43, 74, 0.55) 45%,
        rgba(26, 43, 74, 0.25) 100%
    );
    z-index: 1;
}

.hero__wrapper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3.5rem 1.5rem;
}

.hero__content {
    width: 100%;
    max-width: var(--hero-content-max);
    text-align: left;
}

.hero__phone {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: right;
}

.hero__phone a {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__phone a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.hero__phone .icon {
    color: var(--color-red);
}

.hero__phone-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--color-white);
    max-width: var(--hero-content-max);
    margin-bottom: 1.5rem;
}

.hero__text {
    max-width: var(--hero-content-max);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero .trust-bar {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Why Choose — Split Layout */
.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-split__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.why-split__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-split__grid .feature-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    text-align: left;
}

.why-split__grid .feature-card__icon {
    margin: 0 0 0.75rem;
}

.why-split__grid .feature-card__title {
    text-align: left;
}

.why-split__grid .feature-card__text {
    text-align: left;
}

/* Featured Services */
.featured-service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
    height: 100%;
}

.featured-service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-red);
}

.featured-service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.featured-service-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-red);
}

.featured-service-card h3 {
    margin-bottom: 0.75rem;
}

.featured-service-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.section__cta-center {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero__wrapper {
        padding: 2.75rem 1.5rem;
    }
}

@media (max-width: 960px) {
    .hero__wrapper {
        padding: 2.5rem 1.5rem;
    }

    .why-split {
        grid-template-columns: 1fr;
    }

    .why-split__image {
        order: -1;
    }

    .why-split__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero__wrapper {
        padding: 2rem 1.5rem;
    }
}
