:root {
    --goaid-red: #FF0000;
    --goaid-red-hover: #E53E3E;
    --goaid-blue: #2471B7;
    --goaid-dark: #2D3748;
    --goaid-gray: #718096;
    --goaid-black: #333333;
    --goaid-light: #FFFFF;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand .text-danger {
    color: var(--goaid-red) !important;
}

.hero-section {
    /*background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);*/
    background: url("https://www.goaid.in/wp-content/uploads/2023/12/Ambulance-Service-for-Delhi-Banner.webp");
    min-height: 60vh;
    color: white;
    position: relative;
    z-index: 1;
}

.elementor-background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    z-index: -1;
}

.btn-emergency {
    background-color: var(--goaid-red);
    border-color: var(--goaid-red);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background-color: var(--goaid-red-hover);
    border-color: var(--goaid-red-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-download {
    background-color: var(--goaid-blue);
    border: 2px solid var(--goaid-blue);
    color: var(--goaid-light);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: var(--goaid-red);
    color: white;
    transform: translateY(-2px);
}

.ambulance-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--goaid-dark) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--goaid-red) !important;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #E2E8F0;
}

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--goaid-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.services-description {
    font-size: 1.10rem;
    font-weight: 500;
    color: var(--goaid-black);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--goaid-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--goaid-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size:0.95rem;
    color: var(--goaid-black);
    line-height: 1.5;
    font-weight: 500;
}

/* Availability Section */
.availability-section {
    padding: 80px 0;
    background-color: white;
}

/* Airport Section */
.airport-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3182CE 0%, #2B77CB 100%);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--goaid-dark);
    margin-bottom: 2rem;
}

.airport-section .section-title {
    color: white;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.section-text-dark {
    font-size: 1.05rem;
    color: var(--goaid-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Cost Section */
.cost-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cost-section .table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cost-section .table thead {
    background-color: var(--goaid-red);
    color: white;
}

.cost-section .table th {
    padding: 15px;
    font-weight: 600;
}

.cost-section .table td {
    padding: 12px;
}

.text-highlight {
    color: var(--goaid-red);
    font-weight: 600;
}

/* Cities Section */
.cities-section {
    padding: 80px 0;
    background-color: white;
}

.city-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.city-title {
    color: var(--goaid-red);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.city-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-links li {
    margin-bottom: 8px;
    color: var(--goaid-gray);
}

.city-links a {
    text-decoration: none;
    color: var(--goaid-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.accordion-button {
    background: white;
    color: var(--goaid-dark);
    font-weight: 600;
    padding: 20px;
}

.accordion-body {
    padding: 20px;
    color: var(--goaid-gray);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #3182CE 0%, #2B77CB 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand-highlight {
    color: #FF0000;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-social {
    display: inline-flex;
    gap: 10px;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
}

.footer-copyright {
    margin-top: 15px;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.app-download {
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--goaid-dark);
}

/* Equipment Section */
.equipment-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.equipment-title {
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: 80vh;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }
}
