/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(63,181,169,0.05)"/></svg>') no-repeat center top;
    background-size: cover;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3fb5a9, #2c8a82);
    border-radius: 2px;
}

.testimonials > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3fb5a9;
    font-family: Georgia, serif;
    opacity: 0.3;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ffc107;
    font-weight: 600;
}

.testimonial-card .rating::before {
    content: '⭐';
    margin-right: 5px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.testimonial-card .author::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #3fb5a9;
    font-weight: bold;
}

/* Special styling for first testimonial */
.testimonial-card:first-child {
    border-top: 4px solid #3fb5a9;
}

.testimonial-card:nth-child(2) {
    border-top: 4px solid #2c8a82;
}

.testimonial-card:nth-child(3) {
    border-top: 4px solid #f58634;
}

.testimonial-card:nth-child(4) {
    border-top: 4px solid #28a745;
}

.testimonial-card:nth-child(5) {
    border-top: 4px solid #dc3545;
}

/* Steps Section Professional Styling */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3fb5a9 50%, #2c8a82 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

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

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-header {
    margin-bottom: 3rem;
    position: relative;
}

.cta-header i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c3e50;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.cta-text {
    margin-bottom: 3rem;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-highlight i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
    display: block;
}

.cta-highlight p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-benefits {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefit-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    line-height: 1.5;
}

.cta-final {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-final p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.cta-action {
    margin-top: 2rem;
}

.btn-cta {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta i {
    font-size: 1.3rem;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

.cta-contact {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact i {
    font-size: 1.2rem;
    color: #ffc107;
}

/* MRI Info Section */
.mri-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f1f3f4 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mri-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(63,181,169,0.03)"/></svg>') no-repeat center top;
    background-size: cover;
    z-index: 0;
}

.mri-info-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.mri-info-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.mri-info-header i {
    font-size: 3rem;
    color: #3fb5a9;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.mri-info-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    position: relative;
}

.mri-info-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3fb5a9, #2c8a82);
    border-radius: 2px;
}

.mri-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mri-info-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mri-explanation,
.mri-benefits,
.mri-quality {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mri-explanation:hover,
.mri-benefits:hover,
.mri-quality:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mri-explanation {
    border-left: 5px solid #3fb5a9;
}

.mri-benefits {
    border-left: 5px solid #28a745;
}

.mri-quality {
    border-left: 5px solid #ffc107;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(63, 181, 169, 0.3);
}

.mri-benefits .info-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.mri-quality .info-icon {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.mri-explanation p,
.mri-benefits p,
.mri-quality p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    flex: 1;
}

.mri-info-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mri-machine-illustration {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    position: relative;
}

.mri-machine-illustration::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82, #28a745, #ffc107);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.mri-machine-illustration > i {
    font-size: 4rem;
    color: #3fb5a9;
    margin-bottom: 2rem;
    display: block;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mri-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(63, 181, 169, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:nth-child(2) {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.feature-item:nth-child(3) {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.2rem;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    color: #333;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(63, 181, 169, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header scroll effect */
header.scrolled {
    padding: 0.15rem 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

/* Compact brand when scrolled */
header.scrolled .brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

header.scrolled .brand-icon i {
    font-size: 1.1rem;
}

header.scrolled .brand-name {
    font-size: 1.2rem;
}

header.scrolled .brand-tagline {
    font-size: 0.55rem;
}

header.scrolled .brand-link {
    gap: 8px;
}

/* Compact navigation when scrolled */
header.scrolled .nav-link {
    padding: 6px 10px;
    font-size: 0.7rem;
}

header.scrolled .nav-link i {
    font-size: 0.8rem;
}

/* Enhanced text contrast when scrolled */
header.scrolled .brand-name {
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

header.scrolled .brand-tagline {
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

header.scrolled .nav-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-link:hover {
    background: rgba(63, 181, 169, 0.2);
    border: 1px solid rgba(63, 181, 169, 0.3);
}

/* Hidden header after 25% scroll */
header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-out;
}

.sub-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-out;
}

/* Compact sub-header when scrolled */
.sub-header.compact {
    padding: 0.25rem 0;
    transform: translateY(-5px);
    background: rgba(63, 181, 169, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-header.compact .btn {
    padding: 4px 10px;
    font-size: 0.65rem;
}

.sub-header.compact .btn i {
    font-size: 0.7rem;
}

.sub-header.compact .contact-item {
    padding: 3px 8px;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-header.compact .btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sub-header.compact .btn-ambulance:hover {
    background: rgba(231, 76, 60, 0.3) !important;
}

.sub-header.compact .btn-doctor:hover {
    background: rgba(243, 156, 18, 0.3) !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
}

/* Professional Brand Styling */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3fb5a9, #28a745);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(63, 181, 169, 0.3);
    animation: brand-pulse 3s ease-in-out infinite;
}

@keyframes brand-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(63, 181, 169, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(63, 181, 169, 0.5); }
}

.brand-icon i {
    font-size: 1.8rem;
    color: white;
    animation: heartbeat-icon 2s ease-in-out infinite;
}

@keyframes heartbeat-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    background: linear-gradient(45deg, #3fb5a9, #28a745, #17a2b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* .brand-name::after {
    content: '®';
    font-size: 0.6rem;
    color: #3fb5a9;
    vertical-align: super;
    font-weight: 600;
    margin-left: 2px;
} */

/* Special styling for MRI part */
.brand-name::first-letter {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #3fb5a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand name styling in content */
.brand-highlight {
    font-weight: 700;
    background: linear-gradient(45deg, #3fb5a9, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    padding: 1px 2px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* .brand-highlight::after {
    content: '®';
    font-size: 0.6em;
    color: #3fb5a9;
    vertical-align: super;
    font-weight: 600;
    margin-left: 1px;
} */

.brand-highlight:hover {
    background: linear-gradient(45deg, #28a745, #17a2b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

/* Phone link styling */
.header-contact a,
.cta-contact a,
.contact-text a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.header-contact a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-contact a:hover {
    color: #3fb5a9;
    text-shadow: 0 0 10px rgba(63, 181, 169, 0.5);
    transform: translateY(-1px);
}

.contact-text a:hover {
    color: #3fb5a9;
    text-shadow: 0 0 10px rgba(63, 181, 169, 0.5);
    transform: translateY(-1px);
}

/* Button phone links special styling */
.btn-hero-primary:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 181, 169, 0.4);
}

.btn-hero-primary i,
.btn-cta i {
    animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #6c757d, #3fb5a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial', sans-serif;
    opacity: 0.9;
}

header .logo img {
    height: 40px;
    vertical-align: middle;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

header nav ul li {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3fb5a9, #28a745);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 181, 169, 0.3);
}

.nav-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

header .contact-info {
    display: none;
}

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #3fb5a9, #28a745);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(63, 181, 169, 0.3);
}

.menu-toggle:hover {
    background: linear-gradient(135deg, #28a745, #17a2b8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(63, 181, 169, 0.4);
}

/* Sub Header */
.sub-header {
    background: linear-gradient(135deg, #3fb5a9 0%, #2c8a82 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sub-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.sub-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.sub-header-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sub-header-right {
    display: flex;
    align-items: center;
}

.sub-header .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sub-header .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.sub-header .btn:hover::before {
    left: 0;
}

.sub-header .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sub-header .btn-ambulance {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.sub-header .btn-ambulance:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.sub-header .btn-doctor {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.sub-header .btn-doctor:hover {
    background: linear-gradient(45deg, #e67e22, #d35400);
}

.sub-header .btn i {
    font-size: 1rem;
    animation: service-pulse 2s infinite;
}

@keyframes service-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.header-contact .contact-item i {
    font-size: 1rem;
    color: #fff;
}

.header-contact .contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.header-contact .contact-item a:hover {
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #ffffff 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(63,181,169,0.1)"/></svg>') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(63, 181, 169, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); }
    to { box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5); }
}

.hero-badge i {
    font-size: 1rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-title {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.title-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(63, 181, 169, 0.3);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title-icon i {
    font-size: 2.5rem;
    color: white;
}

.hero-title h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0;
    flex: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(63, 181, 169, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(63, 181, 169, 0.3);
}

.benefit-item:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.benefit-item:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.benefit-icon i {
    font-size: 1.3rem;
    color: white;
}

.benefit-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    flex: 1;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
}

.btn-hero-primary i {
    font-size: 1.3rem;
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
}

.hero-trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(63, 181, 169, 0.2);
}

.trust-item i {
    color: #28a745;
    font-size: 1rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 5px solid rgba(255, 255, 255, 0.8);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82, #28a745, #ffc107);
    border-radius: 30px;
    z-index: -1;
    animation: border-glow 3s ease-in-out infinite alternate;
}

@keyframes border-glow {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    border: 2px solid rgba(63, 181, 169, 0.2);
    animation: float-cards 3s ease-in-out infinite;
}

.floating-card i {
    color: #3fb5a9;
    font-size: 1.1rem;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float-cards {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.btn {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-book {
    background-color: #e76154;
    color: #fff;
    border-radius: 25px;
    padding: 12px 30px;
}

.btn-book:hover {
    background-color: #d64a3b;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(63, 181, 169, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-header {
    margin-bottom: 3rem;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 15px 40px rgba(63, 181, 169, 0.3);
    animation: pulse-intro 3s ease-in-out infinite;
}

@keyframes pulse-intro {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.intro-icon i {
    font-size: 2.5rem;
    color: white;
}

.intro-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #3fb5a9, #28a745);
    margin: 0 auto;
    border-radius: 2px;
    animation: intro-underline-glow 2s ease-in-out infinite alternate;
}

@keyframes intro-underline-glow {
    from { box-shadow: 0 0 10px rgba(63, 181, 169, 0.5); }
    to { box-shadow: 0 0 20px rgba(63, 181, 169, 0.8); }
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(63, 181, 169, 0.1);
    backdrop-filter: blur(10px);
}

.intro-highlight i {
    font-size: 2rem;
    color: #e74c3c;
    animation: heart-beat 2s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.intro-highlight p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2c3e50;
    text-align: left;
    flex: 1;
}

.intro-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(63, 181, 169, 0.3);
    transition: all 0.3s ease;
}

.intro-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(63, 181, 169, 0.4);
}

.intro-benefit i {
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,0,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="rgba(63,181,169,0.05)"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
    animation: rotate-icon 10s linear infinite;
}

@keyframes rotate-icon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.why-choose-icon i {
    font-size: 2.8rem;
    color: white;
}

.why-choose-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.why-choose-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #28a745, #20c997);
    margin: 0 auto;
    border-radius: 2px;
    animation: why-choose-glow 2s ease-in-out infinite alternate;
}

@keyframes why-choose-glow {
    from { box-shadow: 0 0 10px rgba(40, 167, 69, 0.5); }
    to { box-shadow: 0 0 20px rgba(40, 167, 69, 0.8); }
}

.why-choose-description {
    margin-bottom: 4rem;
}

.description-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.description-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.description-icon i {
    font-size: 2rem;
    color: white;
}

.description-card p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    flex: 1;
}

.why-choose-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.overlay-text i {
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(63, 181, 169, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3fb5a9, #28a745);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(63, 181, 169, 0.3);
}

.benefit-card:nth-child(2) .benefit-icon-wrapper {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.benefit-card:nth-child(3) .benefit-icon-wrapper {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.benefit-card:nth-child(4) .benefit-icon-wrapper {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.benefit-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-weight: 600;
}

.benefit-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.benefit-badge {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-badge {
    opacity: 1;
    transform: scale(1);
}

.benefit-badge i {
    font-size: 0.8rem;
    color: white;
}

/* Sections */
section {
    padding: 3rem 0;
    text-align: center;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #3fb5a9;
}

/* Service Areas */
.service-areas {
    background-color: #fff;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.areas-list span {
    background-color: #eaf7f6;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Map Section */
.map {
    padding-bottom: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Pricing Table */
#pricing {
    scroll-margin-top: 80px;
}

.pricing {
    background: #f9f9f9;
}

.pricing table {
    width: 100%;
    max-width: 900px;
    border-collapse: collapse;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    border-radius: 10px;
    overflow: hidden;
}

.pricing th, .pricing td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.pricing tr:last-child td {
    border-bottom: none;
}

.pricing th {
    background: #3fb5a9;
    color: #fff;
    font-size: 1.1rem;
}

.pricing th:last-child,
.pricing td:last-child {
    text-align: right;
}

.pricing td:last-child {
    font-weight: bold;
    color: #3fb5a9;
}

.pricing table th, .pricing table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

/* Diagnostic Centers */
#diagnostic-centers {
    scroll-margin-top: 80px;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.center-card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.center-card i {
    font-size: 2.5rem;
    color: #3fb5a9;
    margin-bottom: 1rem;
}

.center-card h3 {
    color: #3fb5a9;
    margin-top: 0;
}

/* FAQ */
#faq {
    scroll-margin-top: 80px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(63, 181, 169, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 15px 40px rgba(111, 66, 193, 0.3);
    animation: faq-icon-pulse 3s ease-in-out infinite;
}

@keyframes faq-icon-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.faq-icon i {
    font-size: 3rem;
    color: white;
}

.faq-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-underline {
    width: 140px;
    height: 4px;
    background: linear-gradient(45deg, #6f42c1, #8b5cf6);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
    animation: faq-underline-glow 2s ease-in-out infinite alternate;
}

@keyframes faq-underline-glow {
    from { box-shadow: 0 0 10px rgba(111, 66, 193, 0.5); }
    to { box-shadow: 0 0 20px rgba(111, 66, 193, 0.8); }
}

.faq-description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 25px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.faq-description i {
    font-size: 1.5rem;
    color: #17a2b8;
    animation: info-bounce 2s ease-in-out infinite;
}

@keyframes info-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.faq-description p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3fb5a9, #2c8a82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(63, 181, 169, 0.3);
    transition: all 0.3s ease;
}

.faq-item:nth-child(2) .question-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.faq-item:nth-child(3) .question-icon {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.faq-item:nth-child(4) .question-icon {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.faq-item:nth-child(5) .question-icon {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.3);
}

.question-icon i {
    font-size: 1.3rem;
    color: white;
}

.question-content span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.question-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.question-toggle i {
    font-size: 1.1rem;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .question-toggle {
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: rotate(45deg);
}

.faq-item.active .question-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    background: rgba(248, 249, 250, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.answer-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-top: 1px solid rgba(111, 66, 193, 0.1);
}

.answer-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #17a2b8, #6c757d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.answer-icon i {
    font-size: 1rem;
    color: white;
}

.answer-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    flex: 1;
}

/* Footer */
/* Footer */
footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: #fff;
    padding: 0;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(63, 181, 169, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.footer-content {
    position: relative;
    z-index: 3;
}

.footer-top {
    padding: 4rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 600px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo i {
    font-size: 3rem;
    color: #3fb5a9;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-logo h2 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    background: linear-gradient(45deg, #3fb5a9, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.footer-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stats .stat-item i {
    font-size: 2rem;
    color: #3fb5a9;
}

.footer-stats .stat-content {
    text-align: left;
}

.footer-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.footer-stats .stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
}

.footer-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-col:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.footer-col-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col-header i {
    font-size: 1.5rem;
    color: #3fb5a9;
    width: 30px;
    text-align: center;
}

.footer-col-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.footer-col ul li a i {
    font-size: 0.8rem;
    color: #3fb5a9;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3fb5a9;
    padding-left: 0.5rem;
    background: rgba(63, 181, 169, 0.1);
}

.footer-col ul li a:hover i {
    transform: translateX(5px);
}

.contact-info {
    padding: 0;
}

.contact-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3fb5a9, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(63, 181, 169, 0.3);
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text {
    flex: 1;
}

.contact-text span,
.contact-text a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-text a:hover {
    color: #3fb5a9;
}

.contact-text small {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 2rem 24px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 2rem;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright-content p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
}

.copyright-content a {
    color: #3fb5a9;
    text-decoration: none;
}

.copyright-content a:hover {
    color: #28a745;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social span {
    color: #ccc;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3fb5a9, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(63, 181, 169, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 181, 169, 0.5);
}

.social-link i {
    font-size: 1.1rem;
}

/* Responsive */
@media(max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    header nav.active {
        display: flex;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .contact-info {
       display: none;
    }

    /* Brand Mobile Responsive */
    .brand-link {
        gap: 8px;
        padding: 6px 0;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }

    .brand-icon i {
        font-size: 1.4rem;
    }

    .brand-name {
        font-size: 1.4rem;
        letter-spacing: -0.3px;
    }

    .brand-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .sub-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .sub-header-left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .sub-header-right {
        width: 100%;
        justify-content: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .header-contact .contact-item {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .sub-header .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Mobile Header - Not Sticky */
    header {
        position: relative !important;
        top: auto !important;
        padding: 1rem 0 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%) !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    /* Prevent hidden header on mobile */
    header.hidden {
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
    }

    /* Mobile Sub-header - Not Sticky */
    .sub-header {
        position: relative !important;
        padding: 1rem 0 !important;
        background: linear-gradient(135deg, #3fb5a9 0%, #2c8a82 100%) !important;
    }

    /* Prevent hidden sub-header on mobile */
    .sub-header.hidden {
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
    }

    /* Remove all scrolled effects on mobile */
    header.scrolled {
        padding: 1rem 0 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%) !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        transform: none !important;
    }

    header.scrolled .brand-link {
        gap: 8px !important;
    }

    header.scrolled .brand-icon {
        width: 35px !important;
        height: 35px !important;
        border-radius: 8px !important;
    }

    header.scrolled .brand-icon i {
        font-size: 1.4rem !important;
    }

    header.scrolled .brand-name {
        font-size: 1.4rem !important;
    }

    header.scrolled .brand-tagline {
        font-size: 0.65rem !important;
    }

    header.scrolled .nav-link {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        text-shadow: none !important;
    }

    header.scrolled .nav-link i {
        font-size: 0.9rem !important;
    }

    .sub-header.compact {
        padding: 1rem 0 !important;
        background: linear-gradient(135deg, #3fb5a9 0%, #2c8a82 100%) !important;
        backdrop-filter: none !important;
        transform: none !important;
    }

    .sub-header.compact .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        background: linear-gradient(45deg, #e74c3c, #c0392b) !important;
        backdrop-filter: none !important;
        border: none !important;
        text-shadow: none !important;
    }

    .sub-header.compact .btn i {
        font-size: 1rem !important;
    }

    .sub-header.compact .contact-item {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: none !important;
        border: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
    }

    .hero-content {
        order: 2;
        text-align: left;
    }

    .hero-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .title-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .title-icon i {
        font-size: 2rem;
    }

    .hero-title h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .benefit-item {
        padding: 1rem;
        gap: 1rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .benefit-icon i {
        font-size: 1.1rem;
    }

    .benefit-item p {
        font-size: 1rem;
    }

    .btn-hero-primary {
        padding: 15px 25px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-trust-indicators {
        justify-content: center;
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-image {
        order: 1;
    }

    .image-container {
        max-width: 350px;
    }

    .floating-card {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .floating-card-1 {
        top: 5%;
        right: -15%;
    }

    .floating-card-2 {
        top: 60%;
        left: -20%;
    }

    .floating-card-3 {
        bottom: 10%;
        right: -10%;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
    }

    .intro-icon i {
        font-size: 2rem;
    }

    .intro-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .intro-underline {
        width: 80px;
    }

    .intro-highlight {
        flex-direction: column;
        padding: 1.5rem;
        margin: 0 1rem 2rem 1rem;
        gap: 1rem;
    }

    .intro-highlight i {
        font-size: 1.5rem;
    }

    .intro-highlight p {
        text-align: center;
        font-size: 1.1rem;
    }

    .intro-benefits {
        gap: 1rem;
        justify-content: center;
    }

    .intro-benefit {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
    }

    .why-choose-icon i {
        font-size: 2.2rem;
    }

    .why-choose-header h2 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .why-choose-underline {
        width: 100px;
    }

    .description-card {
        flex-direction: column;
        padding: 2rem;
        margin: 0 1rem;
        gap: 1.5rem;
        text-align: center;
    }

    .description-icon {
        width: 60px;
        height: 60px;
    }

    .description-icon i {
        font-size: 1.5rem;
    }

    .description-card p {
        font-size: 1.1rem;
    }

    .why-choose-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-choose-image {
        order: 1;
    }

    .why-choose-benefits {
        order: 2;
    }

    .image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .benefit-card {
        padding: 1.5rem;
        gap: 1rem;
        margin: 0 1rem;
    }

    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .benefit-icon-wrapper i {
        font-size: 1.2rem;
    }

    .benefit-content h4 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    .benefit-badge {
        width: 25px;
        height: 25px;
    }

    .benefit-badge i {
        font-size: 0.7rem;
    }

    /* Footer Mobile Responsive */
    .footer-top {
        padding: 2rem 0 1rem 0;
    }

    .brand-logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .brand-logo i {
        font-size: 2.5rem;
    }

    .brand-logo h2 {
        font-size: 2rem;
    }

    .brand-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .footer-stats .stat-item {
        padding: 0.8rem 1rem;
        margin: 0 1rem;
    }

    .footer-stats .stat-item i {
        font-size: 1.5rem;
    }

    .footer-stats .stat-number {
        font-size: 1.2rem;
    }

    .footer-stats .stat-label {
        font-size: 0.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .footer-col {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .footer-col:hover {
        transform: none;
    }

    .footer-col-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-col-header i {
        font-size: 1.3rem;
    }

    .footer-col-header h3 {
        font-size: 1.2rem;
    }

    .footer-col ul li a {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .contact-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .contact-item:hover {
        transform: none;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .contact-text span,
    .contact-text a {
        font-size: 1rem;
    }

    .contact-text small {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        margin: 0 1rem;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .copyright-content p {
        font-size: 0.9rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-social span {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link:hover {
        transform: none;
    }

    .social-link i {
        font-size: 1rem;
    }

    .mri-recommended .conditions-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Mobile Responsive */
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    /* Steps Mobile Responsive */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* CTA Mobile Responsive */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-header i {
        font-size: 2.5rem;
    }
    
    .cta-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .cta-highlight {
        padding: 1.5rem;
        margin: 0 10px 1.5rem 10px;
    }
    
    .cta-highlight p {
        font-size: 1.1rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 10px;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-benefits {
        margin: 1.5rem 10px;
    }
    
    .benefit-item {
        margin-bottom: 0.8rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .cta-final {
        margin: 1.5rem 10px;
        padding: 1rem;
    }
    
    .cta-final p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 0 10px;
    }
    
    .btn-cta span {
        display: block;
        text-align: center;
    }
    
    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 1.5rem 10px 0 10px;
    }
    
    .cta-contact span {
        font-size: 1rem;
        padding: 8px 16px;
    }

    /* MRI Info Section Mobile Responsive */
    .mri-info-section {
        padding: 2rem 0;
    }
    
    .mri-info-header i {
        font-size: 2.5rem;
    }
    
    .mri-info-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .mri-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mri-info-text {
        gap: 1.5rem;
    }
    
    .mri-explanation,
    .mri-benefits,
    .mri-quality {
        padding: 1.5rem;
        margin: 0 10px;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .info-icon i {
        font-size: 1.3rem;
    }
    
    .mri-explanation p,
    .mri-benefits p,
    .mri-quality p {
        font-size: 1rem;
    }
    
    .mri-info-visual {
        margin-top: 2rem;
    }
    
    .mri-machine-illustration {
        padding: 2rem;
        margin: 0 10px;
    }
    
    .mri-machine-illustration > i {
        font-size: 3rem;
    }
    
    .feature-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
    }

    /* FAQ Mobile Responsive */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-icon {
        width: 70px;
        height: 70px;
    }

    .faq-icon i {
        font-size: 2.5rem;
    }

    .faq-header h2 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .faq-underline {
        width: 100px;
    }

    .faq-description {
        flex-direction: column;
        padding: 1.5rem;
        margin: 0 1rem;
        gap: 1rem;
        text-align: center;
    }

    .faq-description i {
        font-size: 1.2rem;
    }

    .faq-description p {
        font-size: 1rem;
    }

    .faq-container {
        margin: 0 1rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .question-content {
        gap: 1rem;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

    .question-icon i {
        font-size: 1.1rem;
    }

    .question-content span {
        font-size: 1.1rem;
    }

    .question-toggle {
        width: 35px;
        height: 35px;
    }

    .question-toggle i {
        font-size: 1rem;
    }

    .answer-content {
        padding: 1.5rem;
        gap: 1rem;
    }

    .answer-icon {
        width: 35px;
        height: 35px;
    }

    .answer-icon i {
        font-size: 0.9rem;
    }

    .answer-content p {
        font-size: 1rem;
    }
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#booking-form input,
#booking-form select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#booking-form input:focus,
#booking-form select:focus {
    outline: none;
    border-color: #3fb5a9;
    box-shadow: 0 0 5px rgba(63, 181, 169, 0.5);
}

#booking-form button {
    background-color: #25D366;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#booking-form button:hover {
    background-color: #1EBE57;
    transform: translateY(-2px);
}

#booking-form button i {
    font-size: 1.3rem;
}

/*--------------------------------------------------------------
# MRI Recommended Section
--------------------------------------------------------------*/
.mri-recommended {
    padding: 60px 0;
    background-color: #fff;
}

.mri-recommended .conditions-grid {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.mri-recommended .conditions-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mri-recommended .conditions-grid ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.mri-recommended .conditions-grid ul i {
    font-size: 16px;
    margin-right: 10px;
    color: #3fb5a9;
}


/*--------------------------------------------------------------
# Safety Tips Section
--------------------------------------------------------------*/
.safety-tips {
    padding: 60px 0;
    background: #fcf2f2; /* A light reddish background */
}

.safety-tips .section-header h2 i {
    color: #d9534f; /* A shade of red */
    margin-right: 10px;
}

.safety-tips .tips-list ul {
    list-style: none;
    padding: 0;
    margin: 30px auto 0 auto;
    max-width: 800px;
}

.safety-tips .tips-list ul li {
    padding: 12px 20px;
    margin-bottom: 15px;
    background: #fff;
    border-left: 5px solid #d9534f;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.safety-tips .tips-list ul i {
    margin-right: 15px;
    color: #d9534f;
    font-size: 20px;
} 