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

html {
    scroll-behavior: smooth;
}

/* Ensure smooth scrolling works properly */
* {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #2c5f66;
}

/* Navigation */
.navbar {
    background-color: rgba(44, 95, 102, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-img {
    border:none !important;
}

/* Desktop glassmorphism effect */
@media (min-width: 769px) {
    .navbar {
        backdrop-filter: blur(10px);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 150px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1fd8d8;
}

.appointment-btn {
    background-color: #1fd8d8;
    color: #2c5f66;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background-color: #00c4c4;
    transform: translateY(-2px);
}

/* Mobile Typography and Spacing */
@media (max-width: 768px) {
    .doctors-profiles {
        padding: 3rem 0;
    }
    
    .doctors-profiles-container {
        padding: 0 1rem;
    }
    
    .doctor-profile-card {
        margin-bottom: 2.5rem;
        border-radius: 20px;
    }
    
    .doctor-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        border-radius: 15px;
    }
    
    .doctor-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .doctor-name {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .doctor-credentials {
        gap: 0.5rem;
    }
    
    .credential-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
    }
    
    .doctor-rating {
        align-self: flex-start;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .doctor-bio {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .highlight-section {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .highlight-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .highlight-icon {
        font-size: 1.1rem;
    }
    
    .specialty-tags {
        gap: 0.5rem;
    }
    
    .specialty-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
    }
    
    .education-summary .education-item {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .doctor-contact-section {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contact-info {
        gap: 0.6rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        font-size: 1rem;
    }
    
    .doctor-appointment-btn {
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .doctors-profiles {
        padding: 2rem 0;
    }
    
    .doctors-profiles-container {
        padding: 0 0.8rem;
    }
    
    .doctor-profile-card {
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .doctor-name {
        font-size: 1.4rem;
    }
    
    .doctor-bio {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .highlight-section {
        padding: 0.8rem;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .education-summary .education-item {
        font-size: 0.8rem;
    }
    
    .doctor-contact-section {
        padding: 1rem;
    }
    
    .doctor-appointment-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Tablet specific adjustments handled by the new responsive grid system above */

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation when active */
.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - Revolutionary Design */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(31, 216, 216, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(360deg); }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-1 {
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.15), rgba(44, 95, 102, 0.1));
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    animation: waveAnimation1 3s ease-in-out infinite;
}

.wave-2 {
    background: linear-gradient(45deg, rgba(26, 59, 65, 0.2), rgba(31, 216, 216, 0.1));
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0% 100%);
    animation: waveAnimation2 4s ease-in-out infinite reverse;
    margin-top: -50px;
}

.wave-3 {
    background: linear-gradient(45deg, rgba(44, 95, 102, 0.15), rgba(26, 59, 65, 0.15));
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    animation: waveAnimation3 5s ease-in-out infinite;
    margin-top: -50px;
}

@keyframes waveAnimation1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

@keyframes waveAnimation2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(25px); }
}

@keyframes waveAnimation3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: #ffffff;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(31, 216, 216, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 50px;
    opacity: 0;
    animation: badgeGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes badgeGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.title-line {
    display: block;
    opacity: 1;
}

.title-line-2 {
    background: linear-gradient(135deg, #1fd8d8, #ffffff, #1fd8d8);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #1fd8d8, #17b5b5);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 80%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
}

.subtitle-highlight {
    background: linear-gradient(135deg, #1fd8d8, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.3s;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1fd8d8;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.6s;
}

.hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #1fd8d8;
    color: #1fd8d8;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.hero-btn.primary:hover .btn-glow {
    opacity: 1;
    animation: buttonShine 0.6s ease-out;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.9s;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.9rem;
}

.trust-icon {
    color: #1fd8d8;
    font-weight: bold;
}

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

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

.circular-badge {
    position: absolute;
    width: 160px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(31, 216, 216, 0.25), 
        rgba(255, 255, 255, 0.15), 
        rgba(31, 216, 216, 0.2),
        rgba(0, 255, 255, 0.1));
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    border: 3px solid;
    border-image: linear-gradient(45deg, 
        rgba(31, 216, 216, 0.6),
        rgba(255, 255, 255, 0.4),
        rgba(31, 216, 216, 0.8)) 1;
    box-shadow: 
        0 15px 50px rgba(31, 216, 216, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(31, 216, 216, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.25),
        inset 0 -2px 6px rgba(31, 216, 216, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    animation: badgeFloat 4s ease-in-out infinite, badgeGlow 3s ease-in-out infinite alternate;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    overflow: hidden;
}

.circular-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.circular-badge:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(31, 216, 216, 0.5),
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(31, 216, 216, 0.4),
        0 0 100px rgba(31, 216, 216, 0.2),
        inset 0 4px 12px rgba(255, 255, 255, 0.4),
        inset 0 -3px 8px rgba(31, 216, 216, 0.2);
    border-image: linear-gradient(45deg, 
        rgba(31, 216, 216, 0.9),
        rgba(255, 255, 255, 0.7),
        rgba(31, 216, 216, 1)) 1;
    backdrop-filter: blur(25px) saturate(200%);
}

.badge-1 {
    top: 15%;
    left: 28%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.badge-2 {
    top: 40%;
    left: 76%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

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

.badge-2 {
    animation-name: badgeFloatCenter;
}

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

@keyframes badgeGlow {
    0% {
        box-shadow: 
            0 15px 50px rgba(31, 216, 216, 0.3),
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(31, 216, 216, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.25),
            inset 0 -2px 6px rgba(31, 216, 216, 0.1);
    }
    100% {
        box-shadow: 
            0 20px 60px rgba(31, 216, 216, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(31, 216, 216, 0.3),
            0 0 80px rgba(31, 216, 216, 0.15),
            inset 0 4px 10px rgba(255, 255, 255, 0.3),
            inset 0 -3px 8px rgba(31, 216, 216, 0.15);
    }
}

.badge-icon-circle {
    font-size: 2.2rem;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(31, 216, 216, 0.3));
    margin-bottom: 0.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.circular-badge:hover .badge-icon-circle {
    font-size: 2.4rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 25px rgba(31, 216, 216, 0.5));
    transform: scale(1.1);
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(31, 216, 216, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.circular-badge:hover .badge-label {
    font-size: 0.85rem;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(31, 216, 216, 0.5),
        0 1px 4px rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 50%;
    opacity: 0.3;
    animation: imageGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes imageGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(31, 216, 216, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    border-color: rgba(31, 216, 216, 0.6);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

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

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

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

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section - Next Level Design */
.services {
    position: relative;
    padding: 6rem 0 8rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
    margin-top: -2rem;
    z-index: 3;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(31, 216, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(31, 216, 216, 0.03) 0%, transparent 50%);
    animation: patternFloat 15s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

.services-header {
    position: relative;
    z-index: 2;
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-badge {
    /* display: inline-flex; */
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(31, 216, 216, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);

}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b8d4d6;
    line-height: 1.6;
}

.services-grid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.services-grid.full-width {
    max-width: 100%;
    padding: 0 1rem;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card.card-premium {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.1));
    border: 2px solid rgba(31, 216, 216, 0.3);
    position: relative;
}

.service-card.card-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card.card-premium:hover::before {
    opacity: 0.3;
}

.service-card.card-featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.service-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-container {
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 2.5rem;
    color: #2c5f66;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 25px;
    opacity: 0;
    animation: iconGlow 2s ease-in-out infinite;
    z-index: -1;
}

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

.service-badge {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(31, 216, 216, 0.3);
}

.service-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #1fd8d8;
    transform: translateX(5px);
}

.service-footer {
    margin-top: auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.1));
    border: 1px solid rgba(31, 216, 216, 0.3);
    border-radius: 25px;
    color: #1fd8d8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-btn:hover {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.4);
}

/* Services CTA - Removed from layout */

/* Doctors Section - Revolutionary Design */
.doctors {
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 50%, #0d1f23 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.doctors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 216, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 216, 216, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(31, 216, 216, 0.03) 50%, transparent 70%);
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.8; transform: translateX(10px); }
}

/* Hero Section - Compact */
.doctors-hero {
    padding: 2rem 0 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.doctors-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 3px 12px rgba(31, 216, 216, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.doctors-hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.doctors-hero p {
    font-size: 1rem;
    color: #b8d4d6;
    line-height: 1.5;
    opacity: 0.9;
}

/* Showcase Grid - Revolutionary Layout */
.doctors-showcase {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    align-items: start;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(31, 216, 216, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Featured Doctor Card - Revolutionary Hero Card */
.featured-doctor-card {
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(31, 216, 216, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(31, 216, 216, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 700px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.featured-doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(31, 216, 216, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.featured-doctor-card:hover::before {
    opacity: 1;
}

.featured-doctor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(31, 216, 216, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(31, 216, 216, 0.4);
}

/* Entrance animations for doctor cards */
.featured-doctor-card {
    animation: slideInFromLeft 0.8s ease-out;
}

.secondary-doctor-card:first-of-type {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.secondary-doctor-card:last-of-type {
    animation: slideInFromRight 0.8s ease-out 0.4s both;
}

.quick-actions-card {
    animation: slideInFromBottom 0.8s ease-out 0.6s both;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .featured-doctor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
} */

.featured-doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), rgba(26, 59, 65, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.featured-doctor-card:hover .featured-doctor-overlay {
    opacity: 1;
}

.featured-doctor-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.featured-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.featured-doctor-card:hover .featured-doctor-image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.2);
}

.featured-doctor-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-doctor-card:hover .featured-doctor-image::after {
    opacity: 1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(44, 95, 102, 0.8));
}

.featured-doctor-content {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-doctor-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.credentials-badge {
    /* display: inline-block; */
    background: rgba(31, 216, 216, 0.2);
    color: #1fd8d8;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(31, 216, 216, 0.3);
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.specialties-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.specialty-tag {
    background: rgba(31, 216, 216, 0.15);
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
    margin: 0;
}

.specialty-tag:hover {
    background: rgba(31, 216, 216, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 216, 216, 0.3);
}

/* Accessibility improvements for list items */
.specialty-tag:focus {
    outline: 2px solid rgba(31, 216, 216, 0.5);
    outline-offset: 2px;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.primary-btn {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 216, 216, 0.3);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 216, 216, 0.5);
    background: linear-gradient(135deg, #17b5b5, #1fd8d8);
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #1fd8d8;
    color: #1fd8d8;
}

/* Secondary Doctor Card - Enhanced Design */
.secondary-doctor-card {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.08), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(31, 216, 216, 0.2);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(31, 216, 216, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: fit-content;
    align-self: start;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.secondary-doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(31, 216, 216, 0.05) 60%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.secondary-doctor-card:hover::before {
    opacity: 1;
}

.secondary-doctor-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(31, 216, 216, 0.2);
    border-color: rgba(31, 216, 216, 0.4);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.secondary-doctor-card:hover .card-glow {
    opacity: 0.2;
}

.secondary-doctor-image {
    /* height: 200px; */
    overflow: hidden;
    position: relative;
}

.secondary-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.05);
}

.secondary-doctor-card:hover .secondary-doctor-image img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.secondary-doctor-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.secondary-doctor-card:hover .secondary-doctor-image::after {
    opacity: 0.6;
}

.secondary-doctor-content {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
}

.doctor-header {
    margin-bottom: 1rem;
}

.doctor-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.credentials {
    display: inline-block;
    background: rgba(31, 216, 216, 0.15);
    color: #1fd8d8;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(31, 216, 216, 0.2);
}

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

.secondary-stats {
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.stat-icon {
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.stat-text {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.view-profile-btn {
    display: inline-flex;
    align-items: center;
    color: #1fd8d8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.view-profile-btn:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Quick Actions Card - Revolutionary Design */
.quick-actions-card {
    grid-column: 2;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(255, 255, 255, 0.06));
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(31, 216, 216, 0.25);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(31, 216, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: start;
    position: relative;
    overflow: hidden;
}

.quick-actions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(31, 216, 216, 0.08) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.quick-actions-card:hover::before {
    opacity: 1;
}

.quick-actions-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(31, 216, 216, 0.15);
    border-color: rgba(31, 216, 216, 0.35);
}

/* Full Width Quick Actions Section */
.quick-actions-section {
    max-width: 1600px;
    margin: 3rem auto 0;
    padding: 3rem 2rem;
    /* background: linear-gradient(135deg, rgba(31, 216, 216, 0.08), rgba(255, 255, 255, 0.03)); */
    /* border-radius: 30px; */
    /* backdrop-filter: blur(20px); */
    /* border: 1px solid rgba(31, 216, 216, 0.15); */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    position: relative;
    z-index: 2;
}

.quick-actions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(31, 216, 216, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.quick-actions-section:hover::before {
    opacity: 1;
}

.quick-actions-section-content {
    position: relative;
    z-index: 2;
}

.quick-actions-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-actions-section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.quick-actions-section-header p {
    font-size: 1.1rem;
    color: #b8d4d6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.quick-action-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.quick-action-card:hover::before {
    left: 100%;
}

.quick-action-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(31, 216, 216, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.quick-action-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.quick-action-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.quick-action-description {
    font-size: 1rem;
    color: #b8d4d6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.1));
    border-radius: 12px;
    color: #1fd8d8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 216, 216, 0.3);
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.3), rgba(31, 216, 216, 0.2));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(31, 216, 216, 0.3);
}

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

.actions-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.actions-header p {
    font-size: 0.9rem;
    color: #b8d4d6;
    opacity: 0.8;
}

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

.action-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 18px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.action-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    transform: translateX(8px) translateY(-2px);
    border-color: rgba(31, 216, 216, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.action-btn.emergency:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
}

.action-btn.consultation:hover {
    background: rgba(31, 216, 216, 0.2);
    border-color: rgba(31, 216, 216, 0.4);
}

.action-btn.contact:hover {
    background: rgba(124, 179, 66, 0.2);
    border-color: rgba(124, 179, 66, 0.4);
}

.action-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.action-text {
    flex-grow: 1;
}

.action-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.action-text small {
    font-size: 0.8rem;
    color: #b8d4d6;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #1a3b41;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8d4d6;
}

/* Statistics Section - Spectacular Upgrade */
.statistics {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 50%, #0d1f23 100%);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.stats-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 30px 50px, rgba(31, 216, 216, 0.25), transparent),
        radial-gradient(2px 2px at 70px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 50px 90px, rgba(31, 216, 216, 0.2), transparent),
        radial-gradient(1px 1px at 100px 60px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 100px, rgba(31, 216, 216, 0.18), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 30s linear infinite;
}

.stats-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 60px 80px, rgba(31, 216, 216, 0.3), transparent),
        radial-gradient(1px 1px at 120px 120px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 180px 160px, rgba(31, 216, 216, 0.25), transparent);
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: particleFloat 40s linear infinite reverse;
}

.stats-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.stat-wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.stat-wave.wave-1 {
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.1), rgba(44, 95, 102, 0.05));
    clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0% 100%);
    animation: waveAnimation1 4s ease-in-out infinite;
}

.stat-wave.wave-2 {
    background: linear-gradient(45deg, rgba(26, 59, 65, 0.15), rgba(31, 216, 216, 0.05));
    clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0% 100%);
    animation: waveAnimation2 5s ease-in-out infinite reverse;
    margin-top: -30px;
}

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

.stats-header {
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 216, 216, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.stat-card.stat-primary {
    border: 2px solid rgba(31, 216, 216, 0.3);
}

.stat-card.stat-featured {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.05));
    border: 2px solid rgba(31, 216, 216, 0.4);
    transform: scale(1.05);
}

.stat-card.stat-success {
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.stat-card.stat-expertise {
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.stat-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.4);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-container {
    transform: rotateY(360deg);
    box-shadow: 0 20px 50px rgba(31, 216, 216, 0.6);
}

.stat-icon {
    font-size: 2rem;
    color: #2c5f66;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.stat-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 50%;
    opacity: 0;
    animation: statGlow 3s ease-in-out infinite;
    z-index: -1;
}

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

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #1fd8d8;
    text-shadow: 0 4px 20px rgba(31, 216, 216, 0.4);
    letter-spacing: -2px;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: -1rem;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-description {
    font-size: 0.95rem;
    color: #b8d4d6;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stat-progress {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1fd8d8, #17b5b5);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stats-achievements {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.achievement-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.testimonials-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 216, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 216, 216, 0.02) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

.testimonials-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.15), rgba(31, 216, 216, 0.05));
    border: 2px solid rgba(31, 216, 216, 0.3);
    transform: scale(1.05);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stars {
    font-size: 1.2rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.3));
}

.quote-icon {
    font-size: 4rem;
    color: rgba(31, 216, 216, 0.3);
    font-weight: bold;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8d4d6;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.author-detail {
    font-size: 0.9rem;
    color: #1fd8d8;
    opacity: 0.8;
}

.testimonial-badge {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 4rem;
    padding: 0 2rem;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* About Page - Spectacular Design System */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 110vh;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    background-size: 400% 400%;
    animation: heroGradient 20s ease infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 25px 35px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 45px 75px, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 85px 45px, rgba(31, 216, 216, 0.2), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 160px 90px, rgba(31, 216, 216, 0.15), transparent),
        radial-gradient(2px 2px at 200px 120px, rgba(255, 255, 255, 0.08), transparent);
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: particleFloat 30s linear infinite;
}

.about-hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 80px, rgba(31, 216, 216, 0.3), transparent),
        radial-gradient(1px 1px at 100px 150px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 150px 200px, rgba(31, 216, 216, 0.25), transparent),
        radial-gradient(1px 1px at 200px 250px, rgba(255, 255, 255, 0.15), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: particleFloat 40s linear infinite reverse;
}

.about-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.about-wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.about-wave.wave-1 {
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.12), rgba(44, 95, 102, 0.08));
    clip-path: polygon(0 25%, 100% 5%, 100% 100%, 0% 100%);
    animation: waveAnimation1 4s ease-in-out infinite;
}

.about-wave.wave-2 {
    background: linear-gradient(45deg, rgba(26, 59, 65, 0.15), rgba(31, 216, 216, 0.08));
    clip-path: polygon(0 45%, 100% 25%, 100% 100%, 0% 100%);
    animation: waveAnimation2 5s ease-in-out infinite reverse;
    margin-top: -40px;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
    overflow: hidden;
}

.about-hero-content {
    color: #ffffff;
}

.about-hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(31, 216, 216, 0.25);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

.about-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
}

.about-hero-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.achievement-card .achievement-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.achievement-card .achievement-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.achievement-card .achievement-text p {
    font-size: 0.9rem;
    color: #b8d4d6;
    opacity: 0.8;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facility-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
}

.facility-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite;
    min-width: 150px;
    z-index: 5;
}

.facility-card.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.facility-card.card-2 {
    top: 20%;
    right: 0;
    animation-delay: 1.5s;
}

.facility-card.card-3 {
    bottom: 0;
    left: 0%;
    animation-delay: 3s;
}

.facility-card .facility-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.facility-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mission & Vision Section */
.mission-vision {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.mission-vision-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mission-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(31, 216, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(31, 216, 216, 0.03) 0%, transparent 50%);
    animation: patternFloat 18s ease-in-out infinite;
}

.mission-vision-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 216, 216, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: #2c5f66;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #1fd8d8;
    transform: translateX(5px);
}

/* Values Section */
.values-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 50%, #0d1f23 100%);
    overflow: hidden;
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.values-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 30px 40px, rgba(31, 216, 216, 0.15), transparent),
        radial-gradient(1px 1px at 60px 20px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 70px, rgba(31, 216, 216, 0.12), transparent),
        radial-gradient(1px 1px at 120px 50px, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 150px 80px, rgba(31, 216, 216, 0.1), transparent);
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: particleFloat 35s linear infinite;
}

.values-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 40px 60px, rgba(31, 216, 216, 0.2), transparent),
        radial-gradient(1px 1px at 80px 100px, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 120px 140px, rgba(31, 216, 216, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 45s linear infinite reverse;
}

.values-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.value-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.value-card-inner {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.value-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-container {
    transform: rotateY(360deg);
    box-shadow: 0 20px 50px rgba(31, 216, 216, 0.5);
}

.value-icon {
    font-size: 3rem;
    color: #2c5f66;
}

.value-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 50%;
    opacity: 0;
    animation: valueGlow 3s ease-in-out infinite;
    z-index: -1;
}

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

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.value-highlight {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Services Overview Section */
.services-overview {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.services-overview-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-overview-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(31, 216, 216, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(31, 216, 216, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(31, 216, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(31, 216, 216, 0.04) 0%, transparent 50%);
    animation: patternFloat 22s ease-in-out infinite;
    z-index: 1;
    opacity: 1;
}

.services-overview-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
    text-align: center;
}

.service-overview-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card.featured {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(31, 216, 216, 0.05));
    border: 2px solid rgba(31, 216, 216, 0.25);
    transform: scale(1.05);
}

.service-overview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-overview-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* Service Overview Icon Container with Hover Effects */
.service-overview-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #ffffff, #f8f9fa); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
    border: 2px solid #e9ecef;
}

.service-overview-card:hover .service-overview-icon-container {
    transform: rotateY(180deg);
}

.service-overview-icon-container .service-overview-icon {
    font-size: 2.5rem;
    color: #495057;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.service-overview-icon-container .service-overview-icon img {
    filter: none;
    opacity: 0.8;
}

.service-overview-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-overview-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #1fd8d8;
    transform: translateX(5px);
}

/* Services CTA - Additional rules (also removed) */

/* About CTA Section */
.about-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 50%, #0d1f23 100%);
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 30px, rgba(31, 216, 216, 0.2), transparent),
        radial-gradient(2px 2px at 80px 60px, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 60px 90px, rgba(31, 216, 216, 0.15), transparent),
        radial-gradient(1px 1px at 100px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 120px 70px, rgba(31, 216, 216, 0.13), transparent);
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: particleFloat 38s linear infinite;
}

.about-cta-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 60px 80px, rgba(31, 216, 216, 0.25), transparent),
        radial-gradient(1px 1px at 100px 120px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 140px 160px, rgba(31, 216, 216, 0.2), transparent);
    background-repeat: repeat;
    background-size: 220px 220px;
    animation: particleFloat 50s linear infinite reverse;
}

.about-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-cta-content {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-cta-content p {
    font-size: 1.2rem;
    color: #b8d4d6;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #1fd8d8;
    color: #1fd8d8;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-container,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 3.2rem;
    }
    
    .values-grid,
    .services-overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero-container {
        padding: 2rem 1rem;
        min-height: 80vh;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-achievements {
        grid-template-columns: 1fr;
    }
    
    .facility-card {
        position: static;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .mission-card,
    .vision-card,
    .value-card-inner,
    .service-overview-card,
    .about-cta-content {
        padding: 2rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Center card headers and icons on mobile */
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-icon-container {
        margin: 0 auto 1rem auto;
    }
}

/* About Page Reviews Highlight */
.about-reviews-highlight {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.about-reviews-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-reviews-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 35px 25px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 70px 60px, rgba(31, 216, 216, 0.15), transparent),
        radial-gradient(1px 1px at 100px 40px, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(31, 216, 216, 0.12), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 215, 0, 0.1), transparent);
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: particleFloat 32s linear infinite;
}

.about-reviews-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 70px, rgba(255, 215, 0, 0.25), transparent),
        radial-gradient(1px 1px at 90px 100px, rgba(31, 216, 216, 0.2), transparent),
        radial-gradient(1px 1px at 140px 130px, rgba(255, 215, 0, 0.18), transparent);
    background-repeat: repeat;
    background-size: 220px 220px;
    animation: particleFloat 45s linear infinite reverse;
}

.about-reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.google-rating-compact {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.google-logo-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.google-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.google-text-small {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}

.stars-compact {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.4));
}

.rating-number-small {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-right: 0.5rem;
    text-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
}

.rating-text-small {
    font-size: 0.95rem;
    color: #b8d4d6;
    font-weight: 500;
}

.featured-review-compact {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

.review-quote {
    position: relative;
}

.review-text-compact {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b8d4d6;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text-compact::before {
    content: '"';
    font-size: 2.5rem;
    color: rgba(31, 216, 216, 0.3);
    position: absolute;
    top: -8px;
    left: -12px;
    font-family: serif;
}

.review-author-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.review-stars-small {
    font-size: 1rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.3));
}

.about-reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #2c5f66;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.view-reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Responsive Design for About Reviews */
@media (max-width: 768px) {
    .about-reviews-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .google-rating-compact,
    .featured-review-compact {
        padding: 1.5rem;
    }
    
    .google-icon-small {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .google-text-small {
        font-size: 1.2rem;
    }
    
    .rating-number-small {
        font-size: 1.8rem;
    }
}

/* Doctors Page - Spectacular Design System */

/* Doctors Hero Section */
.doctors-hero {
    position: relative;
    min-height: 45vh;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    background-size: 400% 400%;
    animation: heroGradient 18s ease infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.doctors-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.doctors-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 30px 40px, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(2px 2px at 50px 80px, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 80px 50px, rgba(31, 216, 216, 0.15), transparent);
    background-repeat: repeat;
    background-size: 160px 160px;
    animation: particleFloat 22s linear infinite;
}

.doctors-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.doctors-wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.doctors-wave.wave-1 {
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.1), rgba(44, 95, 102, 0.06));
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    animation: waveAnimation1 3.5s ease-in-out infinite;
}

.doctors-wave.wave-2 {
    background: linear-gradient(45deg, rgba(26, 59, 65, 0.12), rgba(31, 216, 216, 0.06));
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0% 100%);
    animation: waveAnimation2 4.5s ease-in-out infinite reverse;
    margin-top: -30px;
}

.doctors-wave.wave-3 {
    background: linear-gradient(45deg, rgba(44, 95, 102, 0.1), rgba(26, 59, 65, 0.1));
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    animation: waveAnimation3 5.5s ease-in-out infinite;
    margin-top: -30px;
}

.doctors-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.doctors-hero-content {
    color: #ffffff;
}

.doctors-hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(31, 216, 216, 0.25);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);

}

.doctors-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.doctors-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
}

.doctors-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 150px;
}

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

.hero-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1fd8d8;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(31, 216, 216, 0.3);
}

.hero-stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.doctors-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
    padding: 2rem 0;
}

.team-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite;
    width: 250px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card.card-1 {
    animation-delay: 0s;
}

.team-card.card-2 {
    animation-delay: 1.5s;
}

.team-card.card-3 {
    animation-delay: 3s;
}

.team-card .team-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Doctors Profiles Section */
.doctors-profiles {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.doctors-profiles-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.profiles-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(31, 216, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(31, 216, 216, 0.03) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

.doctors-profiles-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.doctor-profile-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.doctor-profile-card.featured {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(31, 216, 216, 0.05));
    border: 2px solid rgba(31, 216, 216, 0.25);
    transform: scale(1.02);
}

.doctor-profile-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.doctor-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.1), transparent, rgba(31, 216, 216, 0.1));
    border-radius: 30px;
    opacity: 0;
    animation: cardGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.card-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(31, 216, 216, 0.1), transparent),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 255, 255, 0.05), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particleFloat 30s linear infinite;
}

/* Removed doctor-profile-header - now integrated into doctor-header */

.doctor-badge {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(31, 216, 216, 0.3);
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    font-size: 1.2rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.3));
}

.rating-text {
    font-size: 0.9rem;
    color: #b8d4d6;
    font-weight: 500;
}

.doctor-profile-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    padding: 2rem 2.5rem 2.5rem;
}

/* Responsive Grid System */
@media (max-width: 1024px) {
    .doctor-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .doctor-image-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .doctor-image {
        width: 200px;
        height: 200px;
        flex-shrink: 0;
    }
    
    .doctor-badge {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .doctor-profile-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .doctor-image-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .doctor-image {
        width: 100%;
        max-width: 250px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .doctor-profile-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .doctor-image-section {
        gap: 0.8rem;
    }
    
    .doctor-image {
        max-width: 200px;
        height: 180px;
    }
}

.doctor-image-container {
    position: relative;
}

.doctor-image-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 25px;
    opacity: 0.3;
    animation: imageGlow 3s ease-in-out infinite;
    z-index: -1;
   
}

.doctor-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    border: 3px solid rgba(31, 216, 216, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.doctor-image:hover {
    transform: scale(1.02);
    border-color: rgba(31, 216, 216, 0.6);
}

.doctor-experience-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.9), rgba(17, 181, 181, 0.9));
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(31, 216, 216, 0.4);
}

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

.doctor-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.doctor-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.doctor-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Responsive highlights grid */
@media (max-width: 768px) {
    .doctor-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.highlight-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 1.3rem;
}

.education-summary {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.education-summary .education-item {
    font-size: 0.9rem;
    color: #b8d4d6;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.education-summary .education-item:last-child {
    border-bottom: none;
}

.doctor-name-section {
    margin-bottom: 2rem;
}

.doctor-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.doctor-credentials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.credential-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: #1fd8d8;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(31, 216, 216, 0.3);
    backdrop-filter: blur(10px);
}

.doctor-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

/* Removed doctor-specialties-grid, specialty-category, category-title, category-icon - replaced with doctor-highlights and highlight-section */

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.specialty-tag {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.specialty-tag.featured {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.1));
    color: #1fd8d8;
    border-color: rgba(31, 216, 216, 0.3);
}

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

/* Removed education-items, membership-items, education-item, membership-item, education-degree, education-detail, membership-icon, membership-text - replaced with education-summary */

.doctor-contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), rgba(31, 216, 216, 0.05));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(31, 216, 216, 0.2);
    margin-top: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: #1fd8d8;
}

.doctor-appointment-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.doctor-appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.4);
}

/* Team Excellence Section */
.team-excellence {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 50%, #0d1f23 100%);
    overflow: hidden;
}

.team-excellence-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.excellence-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(31, 216, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(31, 216, 216, 0.03) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

.team-excellence-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-excellence-container.full-width {
    max-width:100%;
}

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

.excellence-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.excellence-card.featured {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(31, 216, 216, 0.05));
    border: 2px solid rgba(31, 216, 216, 0.25);
    transform: scale(1.05);
}

.excellence-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.excellence-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.excellence-card:hover .excellence-icon-container {
    transform: rotateY(360deg);
    box-shadow: 0 20px 50px rgba(31, 216, 216, 0.5);
}

.excellence-icon {
    font-size: 3rem;
    color: #2c5f66;
}

.excellence-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.excellence-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.excellence-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #1fd8d8;
    transform: translateX(5px);
}

/* Schedule Consultation Section - Enhanced */
.schedule-consultation {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1a1f 0%, #1a3b41 25%, #0d1f23 50%, #1a3b41 75%, #0a1a1f 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.consultation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.consultation-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(31, 216, 216, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 40%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 10%;
    left: 60%;
    animation-delay: 12s;
    animation-duration: 32s;
}



.consultation-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.consultation-content {
    text-align: center;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 30px;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.consultation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(31, 216, 216, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.consultation-header {
    margin-bottom: 4rem;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1fd8d8, transparent);
    border-radius: 1px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #1fd8d8;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(31, 216, 216, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.consultation-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #b8d4d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(31, 216, 216, 0.5);
}

.consultation-subtitle {
    font-size: 1.3rem;
    color: #b8d4d6;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(31, 216, 216, 0.06));
    border-radius: 25px;
    border: 1px solid rgba(31, 216, 216, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.18), rgba(31, 216, 216, 0.1));
    border-color: rgba(31, 216, 216, 0.4);
    box-shadow: 
        0 20px 40px rgba(31, 216, 216, 0.2),
        0 0 0 1px rgba(31, 216, 216, 0.1);
}

.benefit-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover .benefit-hover-effect {
    left: 100%;
}

.benefit-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.3);
}

.benefit-icon {
    color: #2c5f66;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(31, 216, 216, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 2s ease-in-out infinite;
}

.benefit-text {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    flex: 1;
}

.consultation-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.consultation-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.consultation-btn.primary {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    box-shadow: 
        0 10px 30px rgba(31, 216, 216, 0.3),
        0 0 0 1px rgba(31, 216, 216, 0.2);
}

.consultation-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(31, 216, 216, 0.4),
        0 0 0 1px rgba(31, 216, 216, 0.3);
}

.consultation-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.consultation-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #1fd8d8;
    color: #1fd8d8;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.2);
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-btn:hover .btn-background {
    opacity: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(31, 216, 216, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-btn:hover .btn-glow {
    opacity: 1;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.consultation-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
    opacity: 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), rgba(31, 216, 216, 0.05));
    border-color: rgba(31, 216, 216, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1fd8d8;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(31, 216, 216, 0.5);
}

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

/* Animations */
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(31, 216, 216, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(31, 216, 216, 0.8);
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive Design for Doctors Page */
@media (max-width: 1024px) {
    .doctors-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .doctors-hero-stats {
        justify-content: center;
    }
    
    .doctor-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .doctor-contact-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .excellence-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .doctors-hero-container {
        padding: 2rem 1rem;
        min-height: 80vh;
    }
    
    .doctors-hero-title {
        font-size: 3rem;
    }
    
    .doctors-hero-stats {
        /* flex-direction: column; */
        align-items: center;
        gap: 1rem;
    }
    
    .team-card {
        position: static;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .doctor-profile-card {
        margin-bottom: 3rem;
    }
    
    .doctor-profile-content {
        padding: 1rem 0rem 0rem;
    }
    
    .doctor-name {
        font-size: 2rem;
    }
    
    .specialty-tags {
        justify-content: center;
    }
    
    .consultation-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Enhanced Consultation Section Mobile Styles */
    .schedule-consultation {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .consultation-container {
        padding: 0 1rem;
    }
    
    .consultation-content {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .consultation-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .consultation-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .benefit-item {
        padding: 1.2rem 1.5rem;
        border-radius: 20px;
    }
    
    .benefit-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .benefit-icon {
        font-size: 1rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
    
    .consultation-actions {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .consultation-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .consultation-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .header-decoration {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .decoration-dot {
        width: 6px;
        height: 6px;
    }
}

/* Tablet Styles for Consultation Section */
@media (min-width: 769px) and (max-width: 1024px) {
    .schedule-consultation {
        padding: 6rem 0;
    }
    
    .consultation-content {
        padding: 4rem 3rem;
    }
    
    .consultation-title {
        font-size: 3rem;
    }
    
    .consultation-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .consultation-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .consultation-actions {
        gap: 1.5rem;
    }
    
    .consultation-btn {
        padding: 1.3rem 2.5rem;
    }
}

/* Google Reviews Section - Spectacular Design */
.google-reviews {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    background-size: 400% 400%;
    animation: heroGradient 25s ease infinite;
    overflow: hidden;
}

.reviews-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.reviews-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 50px, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(2px 2px at 80px 30px, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 60px 90px, rgba(31, 216, 216, 0.12), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: particleFloat 35s linear infinite;
}

.reviews-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(31, 216, 216, 0.04) 0%, transparent 50%);
    animation: patternFloat 30s ease-in-out infinite;
}

.google-reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

.google-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rating-display {
    text-align: center;
}

.stars-large {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
}

.rating-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-right: 0.5rem;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.rating-text {
    font-size: 1.1rem;
    color: #b8d4d6;
    font-weight: 500;
}

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

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.25);
    transform: scale(1.02);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Enhanced hover effect for animated review cards */
.review-card.animate-in:hover {
    margin: -8px;
    transform: translateY(-20px) scale(1.08);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(31, 216, 216, 0.3),
        0 0 60px rgba(31, 216, 216, 0.2);
    border: 2px solid rgba(31, 216, 216, 0.4);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            rgba(255, 255, 255, 0.1) 100%
        );
    backdrop-filter: blur(25px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    animation: reviewCardFloat 2s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.05);
}

.review-card.animate-in:hover::before {
    opacity: 1;
    animation: reviewGlowPulse 1.5s ease-in-out infinite;
    background: linear-gradient(45deg, 
        rgba(31, 216, 216, 0.2), 
        rgba(255, 215, 0, 0.1), 
        rgba(31, 216, 216, 0.2)
    );
    border-radius: 30px;
    transform: scale(1.02);
}

.review-card.animate-in:hover::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(31, 216, 216, 0.15),
        transparent 70%
    );
    border-radius: 32px;
    animation: subtleGlow 2s ease-in-out infinite;
    z-index: -2;
    filter: blur(8px);
}

.review-card.animate-in:hover .reviewer-avatar {
    transform: scale(1.3) translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(31, 216, 216, 0.8),
        0 0 40px rgba(31, 216, 216, 0.6),
        0 0 80px rgba(255, 215, 0, 0.5);
    animation: avatarBounce 1.5s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card.animate-in:hover .review-stars {
    animation: starPulse 1s ease-in-out infinite;
    filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.9));
    transform: scale(1.2);
}

.review-card.animate-in:hover .reviewer-name {
    color: #1fd8d8;
    text-shadow: 
        0 0 20px rgba(31, 216, 216, 1),
        0 0 40px rgba(31, 216, 216, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5);
    animation: textPulse 1.2s ease-in-out infinite;
    transition: all 0.5s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.review-card.animate-in:hover .review-content {
    animation: contentFade 0.8s ease-out;
    transform: translateY(-3px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.review-card.animate-in:hover .review-date {
    color: #1fd8d8;
    animation: dateGlow 1.5s ease-in-out infinite;
}

@keyframes reviewCardFloat {
    0%, 100% { 
        transform: translateY(-20px) scale(1.08);
        filter: brightness(1.1) contrast(1.05);
    }
    25% { 
        transform: translateY(-25px) scale(1.1);
        filter: brightness(1.2) contrast(1.15);
    }
    50% { 
        transform: translateY(-23px) scale(1.09);
        filter: brightness(1.18) contrast(1.12);
    }
    75% { 
        transform: translateY(-28px) scale(1.12);
        filter: brightness(1.25) contrast(1.18);
    }
}

@keyframes reviewGlowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1.02);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.03);
    }
}

@keyframes subtleGlow {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.02);
    }
}

@keyframes avatarBounce {
    0%, 100% { 
        transform: scale(1.3) translateY(-8px);
    }
    50% { 
        transform: scale(1.35) translateY(-12px);
    }
}

@keyframes starPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1.2);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.3);
    }
}

@keyframes textPulse {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(31, 216, 216, 1),
            0 0 40px rgba(31, 216, 216, 0.7),
            0 0 60px rgba(255, 215, 0, 0.5);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(31, 216, 216, 1.2),
            0 0 60px rgba(31, 216, 216, 0.9),
            0 0 90px rgba(255, 215, 0, 0.7);
    }
}

@keyframes contentFade {
    0% { 
        transform: translateY(0);
        opacity: 0.9;
    }
    100% { 
        transform: translateY(-3px);
        opacity: 1;
    }
}

@keyframes dateGlow {
    0%, 100% { 
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(31, 216, 216, 0.5);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 15px rgba(31, 216, 216, 0.8);
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent, rgba(31, 216, 216, 0.1));
    border-radius: 25px;
    opacity: 0;
    animation: reviewGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes reviewGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 216, 216, 0.3);
}

.avatar-initial {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f66;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.review-date {
    font-size: 0.9rem;
    color: #b8d4d6;
    opacity: 0.8;
}

.review-stars {
    font-size: 1.3rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8d4d6;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(31, 216, 216, 0.3);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
}

.google-badge {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.reviews-cta {
    margin-top: 4rem;
    text-align: center;
}

.reviews-cta-content {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reviews-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reviews-cta-content p {
    font-size: 1.1rem;
    color: #b8d4d6;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.reviews-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.google-review-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #2c5f66;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.appointment-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #1fd8d8;
    color: #1fd8d8;
}

/* Responsive Design for Google Reviews */
@media (max-width: 1024px) {
    .google-rating-summary {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .reviews-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 4rem 0;
    }
    
    .google-reviews-container {
        padding: 0 1rem;
    }
    
    .google-rating-summary {
        padding: 1.5rem 2rem;
    }
    
    .google-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .google-text {
        font-size: 1.5rem;
    }
    
    .rating-number {
        font-size: 2.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .reviews-cta-content {
        padding: 2rem;
    }
}

/* Featured Doctor Section */
.featured-doctor {
    padding: 4rem 0;
    background-color: #1a3b41;
}

.featured-doctor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.featured-doctor-image {
    position: relative;
}

.featured-doctor-image img {
    width: 100%;
    border-radius: 15px;
}

.featured-doctor-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.featured-doctor-title {
    font-size: 1rem;
    color: #1fd8d8;
    margin-bottom: 1.5rem;
}

.featured-doctor-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.featured-doctor-buttons {
    display: flex;
    gap: 1rem;
}

.read-more-btn.secondary {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.read-more-btn.secondary:hover {
    background-color: #ffffff;
    color: #2c5f66;
}

/* Footer */
.footer {
    background-color: #1a3b41;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    font-size: 1.5rem;
    color: #1fd8d8;
}

.footer-text {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.footer-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #1fd8d8;
}

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

.footer-bottom p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #1fd8d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2c5f66 0%, #1a3b41 100%);
    padding: 12rem 0 4rem;
    text-align: center;
}

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

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    color: #b8d4d6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background-color: #2c5f66;
}

.about-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1fd8d8;
}

.about-text-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text-section ul {
    list-style: none;
    padding: 0;
}

.about-text-section li {
    padding: 0.5rem 0;
    color: #ffffff;
    border-left: 3px solid #1fd8d8;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

/* Doctors Page Styles */
.doctors-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5f66 0%, #1a3b41 50%, #2c5f66 100%);
    position: relative;
}

.doctors-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(31, 216, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(31, 216, 216, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.doctors-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Ensure proper spacing between doctor profiles */
.doctor-profile:first-child {
    margin-top: 2rem;
}

.doctor-profile:last-child {
    margin-bottom: 2rem;
}

.doctor-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: start;
}

.doctor-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.doctor-profile-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.doctor-profile-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.doctor-profile:hover .doctor-profile-image img {
    transform: scale(1.02);
}

.doctor-profile-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.doctor-credentials {
    font-size: 1.1rem;
    color: #1fd8d8;
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.doctor-profile-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doctor-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8d4d6;
    margin-bottom: 2rem;
    flex-grow: 0;
}

.doctor-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.doctor-info-grid .doctor-specialties {
    margin-bottom: 0;
}

.doctor-specialties {
    margin-bottom: 2rem;
}

.doctor-specialties h3 {
    font-size: 1.3rem;
    color: #1fd8d8;
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-specialties ul {
    list-style: none;
    padding: 0;
    background: rgba(31, 216, 216, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid #1fd8d8;
}

.doctor-specialties li {
    padding: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.doctor-specialties li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #1fd8d8;
    font-weight: bold;
    font-size: 1.2rem;
}

.doctor-contact {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.15), rgba(31, 216, 216, 0.05));
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(31, 216, 216, 0.2);
}

.doctor-contact h3 {
    font-size: 1.3rem;
    color: #1fd8d8;
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-contact p {
    color: #b8d4d6;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.doctor-contact strong {
    color: #ffffff;
    font-weight: 600;
}

/* Contact Page Styles - Spectacular Design System */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    background-size: 400% 400%;
    animation: heroGradient 20s ease infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 25px 35px, rgba(31, 216, 216, 0.15), transparent),
        radial-gradient(2px 2px at 45px 75px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 85px 45px, rgba(31, 216, 216, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 25s linear infinite;
}

.contact-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.contact-wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.contact-wave.wave-1 {
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.15), rgba(44, 95, 102, 0.1));
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    animation: waveAnimation1 3s ease-in-out infinite;
}

.contact-wave.wave-2 {
    background: linear-gradient(45deg, rgba(26, 59, 65, 0.2), rgba(31, 216, 216, 0.1));
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0% 100%);
    animation: waveAnimation2 4s ease-in-out infinite reverse;
    margin-top: -40px;
}

.contact-wave.wave-3 {
    background: linear-gradient(45deg, rgba(44, 95, 102, 0.15), rgba(26, 59, 65, 0.15));
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    animation: waveAnimation3 5s ease-in-out infinite;
    margin-top: -40px;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.contact-hero-content {
    color: #ffffff;
}

.contact-hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(31, 216, 216, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    /* animation: badgeFloat 3s ease-in-out infinite; */
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
}

.contact-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.3s;
}

.contact-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-contact-elements {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 300px;
}

.floating-element {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite;
    width: 160px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.floating-element.element-1 {
    animation-delay: 0s;
}

.floating-element.element-2 {
    animation-delay: 1.5s;
}

.floating-element.element-3 {
    animation-delay: 3s;
}

.element-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.element-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

/* Contact Showcase Section */
.contact-showcase {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.showcase-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(31, 216, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(31, 216, 216, 0.03) 0%, transparent 50%);
    animation: patternFloat 18s ease-in-out infinite;
}

.contact-showcase-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.info-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.card-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.1), transparent, rgba(31, 216, 216, 0.1));
    border-radius: 25px;
    opacity: 0;
    animation: cardGlow 4s ease-in-out infinite;
    z-index: -1;
}

.card-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .card-icon-container {
    transform: rotateY(360deg);
    box-shadow: 0 20px 50px rgba(31, 216, 216, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 50%;
    opacity: 0;
    animation: iconPulse 3s ease-in-out infinite;
    z-index: -1;
}

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

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.phone-number {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1fd8d8 !important;
    text-shadow: 0 2px 10px rgba(31, 216, 216, 0.3) !important;
}

.hours-display {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), rgba(31, 216, 216, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(31, 216, 216, 0.2);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hour-item:hover {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.1));
    transform: translateX(5px);
}

.card-action {
    margin-top: auto;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.1));
    border: 1px solid rgba(31, 216, 216, 0.3);
    border-radius: 25px;
    color: #1fd8d8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-link:hover {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 50%, #0d1f23 100%);
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.form-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 30px 40px, rgba(31, 216, 216, 0.1), transparent),
        radial-gradient(1px 1px at 60px 20px, rgba(255, 255, 255, 0.05), transparent),
        radial-gradient(1px 1px at 90px 70px, rgba(31, 216, 216, 0.08), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: particleFloat 30s linear infinite;
}

.contact-form-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.spectacular-form-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(31, 216, 216, 0.1), transparent, rgba(31, 216, 216, 0.1));
    border-radius: 30px;
    opacity: 0;
    animation: formGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes formGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.spectacular-contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-wrapper label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* Ensure textarea has proper top padding for icon */
.input-wrapper textarea {
    padding-top: 1.5rem;
    min-height: 120px;
    resize: vertical;
}

/* Select dropdown styling */
.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6,9 12,15 18,9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1rem;
    padding-right: 4rem;
}

.input-wrapper select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231fd8d8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6,9 12,15 18,9'></polyline></svg>");
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #1fd8d8;
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), rgba(31, 216, 216, 0.05));
    box-shadow: 0 0 30px rgba(31, 216, 216, 0.3);
    transform: translateY(-2px);
}

.input-wrapper input::placeholder,
.input-wrapper select::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1fd8d8, #17b5b5);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.input-wrapper input:focus + .input-focus-line,
.input-wrapper select:focus + .input-focus-line,
.input-wrapper textarea:focus + .input-focus-line {
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

/* Default positioning for input and select fields */
.form-group:not(.full-width) .input-icon {
    top: calc(50% + 1rem);
    transform: translateY(-50%);
}

/* Special positioning for textarea (full-width form group) */
.form-group.full-width .input-icon {
    top: calc(1.5rem + 0.8rem + 1.5rem);
    transform: translateY(0);
}

.input-wrapper:focus-within .input-icon {
    color: #1fd8d8;
}

/* Focus state for regular inputs */
.form-group:not(.full-width) .input-wrapper:focus-within .input-icon {
    transform: translateY(-50%) scale(1.1);
}

/* Focus state for textarea */
.form-group.full-width .input-wrapper:focus-within .input-icon {
    transform: translateY(0) scale(1.1);
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.spectacular-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(31, 216, 216, 0.3);
    overflow: hidden;
    margin-bottom: 2rem;
}

.spectacular-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(31, 216, 216, 0.4);
}

.btn-shimmer {
    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 ease;
}

.spectacular-submit-btn:hover .btn-shimmer {
    left: 100%;
}

.form-assurance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8d4d6;
    font-size: 0.9rem;
}

.assurance-icon {
    color: #1fd8d8;
    font-size: 1.1rem;
}

/* Map Section */
.spectacular-map-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 50%, #1a3b41 100%);
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.map-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 35px 25px, rgba(31, 216, 216, 0.12), transparent),
        radial-gradient(1px 1px at 70px 60px, rgba(255, 255, 255, 0.08), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: particleFloat 28s linear infinite;
}

.map-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

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

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(31, 216, 216, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.map-frame iframe {
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    display: block;
}

.map-frame:hover iframe {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.clinic-marker {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 216, 216, 0.4);
    animation: markerBounce 2s ease-in-out infinite;
}

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

.marker-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #1fd8d8, transparent, #1fd8d8);
    border-radius: 50%;
    opacity: 0;
    animation: markerPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes markerPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.marker-icon {
    font-size: 2rem;
    color: #2c5f66;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(31, 216, 216, 0.3);
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.detail-content p {
    font-size: 0.95rem;
    color: #b8d4d6;
    line-height: 1.5;
}

/* Emergency Contact Section */
.emergency-contact {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
    background-size: 400% 400%;
    animation: emergencyGradient 8s ease infinite;
    overflow: hidden;
}

@keyframes emergencyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.emergency-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.emergency-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 80px 60px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: emergencyParticles 15s linear infinite;
}

@keyframes emergencyParticles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.emergency-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.emergency-content {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.emergency-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: emergencyPulse 1s ease-in-out infinite;
}

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

.emergency-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.emergency-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.emergency-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.emergency-btn.primary {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    color: #dc2626;
}

.emergency-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.emergency-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.emergency-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .map-container {
        padding: 0 1.5rem;
    }
    
    /* Center card-icon-container on responsive */
    .card-icon-container {
        margin: 0 auto 2rem auto;
    }
}

/* Accessibility and Mobile Usability Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1fd8d8;
    color: #2c5f66;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s;
}

a.skip-link {
    display: none;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced Focus States - Removed for navigation */
/* Focus styles removed as requested */

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {
    .nav-link,
    .appointment-btn,
    .doctor-appointment-btn,
    button {
        /* min-height: 44px;
        min-width: 44px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .specialty-tag {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .doctor-profile-card {
        border: 2px solid #ffffff;
    }
    
    .specialty-tag {
        border: 2px solid #ffffff;
    }
    
    .nav-link {
        border: 1px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-color: #1fd8d8;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .doctor-appointment-btn,
    .appointment-btn {
        display: none !important;
    }
    
    .doctor-profile-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Reset and Base Styles */

@media (max-width: 768px) {
    .contact-hero-container {
        padding: 2rem 1rem;
        /* min-height: 80vh; */
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-hero-visual {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .contact-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-stat {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 80px;
    }
    
    /* Ensure card-icon-container is centered on mobile */
    .card-icon-container {
        margin: 0 auto 2rem auto;
    }
    
    .floating-contact-elements {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        max-width: 100%;
        width: 100%;
        min-height: 250px;
    }
    
    .floating-element {
        position: relative;
        margin-bottom: 0;
        animation: cardFloat 4s ease-in-out infinite;
        width: 200px;
        /* height: 100px; */
        padding: 1rem 1.5rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .element-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .element-text {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .spectacular-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 1.2rem 1rem 1.2rem 1rem;
        font-size: 1rem;
    }
    
    .spectacular-submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .form-assurance {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-frame iframe {
        height: 300px;
    }
    
    .emergency-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .emergency-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .location-details {
        gap: 1rem;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .detail-icon {
        margin: 0 auto;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .contact-hero {
        min-height: 70vh;
    }
    
    .contact-hero-container {
        padding: 5.5rem 1rem;
        gap: 1.5rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-hero-stats {
        gap: 0.5rem;
    }
    
    .hero-stat {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 0.8rem 0.5rem;
    }
    
    .floating-element {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .element-icon {
        font-size: 1.5rem;
    }
    
    .element-text {
        font-size: 0.9rem;
    }
    
    .contact-showcase {
        padding: 3rem 0;
    }
    
    .contact-showcase-container {
        padding: 0 1rem;
    }
    
    .info-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .spectacular-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .input-wrapper label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 1rem 0.8rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .spectacular-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .form-assurance {
        margin-top: 1.5rem;
    }
    
    .assurance-item {
        font-size: 0.85rem;
    }
    
    .spectacular-map-section {
        padding: 3rem 0;
    }
    
    .map-container {
        padding: 0 1rem;
    }
    
    .map-header {
        margin-bottom: 2rem;
    }
    
    .map-frame {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .map-frame iframe {
        border-radius: 15px;
        height: 250px;
    }
    
    .map-content {
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-radius: 15px;
    }
    
    .detail-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .detail-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-content p {
        font-size: 0.85rem;
    }
    
    .emergency-contact {
        padding: 3rem 0;
    }
    
    .emergency-container {
        padding: 0 1rem;
    }
    
    .emergency-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .emergency-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .emergency-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .emergency-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .emergency-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 250px;
        border-radius: 25px;
    }
    
    .emergency-btn .btn-icon {
        font-size: 1.1rem;
    }
}

/* Ultra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .contact-hero-container {
        /* padding: 1rem 0.8rem; */
        gap: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stat {
        flex: 0 0 100%;
        padding: 0.6rem 0.4rem;
    }
    
    .floating-contact-elements {
        gap: 0.8rem;
        max-width: 280px;
        min-height: 180px;
    }
    
    .floating-element {
        width: 130px;
        height: 70px;
        padding: 0.6rem 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .element-icon {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .element-text {
        font-size: 0.85rem;
    }
    
    .contact-showcase-container,
    .contact-form-container,
    .map-container,
    .emergency-container {
        padding: 0 0.8rem;
    }
    
    .info-card {
        padding: 1.2rem 0.8rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .spectacular-form-wrapper {
        padding: 1.2rem 0.8rem;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 0.9rem 0.7rem 0.9rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .spectacular-submit-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .map-frame iframe {
        height: 220px;
    }
    
    .detail-card {
        padding: 1rem 0.8rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .detail-content h4 {
        font-size: 0.95rem;
    }
    
    .detail-content p {
        font-size: 0.8rem;
    }
    
    .emergency-content {
        padding: 1.5rem 1rem;
    }
    
    .emergency-icon {
        font-size: 2.5rem;
    }
    
    .emergency-content h2 {
        font-size: 1.8rem;
    }
    
    .emergency-content p {
        font-size: 0.95rem;
    }
    
    .emergency-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        max-width: 220px;
    }
}

/* Form Styles */
.contact-form,
.appointment-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.appointment-form-section {
    padding: 4rem 0;
    background-color: #2c5f66;
}

/* Calendly Section Styles */
.calendly-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

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

.calendly-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.calendly-header p {
    color: #b8d4d6;
    font-size: 1.1rem;
    opacity: 0.8;
}

.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.appointment-note {
    background: linear-gradient(135deg, rgba(31, 216, 216, 0.1), rgba(31, 216, 216, 0.05));
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(31, 216, 216, 0.2);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.note-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-content li {
    color: #b8d4d6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.note-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1fd8d8;
    font-weight: bold;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.appointment-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.appointment-info > p {
    font-size: 1.1rem;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.2rem;
    color: #1fd8d8;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-icon {
    font-size: 1.2rem;
    color: #1fd8d8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8d4d6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1fd8d8;
    background-color: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background-color: #1fd8d8;
    color: #2c5f66;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #00c4c4;
    transform: translateY(-2px);
}



/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #4CAF50;
}

.notification-error {
    background-color: #f44336;
}

.notification-info {
    background-color: #2196F3;
}

/* Form validation */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
}

.field-error {
    display: block;
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Handle missing images */
img {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .hero-container,
    .services-container,
    .about-container,
    .stats-container,
    .featured-doctor-container,
    .testimonials-container,
    .contact-container,
    .appointment-container,
    .doctors-container,
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image-container {
        width: 450px;
        height: 450px;
    }
    
    .circular-badge {
        width: 140px;
        height: 140px;
    }
    
    .badge-icon-circle {
        font-size: 2.2rem;
    }
    
    .badge-label {
        font-size: 0.85rem;
    }
}

/* Desktop (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image-container {
        width: 380px;
        height: 380px;
    }
    
    .circular-badge {
        width: 110px;
        height: 110px;
    }
    
    .badge-icon-circle {
        font-size: 1.6rem;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Doctors page tablet styles */
    .doctors-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 7rem 2rem 3rem;
    }
    
    .doctors-hero-title {
        font-size: 2.5rem;
    }
    
    .doctors-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
        max-width: 350px;
        padding: 1.5rem 0;
    }
    
    .team-card {
        padding: 1.5rem;
        width: 200px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .team-card .team-icon {
        font-size: 2.2rem;
    }
    
    .team-card h4 {
        font-size: 1rem;
    }
    
    .doctor-profile-card {
        padding: 1.5rem;
    }
    
    .doctor-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }
    
    /* About page tablet styles */
    .about-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .facility-showcase {
        max-width: 350px;
        height: 350px;
    }
    
    .facility-card {
        padding: 1.5rem;
        min-width: 130px;
    }
    
    .facility-card .facility-icon {
        font-size: 2.2rem;
    }
    
    .facility-card h4 {
        font-size: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image-container {
        width: 320px;
        height: 320px;
    }
    
    .circular-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-icon-circle {
        font-size: 1.5rem;
    }
    
    .badge-label {
        font-size: 0.65rem;
    }
    
    
    
    .doctor-profile {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .doctor-profile-image img {
        height: 350px;
        width: 100%;
        object-fit: cover;
    }
    
    .doctor-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .doctor-profile-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .doctor-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 1.5rem 2rem;
    }
    
    /* Responsive Doctors Section */
    .doctors-showcase {
        grid-template-columns: 1.5fr 1fr;
        gap: 1.5rem;
    }
    
    .featured-doctor-content {
        padding: 2rem;
    }
    
    .featured-doctor-content h3 {
        font-size: 1.8rem;
    }
    
    .doctors-hero h2 {
        font-size: 2.5rem;
    }
    
    .specialties-preview {
        gap: 0.6rem;
    }
    
    .specialty-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .featured-actions {
        /* flex-direction: column; */
        gap: 0.8rem;
    }
    
    .primary-btn, .secondary-btn {
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    /* Doctors page mobile styles */
    .doctors-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 1rem 2rem;
    }
    
    .doctors-hero-content {
        order: 1;
        text-align: center;
    }
    
    .doctors-hero-visual {
        order: 0;
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .team-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 0;
    }
    
    .team-card {
        padding: 1.2rem;
        /* width: 160px; height: 100px; */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transform: scale(0.95);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .team-card:hover {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    
    .team-card.card-1 {
        /* No positioning needed with flexbox */
    }
    
    .team-card.card-2 {
        /* No positioning needed with flexbox */
    }
    
    .team-card.card-3 {
        /* No positioning needed with flexbox */
    }
    
    .team-card .team-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .team-card h4 {
        font-size: 0.9rem;
    }
    
    .doctors-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .doctors-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .doctors-hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-stat-item {
        width: 100%;
    
    }
    .nav-toggle {
        display: flex;
    }
    
    /* About page mobile styles */
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 1rem 2rem;
    }
    
    .about-hero-content {
        order: 1;
        text-align: center;
    }
    
    .about-hero-visual {
        order: 0;
        margin-bottom: 1rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-hero-achievements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .achievement-card {
        width: 100%;
    }
    
    .facility-showcase {
        max-width: 300px;
        height: 320px;
        margin: 0 auto;
    }
    
    .facility-card {
        padding: 1.2rem;
        min-width: 120px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(44, 95, 102, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(31, 216, 216, 0.3);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
        font-size: 1.1rem;
        border-radius: 8px;
        margin: 0 1rem;
    }

    .appointment-btn {
        background-color: #1fd8d8;
        color: #2c5f66;
        border-radius: 25px;
        margin: 1rem;
        padding: 1rem 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    /* Hero section mobile adjustments */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        padding: 0.8rem 1.5rem;
        margin: 0 auto 1.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-stat {
        flex: 0 0 calc(50% - 1rem);
        padding: 0.8rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .circular-badge {
        width: 85px;
        height: 85px;
        gap: 0.3rem;
    }
    
    .badge-icon-circle {
        font-size: 1.2rem;
    }
    
    .badge-label {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .badge-1 {
        top: 10%;
        left: 33%;
        transform: translateX(-50%);
    }
    
    .badge-2 {
         top: 34%;
        left: 70%;
        transform: translate(-50%, -50%);
    }
    
    .badge-3 {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .visual-container {
        max-width: 300px;
        margin: 0 auto;
        overflow: visible;
    }
    
    .hero-image-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        padding: 0 1rem;
    }
    
    .map-container h2 {
        font-size: 1.5rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
        width: 100%;
        max-width: 100%;
        display: block;
    }
    
    /* Contact Page Floating Elements Mobile Fix */
    .floating-contact-elements {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
        min-height: 200px;
        overflow: visible;
    }
    
    .floating-element {
        position: relative;
        transform: none !important;
        animation: cardFloat 4s ease-in-out infinite;
        /* max-width: 120px; */
        padding: 0.8rem 1rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .floating-element.element-1 {
        animation-delay: 0s;
    }
    
    .floating-element.element-2 {
        animation-delay: 1.5s;
    }
    
    .floating-element.element-3 {
        animation-delay: 3s;
    }
    
    .element-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .element-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Mobile Doctors Section - Compact */
    .doctors-hero h2 {
        font-size: 2rem;
    }
    
    .doctors-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        padding: 2rem 1rem 3rem;
        max-width: 100%;
        border-radius: 20px;
    }
    
    .featured-doctor-card {
        grid-column: 1;
        grid-row: 1;
        min-height: auto;
        border-radius: 25px;
    }
    
    .featured-doctor-image {
        height: 250px;
    }
    
    .featured-doctor-content {
        padding: 2rem;
    }
    
    .featured-doctor-content h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .specialties-preview {
        gap: 0.8rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .featured-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .secondary-doctor-card {
        grid-column: 1;
        min-height: auto;
        border-radius: 20px;
    }
    
    .quick-actions-section {
        margin-top: 2rem;
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .quick-actions-section-header h3 {
        font-size: 2rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-action-card {
        padding: 2rem;
    }
    
    .secondary-doctor-content {
        padding: 2rem;
    }
    
    .action-buttons {
        gap: 1.2rem;
    }
    
    .action-btn {
        padding: 1.3rem;
        border-radius: 15px;
    }
}

/* Medium screens - 2 column layout */
@media (max-width: 1200px) and (min-width: 769px) {
    .doctors-showcase {
        grid-template-columns: 1.8fr 1fr;
        grid-template-rows: auto;
        max-width: 1100px;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
    
    .featured-doctor-card {
        grid-column: 1;
        grid-row: 1;
        min-height: 650px;
    }
    
    .secondary-doctor-card:first-of-type {
        grid-column: 2;
        grid-row: 1;
    }
    
    .secondary-doctor-card:last-of-type {
        grid-column: 2;
        grid-row: 1;
        margin-top: 2rem;
    }
    
    .quick-actions-section {
        margin-top: 2rem;
        padding: 2.5rem 1.5rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small Laptop styles */
@media (max-width: 1366px) and (min-width: 1201px) {
    .nav-container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero {
        padding: 8rem 0 6rem 0;
    }
    
    .hero-container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .services {
        padding: 5.5rem 0 7.5rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .about-hero {
        padding: 5rem 0 4rem 0;
    }
    
    .about {
        padding: 3.5rem 0;
    }
    
    .doctors {
        padding: 1.8rem 0;
    }
    
    .doctor-profile {
        grid-template-columns: 350px 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
    
    .doctors-showcase {
        grid-template-columns: 1.8fr 1fr;
        gap: 2rem;
    }
}

/* Specific fix for 1104px viewport alignment issues */
@media (max-width: 1120px) and (min-width: 1080px) {
    .nav-container {
        padding: 0 1.8rem;
        max-width: calc(100% - 3.6rem);
    }
    
    .nav-logo {
        max-width: 180px;
    }
    
    .logo-text {
        font-size: 1.05rem;
    }
    
    .nav-menu {
        gap: 1.3rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.92rem;
    }
    
    .container,
    .services-container,
    .about-container,
    .doctors-container,
    .contact-container {
        padding: 0 1.8rem;
        max-width: calc(100% - 3.6rem);
    }
}

/* Large Tablet / Small Laptop styles - CONSOLIDATED */
@media (max-width: 1200px) and (min-width: 1025px) {
    /* Navigation fixes for 1104px viewport */
    .nav-container {
        padding: 0 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-logo {
        flex-shrink: 0;
        max-width: 200px;
    }
    
    .logo-img {
        height: 32px;
        max-width: 100px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .nav-menu {
        gap: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    /* Section padding adjustments */
    .hero {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-container {
        padding: 0 2rem;
        grid-template-columns: 1.2fr 1fr;
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero {
        padding: 6rem 0 4rem 0;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .doctors {
        padding: 4rem 0;
    }
    
    .services {
        padding: 4rem 0;
        margin-top: -2rem;
    }
    
    /* Grid and layout adjustments */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
    
    .doctor-profile {
        grid-template-columns: 320px 1fr;
        gap: 2rem;
        padding: 2.2rem;
    }
    
    .doctor-profile-image img {
        height: 380px;
    }
    
    .doctors-showcase {
        grid-template-columns: 1.6fr 1fr;
        gap: 1.8rem;
    }
    
    .featured-doctor-content {
        padding: 2.2rem;
    }
    
    .about-hero-container,
    .contact-hero-container,
    .doctors-hero-container {
        padding: 0 2rem;
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .mission-vision-grid {
        gap: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .appointment-form {
        max-width: 550px;
        padding: 2.2rem;
    }
    
    .form-group {
        margin-bottom: 1.6rem;
    }
    
    .spectacular-form-wrapper {
        padding: 2.8rem;
        max-width: 650px;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.8rem;
    }
    
    /* Container layout fixes */
    .container,
    .services-container,
    .about-container,
    .doctors-container,
    .contact-container {
        padding: 0 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent any background overflow */
    body {
        overflow-x: hidden;
    }
}

/* Medium Tablet styles */
@media (max-width: 1024px) and (min-width: 993px) {
    .nav-container {
        padding: 0 1.6rem;
    }
    
    .nav-menu {
        gap: 1.6rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.9rem;
        font-size: 0.96rem;
    }
    
    .hero {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 1.6rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services {
        padding: 4.5rem 0 6rem 0;
    }
    
    .about-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .about {
        padding: 2.5rem 0;
    }
    
    .doctors {
        padding: 1.4rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.6rem;
    }
    
    .doctor-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.8rem;
        padding: 2rem;
    }
    
    .doctors-showcase {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    
    .about-hero-container,
    .contact-hero-container,
    .doctors-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding:4rem 1.6rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Medium Tablet Layout Fixes */
    .container,
    .services-container,
    .about-container,
    .doctors-container,
    .contact-container {
        padding: 0 1.6rem;
        overflow-x: hidden;
    }
    
    /* Fix negative margins */
    .services {
        margin-top: -1rem;
    }
}

/* Standard Tablet styles */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 5rem 0 3rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .services {
        padding: 4rem 0 5rem 0;
    }
    
    .about-hero {
        padding: 3.5rem 0 2.5rem 0;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .doctors {
        padding: 1.2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .doctor-profile {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .doctor-profile-image img {
        height: 350px;
    }
    
    .doctor-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .doctors-showcase {
        grid-template-columns: 1.5fr 1fr;
        gap: 1.5rem;
    }
    
    .featured-doctor-content {
        padding: 2rem;
    }
    
    .featured-doctor-content h3 {
        font-size: 1.8rem;
    }
    
    .doctors-hero h2 {
        font-size: 2.5rem;
    }
    
    .specialties-preview {
        gap: 0.6rem;
    }
    
    .specialty-tag {
        font-size: 0.8rem;
    }
    
    .about-hero-container,
    .contact-hero-container,
    .doctors-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 5rem 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .appointment-form {
        max-width: 650px;
        padding: 2.8rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .spectacular-form-wrapper {
        padding: 3.2rem;
        max-width: 750px;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.2rem;
    }
    
    /* Standard Tablet Layout Fixes */
    .container,
    .services-container,
    .about-container,
    .doctors-container,
    .contact-container {
        padding: 0 2rem;
        overflow-x: hidden;
    }
    
    /* Fix negative margins */
    .services {
        margin-top: -1.5rem;
    }
}

/* Small Laptop styles */
@media (max-width: 1366px) and (min-width: 1201px) {
    .appointment-form {
        max-width: 700px;
        padding: 3rem;
    }
    
    .form-group {
        margin-bottom: 2.2rem;
    }
    
    .spectacular-form-wrapper {
        padding: 3.5rem;
        max-width: 800px;
    }
    
    .contact-info-cards {
        /* grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); */
        gap: 2.5rem;
    }
    
    .excellence-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

/* Mobile and Small Tablet Optimization */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services {
        padding: 3rem 0 4rem 0;
    }
    
    .about-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .about {
        padding: 1.5rem 0;
    }
    
    .doctors {
        padding: 1rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .doctor-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .doctor-profile-image img {
        height: 300px;
    }
    
    .doctor-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .doctors-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-doctor-content {
        padding: 1.5rem;
    }
    
    .featured-doctor-content h3 {
        font-size: 1.5rem;
    }
    
    .doctors-hero h2 {
        font-size: 2rem;
    }
    
    .specialties-preview {
        gap: 0.4rem;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* .contact-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    } */
    
    .doctors-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        /* padding: 0 1rem; */
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .appointment-form {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .spectacular-form-wrapper {
        padding: 2rem;
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-actions {
        /* flex-direction: column; */
        gap: 0.8rem;
    }
    
    .primary-btn, .secondary-btn {
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-container {
        /* padding: 0 0.5rem; */
        height: 9vh;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 50px;
        width: auto;
        max-width: 100px;
    }
    
    .nav-menu {
        top: 75px;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    
    .appointment-btn {
        margin: 0.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Hero section mobile fixes */
    .hero {
        min-height: 80vh;
        padding: 2rem 0 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 4rem 1rem 2rem;
        min-height: auto;
        align-items: flex-start;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
        opacity: 1 !important;
        animation: none;
    }
    
    .hero-stat {
        width: 100%;
        padding: 1rem 0.8rem;
    }
    
    .hero-trust {
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .visual-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .circular-badge {
        width: 90px;
        height: 90px;
    }
    
    .badge-icon-circle {
        font-size: 1.4rem;
    }
    
    .badge-label {
        font-size: 0.65rem;
    }
    
    .hero-image-container {
        width: 280px !important;
        height: 280px !important;
    }
    
    /* About page responsive fixes */
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 1rem 2rem;
    }
    
    .about-hero-content {
        order: 1;
        text-align: center;
    }
    
    .about-hero-visual {
        order: 0;
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .facility-showcase {
        position: relative;
        width: 100%;
        max-width: 280px;
        height: 300px;
        margin: 0 auto;
        overflow: visible;
    }
    
    .facility-card {
        position: absolute;
        padding: 1.2rem;
        min-width: 120px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transform: scale(0.95);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .facility-card:hover {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    
    .facility-card.card-1 {
        top: 0;
        left: 5%;
    }
    
    .facility-card.card-2 {
        top: 20%;
        right: -9%;
    }
    
    .facility-card.card-3 {
        left: 5%;
    }
    
    .facility-card .facility-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .facility-card h4 {
        font-size: 0.9rem;
    }
    
    /* Doctors page small mobile styles */
    .doctors-hero-container {
        padding: 5rem 1rem 2rem;
        gap: 1.5rem;
    }
    
    .doctors-hero-visual {
        margin-bottom: 0.5rem;
    }
    
    .team-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.8rem 0;
    }
    
    .team-card {
        position: relative;
        padding: 1rem 0.8rem;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transform: scale(0.95);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation: none;
    }
    
    .team-card:hover {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    
    .team-card.card-1 {
        /* No positioning needed with flexbox */
    }
    
    .team-card.card-2 {
        /* No positioning needed with flexbox */
    }
    
    .team-card.card-3 {
        /* No positioning needed with flexbox */
    }
    
    .team-card .team-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .team-card h4 {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .team-showcase {
        max-width: 280px;
        margin: 0 auto;
        overflow: visible;
    }
    
    .doctors-hero-title {
        font-size: 2rem;
    }
    
    .doctors-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .doctors-hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-stat-item {
        width: 100%;
        
    }
    
    .doctors-profiles-section {
        padding: 3rem 1rem;
    }
    
    .doctor-profile-card {
        border-radius: 20px;
        margin-bottom: 2.5rem;
    }
    
    .doctor-profile-image {
        border-radius: 15px;
        margin: 0 auto;
        max-width: 280px;
        width: 100%;
    }
    
    .doctor-profile-image img {
        height: auto;
        max-height: 300px;
        border-radius: 15px;
        width: 100%;
        object-fit: cover;
    }
    
    .doctor-image-container {
        margin: 0 auto;
        max-width: 280px;
        width: 100%;
    }
    
    .doctor-image {
        height: auto;
        max-height: 300px;
    }
    
    .doctor-experience-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 10px;
    }
    
    .doctor-profile-card {
        padding: 1rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .doctor-profile-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem 1rem;
        align-items: center;
    }
    
    .doctor-name-section {
        text-align: center;
    }
    
    .doctor-name {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .doctor-credentials {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .credential-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .doctor-bio {
        text-align: center;
    }
    
    .doctor-specialties-grid {
        gap: 1.5rem;
    }
    
    .specialty-category {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .category-icon {
        font-size: 1.3rem;
    }
    
    .specialty-tags {
        gap: 0.6rem;
    }
    
    .specialty-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    
    .education-items, .membership-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .education-item, .membership-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.15), rgba(31, 216, 216, 0.05));
        border-radius: 20px;
        border: 2px solid rgba(31, 216, 216, 0.2);
        box-shadow: 0 8px 32px rgba(31, 216, 216, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        align-items: center;
    }
    
    .education-item::before, .membership-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .education-item:hover::before, .membership-item:hover::before {
        left: 100%;
    }
    
    .education-item:hover, .membership-item:hover {
        transform: translateY(-5px) scale(1.02);
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.25), rgba(31, 216, 216, 0.1));
        border-color: rgba(31, 216, 216, 0.4);
        box-shadow: 0 16px 48px rgba(31, 216, 216, 0.2);
    }
    
    .education-degree {
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .education-detail {
        font-size: 0.85rem;
        color: #b8d4d6;
        opacity: 0.9;
        line-height: 1.4;
    }
    
    .doctor-profile-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1rem;
    }
    
    .doctor-profile-header {
        padding: 1rem 0.5rem 0.5rem;
    }
    
    .doctor-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .doctor-rating {
        gap: 0.5rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .doctor-profile-image img {
        border-radius: 10px;
    }
    
    .doctor-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Hero section extra small device adjustments */
    .hero-container {
        padding: 5rem 0.8rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .hero-stat {
        flex: 0 0 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .hero-image-container {
        width: 220px;
        height: 220px;
    }
    
    .circular-badge {
        width: 80px;
        height: 80px;
        gap: 0.3rem;
    }
    
    .badge-icon-circle {
        font-size: 1.1rem;
    }
    
    .badge-label {
        font-size: 0.6rem;
    }
    
    /* Services section adjustments */
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Doctors Section */
    .doctors-hero h2 {
        font-size: 1.8rem;
    }
    
    .doctors-hero p {
        font-size: 1rem;
    }
    
    .doctors-showcase {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1rem 0.8rem 2rem;
    }
    
    .featured-doctor-card {
        order: 1;
    }
    
    .featured-doctor-image {
        height: 180px;
    }
    
    .featured-doctor-content {
        padding: 1.2rem;
    }
    
    .featured-doctor-content h3 {
        font-size: 1.4rem;
    }
    
    .featured-description {
        font-size: 1rem;
    }
    
    .specialties-preview {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .featured-actions {
        /* flex-direction: column; */
        gap: 1rem;
    }
    
    .primary-btn, .secondary-btn {
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .secondary-doctor-card {
        order: 2;
    }
    
    /* .secondary-doctor-image {
        height: 160px;
    } */
    
    .secondary-doctor-content {
        padding: 1.5rem;
    }
    
    .doctor-header h4 {
        font-size: 1.2rem;
    }
    
    .quick-actions-card {
        order: 3;
        padding: 1.5rem;
    }
    
    .actions-header h4 {
        font-size: 1.1rem;
    }
    
    .action-btn {
        padding: 1rem;
    }
    
    .action-icon {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .action-text strong {
        font-size: 0.9rem;
    }
    
    /* Other sections */
    .stats-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
        letter-spacing: 0;
    }
    
    .featured-doctor-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .featured-doctor-buttons {
        justify-content: center;
    }
    
    .contact-container,
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .contact-form,
    .appointment-form {
        padding: 1.5rem;
    }
    
    /* Calendly Mobile Styles */
    .calendly-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .calendly-header h2 {
        font-size: 1.5rem;
    }
    
    .calendly-inline-widget {
        height: 600px !important;
    }
    
    .appointment-note {
        flex-direction: column;
        text-align: center;
    }
    
    .doctor-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .doctor-profile-image img {
        height: 250px;
        width: 250px;
        object-fit: cover;
        margin: 0 auto;
    }
    
    .doctor-profile-info h2 {
        font-size: 1.8rem;
    }
    
    .doctor-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .doctor-specialties ul {
        padding: 0.8rem 1rem;
    }
    
    .doctor-contact {
        margin-top: 2rem;
        padding: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .spectacular-form-wrapper {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* General Mobile Layout Fixes */
    .container,
    .services-container,
    .about-container,
    .doctors-container,
    .contact-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Fix grid layouts on mobile */
    .services-grid,
    .values-grid,
    .mission-vision-grid,
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Ensure proper spacing for all sections */
    section {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Fix negative margins that cause layout issues */
    .services {
        margin-top: 0;
    }
    
    .about {
        margin-top: 0;
    }
    
    /* Footer adjustments */
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-item {
        justify-content: center;
    }
}

/* Section Badge Responsive Centering */

/* Base centering for all screen sizes */
.section-badge {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .section-badge {
        padding: 1rem 2rem;
        gap: 1rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
}

/* Standard Desktop (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .section-badge {
        padding: 0.9rem 1.8rem;
        gap: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.95rem;
    }
    
    .badge-icon {
        font-size: 1.1rem;
    }
}

/* Large Laptop/Small Desktop (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .section-badge {
        padding: 0.8rem 1.6rem;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
}

/* Tablet Portrait (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .section-badge {
        padding: 0.7rem 1.4rem;
        gap: 0.7rem;
        margin-bottom: 1rem;
        border-radius: 40px;
    }
    
    .badge-text {
        font-size: 0.85rem;
        letter-spacing: 0.2px;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
    
    .education-items, .membership-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .education-item, .membership-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(31, 216, 216, 0.04));
        border-radius: 18px;
        border: 2px solid rgba(31, 216, 216, 0.15);
        box-shadow: 0 6px 24px rgba(31, 216, 216, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .education-item::before, .membership-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
        transition: left 0.6s ease;
    }
    
    .education-item:hover::before, .membership-item:hover::before {
        left: 100%;
    }
    
    .education-item:hover, .membership-item:hover {
        transform: translateY(-3px) scale(1.01);
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.08));
        border-color: rgba(31, 216, 216, 0.3);
        box-shadow: 0 12px 36px rgba(31, 216, 216, 0.15);
    }
    
    .education-degree {
        font-size: 0.95rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.4rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .education-detail {
        font-size: 0.8rem;
        color: #b8d4d6;
        opacity: 0.85;
        line-height: 1.3;
    }
}

/* Mobile (320px to 480px) */
@media (max-width: 480px) {
    .section-badge {
        padding: 0.6rem 1.2rem;
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        border-radius: 35px;
        max-width: 90%;
    }
    
    .badge-text {
        font-size: 0.8rem;
        letter-spacing: 0.1px;
    }
    
    .badge-icon {
        font-size: 0.85rem;
    }
    
    .doctor-image-glow {
        height: 400px;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
    .section-badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        border-radius: 30px;
        max-width: 95%;
    }
    
    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 0px;
    }
    
    .badge-icon {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile (max-height: 500px and orientation: landscape) */
@media (max-height: 500px) and (orientation: landscape) {
    .section-badge {
        padding: 0.4rem 1rem;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        border-radius: 25px;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .badge-icon {
        font-size: 0.75rem;
    }
}

/* Touch Device Optimizations for Section Badge */
@media (hover: none) and (pointer: coarse) {
    .section-badge {
        padding: 0.8rem 1.5rem;
        min-height: 44px; /* Minimum touch target size */
    }
}

/* Reduced Motion for Section Badge */
@media (prefers-reduced-motion: reduce) {
    .section-badge {
        animation: none;
    }
}

/* Dark Mode for Section Badge */
@media (prefers-color-scheme: dark) {
    .section-badge {
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.3), rgba(255, 255, 255, 0.05));
        border: 1px solid rgba(31, 216, 216, 0.4);
    }
    
    .badge-text {
        color: #e0e7ff;
    }
}

/* High Contrast for Section Badge */
@media (prefers-contrast: high) {
    .section-badge {
        background: #000000;
        border: 2px solid #ffffff;
        backdrop-filter: none;
    }
    
    .badge-text {
        color: #ffffff;
        font-weight: 700;
    }
    
    .badge-icon {
        filter: brightness(0) invert(1);
    }
}

/* ===== RESPONSIVE CENTERING FOR ABOUT HERO BADGE ===== */

/* Base centering styles for about-hero-badge */
.about-hero-badge {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto !important;
    width: fit-content;
    text-align: center;
    position: static !important;
    left: auto !important;
    transform: none !important;
}

/* Restore proper grid layout for desktop */
.about-hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    justify-items: start;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: none;
    margin: 0;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fix facility card positioning */
.facility-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.facility-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite;
    min-width: 140px;
    max-width: 160px;
    z-index: 5;
    margin: 0.5rem;
}

.facility-card.card-1 {
    align-self: flex-start;
    animation-delay: 0s;
}

.facility-card.card-2 {
    align-self: center;
    animation-delay: 1.5s;
}

.facility-card.card-3 {
    align-self: flex-end;
    animation-delay: 3s;
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .about-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .about-hero-visual {
        display: flex;
    }
    
    .about-hero-badge {
        margin: 0 0 2.5rem 0 !important;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Standard Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .about-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .about-hero-visual {
        display: flex;
    }
    
    .about-hero-badge {
        margin: 0 0 2rem 0 !important;
        padding: 1rem 2rem;
        max-width: 90%;
    }
}

/* Large Laptop/Small Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .about-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .about-hero-visual {
        display: flex;
    }
    
    .about-hero-badge {
        margin: 0 0 1.8rem 0 !important;
        padding: 0.9rem 1.8rem;
        max-width: 85%;
        font-size: 0.95rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
        order: 2;
    }
    
    .about-hero-visual {
        display: flex;
        order: 1;
    }
    
    .about-hero-badge {
        margin: 0 auto 1.5rem auto !important;
        padding: 0.8rem 1.5rem;
        max-width: 80%;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
}

/* iPad Mini (768px - 820px) */
@media (min-width: 768px) and (max-width: 820px) {
    .nav-container {
        padding: 11px 1rem;
    }
    .logo-img {
        height: 60px;
    }
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
        padding: 2rem 1.5rem;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1.5rem;
        order: 2;
        max-width: 90%;
    }
    
    .about-hero-visual {
        display: flex;
        order: 1;
        justify-content: center;
    }
    
    .about-hero-badge {
        margin: 0 auto 1.5rem auto !important;
        padding: 0.9rem 1.8rem;
        max-width: 85%;
        font-size: 0.95rem;
        gap: 0.7rem;
    }
    
    .badge-text {
        font-size: 0.95rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .facility-showcase {
        max-width: 100%;
        height: auto;
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .facility-card {
        padding: 0.8rem;
        min-width: 120px;
        border-radius: 8px;
    }
    
    /* Navigation adjustments for iPad Mini */
    .nav-container {
        height: 7vh;
        padding: 0 1.5rem;
    }
    
    .logo-img {
        height: 55px;
        width: auto;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .appointment-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Hero section for iPad Mini */
    .hero {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    /* Services section for iPad Mini */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    /* Doctors section for iPad Mini */
    .doctors-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .doctors-hero-title {
        font-size: 2.3rem;
    }
    
    .doctors-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .doctor-card {
        max-width: none;
    }
    
    /* Contact section for iPad Mini */
    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .contact-hero-title {
        font-size: 2.3rem;
    }
    
    .contact-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
        order: 2;
    }
    
    .doctor-image-glow {
        height: 400px;
    }
    
    .education-items, .membership-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .education-item, .membership-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.12), rgba(31, 216, 216, 0.04));
        border-radius: 18px;
        border: 2px solid rgba(31, 216, 216, 0.15);
        box-shadow: 0 6px 24px rgba(31, 216, 216, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .education-item::before, .membership-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
        transition: left 0.6s ease;
    }
    
    .education-item:hover::before, .membership-item:hover::before {
        left: 100%;
    }
    
    .education-item:hover, .membership-item:hover {
        transform: translateY(-3px) scale(1.01);
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(31, 216, 216, 0.08));
        border-color: rgba(31, 216, 216, 0.3);
        box-shadow: 0 12px 36px rgba(31, 216, 216, 0.15);
    }
    
    .education-degree {
        font-size: 0.95rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.4rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .education-detail {
        font-size: 0.8rem;
        color: #b8d4d6;
        opacity: 0.85;
        line-height: 1.3;
    }
    
    .about-hero-visual {
        display: flex;
        order: 1;
    }
    
    .facility-showcase {
        max-width: 280px;
        height: 300px;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    
    .facility-card {
        position: static;
        margin: 0;
        min-width: 120px;
        max-width: 140px;
        padding: 1rem;
    }
    
    .about-hero-badge {
        margin: 0 auto 1.2rem auto !important;
        padding: 0.7rem 1.2rem;
        max-width: 75%;
        font-size: 0.85rem;
        gap: 0.5rem;
        border-radius: 40px;
    }
    
    .badge-text {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .badge-icon {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        justify-items: center;
    }
    
    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 0.5rem;
        order: 2;
    }
    
    .about-hero-visual {
        display: flex;
        order: 1;
    }
    
    .facility-showcase {
        max-width: 250px;
        height: 280px;
        flex-direction: column;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .facility-card {
        position: static;
        margin: 0;
        min-width: 100px;
        max-width: 120px;
        padding: 0.8rem;
    }
    
    .facility-card .facility-icon {
        font-size: 1.8rem;
    }
    
    .facility-card h4 {
        font-size: 0.9rem;
    }
    
    .about-hero-badge {
        margin: 0 auto 1rem auto !important;
        padding: 0.6rem 1rem;
        max-width: 90%;
        font-size: 0.8rem;
        gap: 0.4rem;
        border-radius: 35px;
        min-width: 200px;
    }
    
    .badge-text {
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .badge-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }
}

/* Landscape Mobile (max-height: 500px and orientation: landscape) */
@media (max-height: 500px) and (orientation: landscape) {
    .about-hero-badge {
        margin: 0 auto 0.8rem auto !important;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .about-hero-badge {
        padding: 0.8rem 1.5rem;
        min-height: 44px; /* Minimum touch target size */
        touch-action: manipulation;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .about-hero-badge {
        animation: none !important;
        transition: none !important;
    }
}

/* Accessibility: Dark Mode */
@media (prefers-color-scheme: dark) {
    .about-hero-badge {
        background: linear-gradient(135deg, rgba(31, 216, 216, 0.2), rgba(255, 255, 255, 0.1));
        border-color: rgba(31, 216, 216, 0.3);
        color: #ffffff;
    }
    
    .badge-text {
        color: #ffffff;
    }
}

/* Accessibility: High Contrast */
@media (prefers-contrast: high) {
    .about-hero-badge {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    
    .badge-text {
        color: #ffffff;
        font-weight: 700;
    }
    
    .badge-icon {
        filter: brightness(0) invert(1);
    }
}

/* ===== GALLERY STYLES ===== */

/* Gallery Hero Section */
.gallery-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.gallery-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gallery-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.gallery-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.gallery-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 0 0;
    animation: wave 10s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: -2s;
    opacity: 0.2;
    height: 80px;
}

.wave-3 {
    animation-delay: -4s;
    opacity: 0.1;
    height: 60px;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) rotate(180deg);
    }
}

.gallery-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.gallery-hero-content {
    text-align: center;
    color: white;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.gallery-hero-badge .badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    margin-top: -0.5rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.gallery-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.subtitle-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 11rem 0;
    background: var(--background-light);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gallery-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.category-icon {
    font-size: 1.5rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.facility-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-frame {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-frame:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.gallery-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-frame:hover::before {
    opacity: 1;
}

/* Image Placeholder */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

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

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    opacity: 0.8;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gallery-cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-particles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-particles)"/></svg>') repeat;
    animation: float 15s ease-in-out infinite reverse;
}

.gallery-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.gallery-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gallery-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facility-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-cta-content h2 {
        font-size: 2rem;
    }
    
    .gallery-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        min-height: 60vh;
    }
    
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .gallery-frame {
        aspect-ratio: 3/2;
    }
    
    .placeholder-icon {
        font-size: 2rem;
    }
    
    .placeholder-text {
        font-size: 0.875rem;
    }
}

/* ===== ADVANCED ENHANCEMENTS ===== */

/* Advanced 3D Effects and Animations */
@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotateX(5deg) rotateY(5deg); 
    }
    50% { 
        transform: translateY(-5px) rotateX(-3deg) rotateY(-3deg); 
    }
    75% { 
        transform: translateY(-15px) rotateX(3deg) rotateY(-5deg); 
    }
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(31, 216, 216, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(31, 216, 216, 0.6), 0 0 60px rgba(31, 216, 216, 0.3);
    }
}

@keyframes morphingBackground {
    0%, 100% { 
        background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    }
    25% { 
        background: linear-gradient(135deg, #1a3b41 0%, #2c5f66 25%, #0d1f23 50%, #2c5f66 75%, #1a3b41 100%);
    }
    50% { 
        background: linear-gradient(135deg, #2c5f66 0%, #0d1f23 25%, #1a3b41 50%, #0d1f23 75%, #2c5f66 100%);
    }
    75% { 
        background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    }
}

/* Enhanced Hero Section with 3D Effects */
.hero {
    animation: morphingBackground 20s ease infinite;
    perspective: 1000px;
}

.hero-container {
    transform-style: preserve-3d;
}

.hero-content {
    transform: translateZ(50px);
    /* animation: float3D 6s ease-in-out infinite; */
}

/* .hero-visual {
    transform-style: preserve-3d;
    perspective: 1000px;
} */

.visual-container {
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.visual-container:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* Enhanced Service Cards with 3D Hover */
.service-card {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* .service-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.05);
    animation: glowPulse 2s ease-in-out infinite;
} */

.service-icon-container {
    transform: translateZ(30px);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-container {
    transform: translateZ(50px) rotateY(360deg);
}

/* Enhanced Statistics with Floating Animation */
.stat-card {
    animation: float3D 8s ease-in-out infinite;
    animation-delay: calc(var(--animation-order, 0) * 0.5s);
}

.stat-card:nth-child(1) { --animation-order: 1; }
.stat-card:nth-child(2) { --animation-order: 2; }
.stat-card:nth-child(3) { --animation-order: 3; }
.stat-card:nth-child(4) { --animation-order: 4; }

/* Advanced Button Effects */
.hero-btn, .service-btn, .primary-btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

.hero-btn:hover, .service-btn:hover, .primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(31, 216, 216, 0.4);
}

/* Enhanced Navigation with Glassmorphism */
.navbar {
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg, rgba(44, 95, 102, 0.9), rgba(26, 59, 65, 0.8));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1fd8d8, #17b5b5);
    transition: width 0.3s ease;
}

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

/* Enhanced Circular Badges with 3D Rotation */
/* .circular-badge {
    transform-style: preserve-3d;
    animation: float3D 4s ease-in-out infinite;
} */

.circular-badge:hover {
    transform: rotateY(180deg) scale(1.2);
}

/* Advanced Particle System */
.hero-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10px 20px, rgba(31, 216, 216, 0.8), transparent),
        radial-gradient(1px 1px at 30px 60px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 50px 40px, rgba(31, 216, 216, 0.4), transparent),
        radial-gradient(1px 1px at 70px 80px, rgba(255, 255, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particleFloat 15s linear infinite;
}

/* Enhanced Doctor Cards with Parallax */
.featured-doctor-card {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-doctor-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg) scale(1.03);
}

.featured-doctor-image {
    transform: translateZ(20px);
    transition: transform 0.4s ease;
}

.featured-doctor-card:hover .featured-doctor-image {
    transform: translateZ(40px) scale(1.1);
}

/* Advanced Review Cards */
.review-card {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.review-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 30px rgba(31, 216, 216, 0.2);
}

.reviewer-avatar {
    transform: translateZ(30px);
    transition: all 0.4s ease;
}

.review-card:hover .reviewer-avatar {
    transform: translateZ(50px) rotateY(360deg);
}

/* Enhanced Google Rating with Glow */
.google-icon {
    animation: glowPulse 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.google-icon:hover {
    transform: scale(1.2) rotateY(360deg);
    animation: none;
}

/* Advanced Form Styling */
input, textarea, select {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #1fd8d8;
    box-shadow: 0 0 20px rgba(31, 216, 216, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Footer with Gradient */
.footer {
    background: linear-gradient(135deg, #1a3b41 0%, #0d1f23 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(31, 216, 216, 0.05) 50%, transparent 70%);
    animation: backgroundShift 10s ease-in-out infinite;
}

/* Advanced Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Advanced Scroll Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) rotateY(-15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px) rotateX(-15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.slide-in-bottom {
    animation: slideInFromBottom 1s ease-out forwards;
}

/* Enhanced Typography with Text Shadows */


/* Advanced Color Transitions */
.service-card, .stat-card, .review-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(255, 255, 255, 0.08) 100%);
    transition: all 0.4s ease;
}

.service-card:hover, .stat-card:hover, .review-card:hover {
    background: linear-gradient(135deg, 
        rgba(31, 216, 216, 0.15) 0%, 
        rgba(31, 216, 216, 0.05) 50%, 
        rgba(31, 216, 216, 0.15) 100%);
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Advanced Focus States - Removed for navigation */
/* Focus styles removed as requested */

/* Enhanced Print Styles */
@media print {
    .hero, .services, .doctors, .statistics, .testimonials, .google-reviews {
        break-inside: avoid;
    }
    
    .navbar, .footer {
        display: none;
    }
}

/* ===== ADVANCED FEATURES SECTION ===== */

.advanced-features {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1f23 0%, #1a3b41 25%, #2c5f66 50%, #1a3b41 75%, #0d1f23 100%);
    background-size: 400% 400%;
    animation: morphingBackground 25s ease infinite;
    overflow: hidden;
}

.advanced-features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.advanced-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 30px 40px, rgba(31, 216, 216, 0.8), transparent),
        radial-gradient(2px 2px at 70px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 50px 60px, rgba(31, 216, 216, 0.4), transparent),
        radial-gradient(1px 1px at 90px 30px, rgba(255, 255, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: particleFloat 20s linear infinite;
}

.advanced-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(31, 216, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(31, 216, 216, 0.04) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

.advanced-features-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.feature-card.advanced-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.feature-card.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 216, 216, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card.advanced-card:hover::before {
    left: 100%;
}

.feature-card.advanced-card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5), 0 0 30px rgba(31, 216, 216, 0.3);
}

.feature-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(31, 216, 216, 0.4);
    transition: all 0.4s ease;
    transform: translateZ(30px);
}

.feature-card.advanced-card:hover .feature-icon-container {
    transform: translateZ(50px) rotateY(360deg);
    box-shadow: 0 20px 50px rgba(31, 216, 216, 0.6);
}

.feature-icon {
    font-size: 3rem;
    color: #2c5f66;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.feature-card.advanced-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card.advanced-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8d4d6;
    margin-bottom: 2rem;
}

.feature-highlight {
    background: linear-gradient(135deg, #1fd8d8, #17b5b5);
    color: #2c5f66;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(31, 216, 216, 0.3);
    transition: all 0.3s ease;
}

.feature-card.advanced-card:hover .feature-highlight {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(31, 216, 216, 0.4);
}

/* Responsive Design for Advanced Features */
@media (max-width: 1024px) {
    .advanced-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .advanced-features {
        padding: 4rem 0;
    }
    
    .advanced-features-container {
        padding: 0 1rem;
    }
    
    .feature-card.advanced-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card.advanced-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

/* WhatsApp Booking Section */
.whatsapp-booking {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    overflow: hidden;
}

.whatsapp-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.whatsapp-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particleFloat 20s linear infinite;
}

.whatsapp-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.whatsapp-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.whatsapp-wave.wave-1 {
    animation: waveMove 8s ease-in-out infinite;
    opacity: 0.3;
}

.whatsapp-wave.wave-2 {
    animation: waveMove 12s ease-in-out infinite reverse;
    opacity: 0.2;
}

.whatsapp-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.whatsapp-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

.whatsapp-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.whatsapp-action {
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #25D366;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #128C7E;
}

.whatsapp-btn .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn-glow {
    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.5s ease;
}

.whatsapp-btn:hover .btn-glow {
    left: 100%;
}

.whatsapp-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

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

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(360deg);
    }
}

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

/* Responsive WhatsApp Section */
@media (max-width: 768px) {
    .whatsapp-booking {
        padding: 3rem 0;
    }
    
    .whatsapp-container {
        padding: 0 1rem;
    }
    
    .whatsapp-content {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-content h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-content p {
        font-size: 1rem;
    }
    
    .whatsapp-icon-large {
        font-size: 3rem;
    }
}

/* Emergency Contact Section */
.emergency-contact {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    overflow: hidden;
}

.emergency-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.emergency-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    animation: particleFloat 15s linear infinite;
}

.emergency-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.emergency-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

.emergency-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.emergency-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.emergency-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.emergency-btn.primary {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    color: #dc2626;
}

.emergency-btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.emergency-btn.primary:hover {
    color: #b91c1c;
}

.emergency-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
}

.emergency-btn .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.emergency-btn:hover .btn-icon {
    transform: scale(1.2);
}

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

/* Particles Background Styles */
.excellence-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 40px 60px, rgba(31, 216, 216, 0.08), transparent),
        radial-gradient(1px 1px at 90px 50px, rgba(255, 215, 0, 0.06), transparent),
        radial-gradient(1px 1px at 130px 100px, rgba(31, 216, 216, 0.05), transparent),
        radial-gradient(1px 1px at 160px 40px, rgba(255, 215, 0, 0.04), transparent);
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: particleFloat 35s linear infinite;
}

.services-overview-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 30px 40px, rgba(31, 216, 216, 0.06), transparent),
        radial-gradient(1px 1px at 70px 80px, rgba(255, 215, 0, 0.05), transparent),
        radial-gradient(1px 1px at 110px 120px, rgba(31, 216, 216, 0.04), transparent),
        radial-gradient(1px 1px at 150px 160px, rgba(255, 215, 0, 0.03), transparent);
    background-repeat: repeat;
    background-size: 160px 160px;
    animation: particleFloat 40s linear infinite;
}

.showcase-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 70px, rgba(31, 216, 216, 0.07), transparent),
        radial-gradient(1px 1px at 100px 90px, rgba(255, 215, 0, 0.05), transparent),
        radial-gradient(1px 1px at 140px 110px, rgba(31, 216, 216, 0.04), transparent);
    background-repeat: repeat;
    background-size: 170px 170px;
    animation: particleFloat 30s linear infinite;
}

/* Responsive Emergency Section */
@media (max-width: 768px) {
    .emergency-contact {
        padding: 3rem 0;
    }
    
    .emergency-container {
        padding: 0 1rem;
    }
    
    .emergency-content {
        padding: 2rem 1.5rem;
    }
    
    .emergency-content h2 {
        font-size: 1.8rem;
    }
    
    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Center service features on mobile */
    .service-features {
        align-items: center;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
    
    /* Consistent card-content typography on mobile */
    .card-content h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
    }
    
    .card-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .emergency-content h2 {
        font-size: 1.6rem;
    }
    
    .emergency-content p {
        font-size: 1rem;
    }
    
    .emergency-icon {
        font-size: 2.5rem;
    }
}