/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.hero-section .btn i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Features Section */
.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    display: block;
}

.features-section .card {
    text-align: center;
    padding: 1.5rem;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Documentation Section */
.docs-section {
    background-color: #f8f9fa;
}

.docs-section .accordion-body {
    padding: 1.5rem;
}

.docs-section h5 {
    color: #0d6efd;
    margin-bottom: 1rem;
}

.docs-section h6 {
    color: #495057;
    font-weight: 600;
}

.docs-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.docs-list li {
    margin-bottom: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #343a40;
}

.testimonial-author {
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f8f9fa;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.step-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    display: block;
}

/* Metrics Section */
.metrics-section {
    background: linear-gradient(135deg, #042D6B, #0d6efd);
    color: white;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    font-size: 3.5rem;
    color: #6CA7FF;
    margin-bottom: 1.5rem;
    display: block;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #6CA7FF;
    font-size: 1rem;
    margin-bottom: 0;
}

.divider {
    position: relative;
    text-align: center;
    margin: 3rem 0;
}

.divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-text {
    position: relative;
    background: #042D6B;
    padding: 0.5rem 2rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.download-btn {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}

.contact-info-card a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #0a58ca;
}

.contact-form-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-control {
    padding: 0.75rem;
    border-radius: 8px;
}

.contact-form-card .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.contact-form-card .btn-lg {
    padding: 1rem 2rem;
}

/* Contact Page Specific Styles */
.contact-header {
    background: linear-gradient(135deg, #042D6B, #0d6efd);
    color: white;
    padding: 6rem 0 4rem;
    margin-bottom: 0 !important;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn-lg {
        width: 100%;
        margin-bottom: 1rem;
    }

    .metric-number {
        font-size: 2rem;
    }
    
    .metric-label {
        font-size: 0.875rem;
    }

    .contact-info-card {
        margin-bottom: 1rem;
    }
}