/* Base Styles & CSS Variables */
:root {
    /* Brand Colors (Derived from Logo) */
    --primary-color: #002D62; /* Deep Royal Navy from logo bird */
    --primary-light: #004A99; /* Vibrant blue from logo highlights */
    --accent-color: #E6B325; /* Premium Gold matching logo wing tip */
    --accent-hover: #C5961B;
    --accent-glow: rgba(230, 179, 37, 0.4);
    
    /* Text & Backgrounds */
    --text-dark: #0f172a;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-light: #f1f5f9; /* Modern light contrast */
    --bg-dark: #051125;
    --bg-white: #ffffff;
    
    /* UI Elements */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 45, 98, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 45, 98, 0.15);
    --border-radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lenis Smooth Scroll Fix */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

html { /* For native fallback */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent { color: var(--accent-color); }
.bg-light { background-color: var(--bg-light); }
.section-padding { padding: 120px 0; }
.pb-0 { padding-bottom: 0 !important; }
.relative { position: relative; }

/* Section Titles */
.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}

.section-title, .about-text, .spec-content {
    margin-bottom: 50px;
}

h2 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 span { color: var(--accent-color); }

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent-color);
    margin-bottom: 30px;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.section-title:hover .divider { width: 100px; }

.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.divider.align-left { margin-left: 0; }

@media (max-width: 768px) {
    .section-title { margin-bottom: 40px; }
    .about-text, .spec-content { margin-bottom: 30px; }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--primary-color);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.loader {
    width: 50px; height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.loader-text {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}
.loader-text span { color: var(--accent-color); }

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

/* Background Shapes */
.floating-shapes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-main) 0%, #edf2f7 100%);
}

.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.05) 0%, rgba(230, 179, 37, 0) 70%);
    border-radius: 50%;
    animation: floatShape 25s infinite linear alternate;
}

.shape:nth-child(1) { width: 600px; height: 600px; top: -10%; left: -20%; animation-duration: 30s; }
.shape:nth-child(2) { width: 800px; height: 800px; bottom: -20%; right: -15%; animation-duration: 40s; animation-direction: reverse; }
.shape:nth-child(3) { width: 400px; height: 400px; top: 40%; left: 50%; animation-duration: 25s; transform: translateX(-50%); }

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -50px) scale(1.1); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button Ripple & Gradient Slide */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #fceabb, var(--accent-color));
    background-size: 200% auto;
    color: var(--bg-dark); /* Dark text on gold for premium readability */
    border-color: transparent;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn.ripple-btn .ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: animateRipple 0.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes animateRipple {
    0% { width: 0; height: 0; opacity: 0.6; }
    100% { width: 500px; height: 500px; opacity: 0; }
}

/* Navbar */
.header {
    background-color: var(--bg-dark); /* Pitch dark navy for logo to pop */
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background-color: rgba(5, 17, 37, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 130px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 0 12px rgba(230, 179, 37, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 15px; }

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0%; height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-parallax-container {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%; height: 100%;
    background-image: linear-gradient(rgba(5, 17, 37, 0.85), rgba(5, 17, 37, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    filter: blur(2px) grayscale(30%);
    animation: cinematicZoom 30s infinite alternate ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(5, 17, 37, 0.7) 0%, rgba(5, 17, 37, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 45px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Stats / Trust Badges */
.stats {
    background-color: transparent;
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-bottom: 4px solid var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px; height: 80px;
    background-color: #f1f5f9;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .card-icon {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 21px; margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}
.feature-card p {
    color: var(--text-muted); font-size: 15px;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
}

.img-parallax-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    height: 500px;
}
.parallax-img {
    width: 100%; height: 120%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -40px; right: -40px;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image:hover .experience-badge { transform: scale(1.1); }

.experience-badge span { font-size: 45px; font-weight: 700; line-height: 1; display: block; margin-bottom: 5px; }
.experience-badge p { font-size: 15px; font-weight: 500; margin: 0; }

.about-text p { font-size: 17px; color: var(--text-muted); margin-bottom: 35px; }

.vision-mission-cards { display: flex; flex-direction: column; gap: 20px; }

.vm-card {
    display: flex; align-items: flex-start; gap: 20px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-hover);
    border-left: 5px solid var(--accent-color);
}

.icon-bounce { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.vm-card:hover .icon-bounce, .info-card:hover .icon-bounce { transform: translateY(-8px) scale(1.1); }

.vm-card i { font-size: 32px; margin-top: 5px; }
.vm-card h4 { font-size: 19px; color: var(--primary-color); margin-bottom: 8px; }
.vm-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; }

/* Services Section */
.service-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px;
    position: relative; z-index: 10;
}

.service-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    display: flex; flex-direction: column;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img .bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-img::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, var(--bg-dark) 100%);
    opacity: 0.8; transition: var(--transition);
}

.service-item:hover .service-img .bg { transform: scale(1.15); }
.service-item:hover .service-img::after { opacity: 0.95; }

.service-content {
    padding: 40px 30px 35px;
    position: relative;
    background: var(--bg-white);
    z-index: 2; flex-grow: 1;
}

.service-icon {
    width: 70px; height: 70px;
    background: var(--accent-color); color: var(--text-light);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 28px;
    position: absolute; top: -35px; right: 30px;
    border: 5px solid var(--bg-white);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-item:hover .service-icon {
    transform: scale(1.15) rotate(15deg);
    background: var(--primary-color);
}

.service-item h3 { font-size: 22px; color: var(--primary-color); margin-bottom: 15px; font-weight: 600; }
.service-item p { color: var(--text-muted); font-size: 15px; }

/* Specialization */
.spec-wrapper { display: flex; align-items: center; }
.specialization {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 70% 30%, rgba(230, 179, 37, 0.05) 0%, transparent 70%);
}

.specialization h2, .specialization .section-subtitle { color: var(--text-light); }
.specialization h2 span { color: var(--accent-color); }
.specialization p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 35px; }

.spec-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.spec-list li { font-size: 16px; display: flex; align-items: center; color: var(--text-light); font-weight: 500; }
.spec-list i { 
    color: var(--accent-color); 
    margin-right: 15px; 
    font-size: 20px; 
    width: 40px; height: 40px;
    background: rgba(230, 179, 37, 0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
}

.spec-image-box { width: 100%; padding-left: 60px; }

.hospital-img-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hospital-img-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hospital-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.hospital-img-container:hover img {
    transform: scale(1.05);
}

/* Contact Specific: Floating Form Labels */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.info-card {
    display: flex; align-items: flex-start; margin-bottom: 30px;
    background: var(--bg-white); padding: 30px; border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft); transition: var(--transition);
}
.info-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-hover); }
.info-card i {
    font-size: 26px; color: var(--accent-color); margin-right: 25px;
    background: rgba(230, 179, 37, 0.1); width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    border: 1px solid rgba(230, 179, 37, 0.2);
}
.info-card h4 { font-size: 19px; color: var(--primary-color); margin-bottom: 5px; }
.info-card p { color: var(--text-muted); font-size: 15px; }

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.map-embed { border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-soft); }

.contact-form {
    background: var(--bg-white); padding: 45px; border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.floating-group { position: relative; margin-bottom: 30px; }
.floating-input {
    width: 100%; padding: 22px 20px 10px;
    border: 1.5px solid #dee2e6; border-radius: 12px;
    font-family: inherit; font-size: 16px; color: var(--text-dark);
    background-color: #fff; transition: var(--transition);
}
.floating-input:focus {
    border-color: var(--accent-color); outline: none; background-color: var(--bg-white);
    box-shadow: 0 0 15px var(--accent-glow);
}
.floating-label {
    position: absolute; top: 16px; left: 20px;
    color: var(--text-muted); transition: var(--transition);
    pointer-events: none; font-size: 16px;
    background-color: transparent;
}
.floating-input:focus ~ .floating-label, .floating-input:not(:placeholder-shown) ~ .floating-label {
    top: 6px; font-size: 12px; color: var(--accent-color); font-weight: 500;
}
textarea.floating-input { height: 150px; resize: none; padding-top: 25px; }
.select-group { position: relative; }
.select-arrow {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); pointer-events: none; transition: var(--transition);
}
.floating-input:focus ~ .select-arrow { color: var(--accent-color); transform: translateY(-50%) rotate(180deg); }
select.floating-input { appearance: none; -webkit-appearance: none; cursor: pointer; }
.select-label { top: 16px; }
.floating-input:focus ~ .select-label, .floating-input:valid ~ .select-label { top: 6px; font-size: 12px; color: var(--accent-color); font-weight: 500;}

/* Footer Section */
.footer { 
    background-color: var(--bg-dark); 
    color: rgba(255,255,255,0.8); 
    padding: 100px 0 30px; 
    position: relative; 
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-col h4 { color: var(--text-light); font-size: 20px; margin-bottom: 30px; font-weight: 700; position: relative; }
.footer-col h4::after {
    content: ''; position: absolute; bottom: -10px; left: 0; width: 30px; height: 3px; background: var(--accent-color); border-radius: 2px;
}
.footer-col.brand p { margin: 30px 0; line-height: 1.8; font-size: 16px; }
.social-links { display: flex; gap: 20px; }
.social-links a {
    width: 45px; height: 45px; background: rgba(255,255,255,0.05);
    color: var(--text-light); display: flex; align-items: center; justify-content: center;
    border-radius: 50%; text-decoration: none; transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
    background: var(--accent-color); color: var(--bg-dark); transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--accent-glow);
    border-color: var(--accent-color);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 18px; }
.footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); position:relative; font-size: 15px;}
.footer-col ul a:hover { color: var(--accent-color); padding-left: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; font-size: 14px; color: rgba(255,255,255,0.5); }

/* Animations: Blur-to-Clear Fade-up Staggered */
.reveal.blur-reveal {
    opacity: 0; filter: blur(15px); transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.blur-reveal.active {
    opacity: 1; filter: blur(0); transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .feature-grid, .about-wrapper, .spec-wrapper, .contact-wrapper { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 80px; }
    .experience-badge { right: 20px; bottom: -30px; padding: 30px; }
    .experience-badge span { font-size: 36px; }
    .spec-image-box { padding-left: 0; margin-top: 50px; }
    .hospital-img-container { height: 400px; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero h1 { font-size: 56px; }
    .section-padding { padding: 90px 0; }
    .img-parallax-wrapper { height: 450px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
        background-color: rgba(10,31,68,0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        transition: var(--transition); z-index: -1;
    }
    .nav-links.active { left: 0; box-shadow: 5px 0 20px rgba(0,0,0,0.5);}
    .nav-links li { margin: 25px 0; }
    .nav-links a { font-size: 20px; }
    
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 18px; margin-bottom: 35px; }
    .hero-buttons { flex-direction: column; gap: 15px; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { width: 100%; padding: 14px 25px; }
    
    .section-padding { padding: 70px 0; }
    h2 { font-size: 32px; }
    
    .stats { margin-top: -50px; }
    .feature-grid { gap: 20px; }
    .feature-card { padding: 40px 25px; }
    
    .spec-list { grid-template-columns: 1fr; }
    .spec-content { text-align: center; }
    .divider.align-left { margin-left: auto; margin-right: auto; }
    
    .contact-form { padding: 30px 20px; }
    .contact-wrapper { gap: 40px; }
    
    .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero h1 { font-size: 34px; line-height: 1.2; }
    .hero p { font-size: 16px; margin-bottom: 30px; }
    .btn { padding: 12px 20px; font-size: 15px; }
    h2 { font-size: 28px; }
    .experience-badge { padding: 20px; bottom: -15px; right: 5px; }
    .experience-badge span { font-size: 28px; }
    .hospital-img-container { height: 280px; }
    .service-img { height: 200px; }
    .section-subtitle { font-size: 11px; letter-spacing: 1.5px; }
    .footer { padding: 50px 0 20px; }
    .footer-grid { gap: 35px; }
    .logo img { width: 90px; }
    .nav-links a { font-size: 18px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 26px; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--accent-color), #fceabb);
    color: var(--bg-dark);
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px var(--accent-glow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: bounceIn 1s cubic-bezier(0.25, 1, 0.5, 1);
    border: 2px solid var(--bg-white);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--bg-dark);
    color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
