/* =============================================
   HOME PAGE SPECIFIC STYLES
   ============================================= */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 20s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.75) 0%, rgba(30, 91, 168, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Indicators Section */
.trust-indicators {
    background: var(--light-gray);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
}

.trust-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border-top: 4px solid var(--primary-blue);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-accent);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.trust-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Services Preview Section */
.services-preview {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--white);
}

.services-preview .section-header {
    margin-bottom: var(--spacing-3xl);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(11, 61, 145, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-ease);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 145, 0.2);
    transition: background var(--transition-smooth);
}

.service-card:hover .service-overlay {
    background: rgba(11, 61, 145, 0.4);
}

.service-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.service-content p {
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    width: fit-content;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-smooth);
}

.service-link:hover::after {
    width: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.why-content h2 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
}

.why-content > p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.why-feature {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.why-feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.why-feature p {
    font-size: 0.95rem;
    margin: 0;
}

.why-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: slideInRight 0.8s ease-out;
}

.why-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CTA Banner Section */
.cta-banner {
    position: relative;
    padding: var(--spacing-3xl) var(--spacing-lg);
    text-align: center;
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: var(--spacing-3xl) 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.8) 0%, rgba(30, 91, 168, 0.7) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-cta .btn {
        width: 100%;
    }

    .trust-container {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .trust-card {
        padding: var(--spacing-lg);
    }

    .service-image-wrapper {
        height: 200px;
    }

    .why-features {
        gap: var(--spacing-md);
    }

    .why-feature {
        gap: var(--spacing-md);
    }

    .cta-banner {
        min-height: 300px;
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .cta-content h2 {
        font-size: var(--font-size-xl);
    }

    .cta-content p {
        font-size: var(--font-size-base);
    }
}