/* === HOME PAGE STYLES === */

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-300) 0%, var(--primary-800) 80%);
    color: white;
    padding: 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero__wrapper {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) 0;
}

.hero__main-content {
    z-index: 2;
    position: relative;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-xl);
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__title span {
    color: var(--accent-500);
    display: block;
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    opacity: 1;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    max-width: 90%;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__action-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hero Trust Cards */
.hero__trust-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.hero__trust-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.hero__trust-card:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero__trust-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: 50%;
    color: var(--primary-600);
    font-size: 2rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-200);
    transition: all var(--transition-base);
    aspect-ratio: 1 / 1;
}

.hero__trust-card:hover .hero__trust-card-icon {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-100) 100%);
    border-color: var(--primary-300);
    transform: scale(1.08);
}

.hero__trust-card-content {
    flex: 1;
}

.hero__trust-card-title {
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.hero__trust-card-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hero__decoration {
    display: none;
}

/* Quote Section */
.hero--quote {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
    color: var(--gray-900);
    padding: var(--space-3xl) 0;
}

.hero__quote-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Quick Quote Form */
.quick-quote {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.quick-quote__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.quick-quote__subtitle {
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

.quick-quote__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quick-quote__input {
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.quick-quote__input:focus {
    outline: none;
    border-color: var(--primary-600);
}

/* Quick WhatsApp */
.quick-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA61 100%);
    color: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-base);
}

.quick-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.quick-whatsapp__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 3rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.quick-whatsapp__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.quick-whatsapp__subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.quick-whatsapp__buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
}

.quick-whatsapp__buttons .btn {
    flex: 1;
}

.quick-whatsapp .btn--white {
    color: #25D366;
    border-color: white;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    padding: var(--space-4xl) var(--space-2xl);
}

.trust-bar__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid white;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.trust-item:hover {
    background: white;
    border-color: var(--primary-400);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.trust-item__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: 50%;
    color: var(--primary-600);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    border: 2px solid var(--primary-200);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1;
}

.trust-item:hover .trust-item__icon {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-100) 100%);
    border-color: var(--primary-300);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
    transform: scale(1.08);
}

.trust-item__title {
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 1rem;
}

.trust-item__text {
    font-size: 0.85rem;
    color: var(--gray-600);
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Services Section */
.services-section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.services-section__title {
    margin-bottom: var(--space-md);
}

.services-section__subtitle {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.why-choose-item__icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
}

.why-choose-item:hover .why-choose-item__icon-wrapper {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-100) 100%);
}

.why-choose-item__icon-wrapper i {
    color: var(--primary-600);
}

.why-choose-item__content h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.why-choose-item__content p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero__title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__quote-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-3xl) 0;
    }

    .hero__wrapper {
        padding: var(--space-3xl) var(--space-lg);
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__title span {
        display: inline;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: var(--space-xl);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__trust-cards {
        grid-template-columns: 1fr;
    }

    .hero__trust-card {
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .trust-bar__content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .quick-quote__input {
        padding: var(--space-sm) var(--space-md);
    }

    .quick-whatsapp {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero__wrapper {
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero__title {
        font-size: 1.25rem;
        margin-bottom: var(--space-lg);
    }

    .hero__description {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__action-phones {
        flex-direction: column;
    }

    .hero__actions .btn,
    .hero__action-phones .btn {
        width: 100%;
    }

    .hero__trust-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .trust-bar__content {
        grid-template-columns: 1fr;
    }

    .quick-quote {
        padding: var(--space-lg);
    }

    .quick-whatsapp__buttons {
        flex-direction: column;
    }

    .quick-whatsapp__buttons .btn {
        flex: 1;
        width: 100%;
    }

    /* Services Grid - 1 column on small mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}
