/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: white;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.full-width { width: 100%; }
.mb-6 { margin-bottom: 1.5rem; }

/* Updated Button Styles with Medical Theme */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Medical Blue - Primary Action */
.btn-medical {
    background: linear-gradient(135deg, #0066CC 0%, #4A90E2 100%);
    color: white;
}

.btn-medical:hover {
    background: linear-gradient(135deg, #0052A3 0%, #357ABD 100%);
}

/* Teal - Secondary Medical */
.btn-teal {
    background: linear-gradient(135deg, #00A693 0%, #20B2AA 100%);
    color: white;
}

.btn-teal:hover {
    background: linear-gradient(135deg, #008B7A 0%, #1C9A91 100%);
}

/* Medical Red - Emergency/Important */
.btn-red {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: white;
}

.btn-red:hover {
    background: linear-gradient(135deg, #CB4335 0%, #A93226 100%);
}

/* Success Green - WhatsApp/Success */
.btn-green {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: white;
}

.btn-green:hover {
    background: linear-gradient(135deg, #229954 0%, #28B463 100%);
}

/* Professional Gold - Premium */
.btn-gold {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    color: white;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #D68910 0%, #CA6F1E 100%);
}

/* Clean White - Alternative */
.btn-white {
    background: white;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-white:hover {
    background: #0066CC;
    color: white;
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn.hero-btn:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    max-width: 64rem;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.payment-modal .modal-content {
    max-width: 28rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #C0392B;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: #7F8C8D;
}

.video-container {
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .modal-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Payment Modal Specific */
.payment-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-icon i {
    font-size: 2rem;
    color: #0066CC;
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.payment-subtitle {
    color: #7F8C8D;
}

.package-info {
    background: linear-gradient(135deg, #EBF4FF 0%, #F0F9FF 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #BFDBFE;
}

.qr-section {
    text-align: center;
    margin: 1rem 0;
}

.qr-text {
    font-size: 0.875rem;
    color: #7F8C8D;
    margin-bottom: 0.5rem;
}

.qr-placeholder {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 1rem;
    border-radius: 1rem;
    margin: 0 auto;
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #CBD5E1;
}

.qr-placeholder span {
    font-size: 0.75rem;
    color: #7F8C8D;
    text-align: center;
    line-height: 1.2;
}

.payment-note {
    font-size: 0.75rem;
    color: #7F8C8D;
    text-align: center;
    margin-top: 1rem;
}

/* Navigation with Medical Theme */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.brand-link {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0066CC;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

.brand-highlight {
    background: linear-gradient(135deg, #0066CC 0%, #00A693 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0066CC;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #0066CC 0%, #00A693 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.mobile-menu-toggle {
    display: block;
    cursor: pointer;
    color: #0066CC;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Hero Section with Medical Theme */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0066CC 0%, #00A693 25%, #4A90E2 50%, #20B2AA 75%, #0066CC 100%);
    color: white;
    overflow: hidden;
    padding-top: 4.5rem;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.element-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, #FFFFFF, #EBF4FF);
    animation: bounce 3s infinite;
}

.element-2 {
    top: 10rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(45deg, #98E4D6, #20B2AA);
    opacity: 0.2;
    animation: pulse 4s infinite;
    animation-delay: 1s;
}

.element-3 {
    bottom: 8rem;
    left: 5rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(45deg, #DBEAFE, #BFDBFE);
    opacity: 0.1;
    animation: bounce 5s infinite;
    animation-delay: 2s;
}

.element-4 {
    top: 15rem;
    left: 33.333%;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, #A7F3D0, #6EE7B7);
    opacity: 0.2;
    animation: pulse 3.5s infinite;
    animation-delay: 0.5s;
}

.element-5 {
    bottom: 5rem;
    right: 25%;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, #BFDBFE, #93C5FD);
    opacity: 0.15;
    animation: bounce 4.5s infinite;
    animation-delay: 1.5s;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.pattern-1 {
    background: linear-gradient(90deg, transparent, white, transparent);
    transform: skewY(-12deg);
    animation: pulse 3s infinite;
}

.pattern-2 {
    background: linear-gradient(0deg, transparent, white, transparent);
    transform: skewX(12deg);
    animation: pulse 3s infinite;
    animation-delay: 2s;
}

.medical-icon {
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: bounce 4s infinite;
}

.icon-1 {
    top: 8rem;
    right: 33.333%;
    color: #FFFFFF;
}

.icon-2 {
    bottom: 10rem;
    left: 25%;
    color: #98E4D6;
    animation-delay: 3s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.title-highlight {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.title-main {
    color: white;
}

.title-sub {
    font-size: 1.5rem;
    color: #DBEAFE;
    font-weight: 600;
}

@media (min-width: 768px) {
    .title-sub {
        font-size: 1.875rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #DBEAFE;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

.hero-mentor {
    font-size: 1.25rem;
    color: #98E4D6;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-mentor {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #EBF4FF;
    max-width: 32rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-right {
    position: relative;
}

.hero-video {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.live-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
    animation: bounce 2s infinite;
}

.decorative-arrows {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #98E4D6;
    opacity: 0.4;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.arrow-1 {
    transform: rotate(45deg);
    animation: pulse 2s infinite;
}

.arrow-2 {
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.arrow-3 {
    transform: rotate(-45deg);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Brand Story Section */
.brand-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EBF4FF 100%);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #0066CC;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-title.white {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #7F8C8D;
    font-weight: 500;
}

.section-subtitle.light {
    color: #DBEAFE;
}

.story-content {
    max-width: 64rem;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.story-text {
    font-size: 1.125rem;
    color: #2C3E50;
    line-height: 1.8;
}

/* About Doctor Section */
.about-doctor {
    padding: 5rem 0;
    background: white;
}

.doctor-content {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .doctor-content {
        grid-template-columns: 1fr 1fr;
    }
}

.doctor-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
    max-width: 20rem;
    margin: 0 auto;
    border: 4px solid rgba(0, 102, 204, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #00A693 0%, #20B2AA 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 166, 147, 0.3);
    text-align: center;
}

.badge-number {
    font-size: 1.75rem;
    font-weight: 800;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.doctor-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066CC;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

.doctor-subtitle {
    font-size: 1.25rem;
    color: #00A693;
    font-weight: 600;
}

.doctor-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #2C3E50;
    line-height: 1.8;
    font-size: 1.1rem;
}

.doctor-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
}

/* Courses Section */
.courses {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EBF4FF 100%);
}

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

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 112rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.package-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
    padding: 2rem;
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0066CC 0%, #00A693 100%);
}

.package-card:hover {
    border-color: #0066CC;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.2);
}

.package-card.popular {
    border-color: #00A693;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
}

.package-card.popular::before {
    background: linear-gradient(135deg, #00A693 0%, #20B2AA 100%);
}

.package-card.popular:hover {
    border-color: #00A693;
    box-shadow: 0 25px 50px rgba(0, 166, 147, 0.2);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00A693 0%, #20B2AA 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 166, 147, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.package-description {
    color: #7F8C8D;
    font-size: 0.875rem;
    font-weight: 500;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #2C3E50;
}

.package-features i {
    color: #00A693;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #EBF4FF 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.testimonial-card .video-container {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.testimonial-title {
    color: #00A693;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.testimonial-text {
    color: #2C3E50;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0066CC 0%, #00A693 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon.yellow {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    color: white;
}

.contact-icon.green {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: white;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info {
    color: #DBEAFE;
    font-weight: 500;
}

.contact-link {
    color: #98E4D6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-link:hover {
    color: #FFFFFF;
}

.contact-cta {
    text-align: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    z-index: 50;
    animation: bounce 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #229954 0%, #28B463 100%);
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.5);
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-mentor {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .doctor-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn.hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .doctor-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .decorative-arrows {
        display: none;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
        gap: 1rem;
        border-top: 1px solid rgba(0, 102, 204, 0.1);
    }
}

/* Additional Medical Theme Enhancements */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066CC, transparent);
    margin: 2rem 0;
}

.medical-accent {
    color: #00A693;
}

.highlight-box {
    background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
    border-left: 4px solid #0066CC;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

/* Pulse animation for important elements */
.pulse-medical {
    animation: pulse-medical 2s infinite;
}

@keyframes pulse-medical {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}