/* Home Page Styles */

.hero-section {
    background: linear-gradient(rgba(31, 41, 55, 0.8), rgba(55, 65, 81, 0.8)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--htd-red);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--htd-red);
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(rgba(31, 41, 55, 0.8), rgba(55, 65, 81, 0.8)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}



.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Contact Features */
.contact-feature {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: white;
    margin-right: 1rem;
    min-width: 50px;
    text-align: center;
}

.contact-visual img {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid var(--htd-red);
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
}

.trust-badge img {
    max-height: 60px;
    margin-bottom: 1rem;
}

.gallery-img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.lead-form {
    background: var(--htd-black);
    color: white;
    padding: 3rem 0;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
}

.emergency-banner {
    background: var(--htd-red);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: bold;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--htd-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Trust Badges */
.trust-badge {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--htd-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--htd-black);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: #666;
}

/* Lead Form Enhancements */
#leadForm .form-control,
#leadForm .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

#leadForm .form-control:focus,
#leadForm .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
    background: white;
    transform: translateY(-1px);
}

#leadForm .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

#leadForm .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Form Card Styling */
.cta-section .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.cta-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-section .card-body {
    padding: 2.5rem;
}

/* Form Labels */
#leadForm .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-step {
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .trust-badge {
        margin-bottom: 2rem;
    }
    
    .cta-section .card-body {
        padding: 2rem;
    }
}

/* Service list wrapper and alignment */
.service-list-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.service-card .list-unstyled {
    text-align: left;
    margin-left: 0;
    display: inline-block;
}

.service-card .list-unstyled li i {
    width: 20px;
    text-align: center;
    display: inline-block;
}