/* -------------------------------------------------------------
   G3 MEDICARE HOSPITAL & MATERNITY - STYLE GUIDE & CSS
   Color System: Crimson (#C82333), Navy (#002147), Sky Accents
------------------------------------------------------------- */

/* Variables */
:root {
    --color-primary: #C82333;       /* Crimson Red */
    --color-primary-dark: #A71D2A;  /* Darker Crimson */
    --color-secondary: #002147;     /* Navy Blue */
    --color-secondary-light: #0B335E;
    --color-accent: #00B8D4;        /* Sky Blue Accent */
    --color-accent-bg: #E0F7FA;     /* Soft Cyan */
    --color-text: #2C3E50;          /* Dark Charcoal Text */
    --color-text-muted: #7F8C8D;    /* Muted Gray Text */
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F8F9FA;      /* Subtle Background gray */
    --color-border: #E2E8F0;        /* Light slate border */
    --color-success: #2ECC71;       /* Validation Success */
    --color-error: #E74C3C;         /* Validation Error */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 30px rgba(0,0,0,0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Utility Badges & Buttons */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-accent-bg);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.badge-accent {
    background-color: #FFF3CD;
    color: #856404;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-emergency {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    animation: pulse-red 2s infinite;
}

.btn-emergency-text {
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
}

.btn-emergency-text:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-block {
    display: width;
    width: 100%;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 35, 51, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(200, 35, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 35, 51, 0);
    }
}

/* Sticky Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.site-header.scrolled .header-container {
    height: 65px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--color-primary);
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions-mobile {
    display: none;
}

/* Hamburger button */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: 4px;
    transition: var(--transition);
}

/* Main Content Padding for Sticky Header */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-bg-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

.hero-section:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.9) 0%, rgba(0, 33, 71, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* Quick Info / Emergency Banner */
.emergency-banner {
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 4;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 30px 24px;
}

.banner-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.banner-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.banner-emoji {
    font-size: 1.5rem;
}

.banner-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.banner-text p a {
    color: var(--color-primary);
    font-weight: 600;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visuals {
    position: relative;
}

.maternity-banner-img {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.stats-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

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

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin-top: 8px;
}

.text-center .section-title::after {
    margin: 8px auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.mission-card {
    background-color: var(--color-bg-light);
    border-left: 5px solid var(--color-primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 30px;
}

.mission-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.core-values h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 12px;
}

.value-bullet {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 35, 51, 0.2);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--color-accent-bg);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.service-svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Maternity Spotlight Section */
.maternity-spotlight {
    padding: 100px 0;
}

.maternity-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.maternity-list {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maternity-list li {
    display: flex;
    gap: 16px;
}

.list-bullet {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.maternity-list h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.maternity-list p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.maternity-showcase-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}

/* Why Choose Us Section */
.features-section {
    padding: 100px 0;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
}

.features-section .section-title, .features-section h3 {
    color: var(--color-bg-white);
}

.features-section .section-subtitle {
    color: var(--color-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Appointment Form Section */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #002147 0%, #001228 100%);
    position: relative;
}

.appointment-container {
    max-width: 800px;
}

.appointment-card {
    background-color: var(--color-bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.appointment-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.appointment-header p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: var(--color-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    outline: none;
    transition: var(--transition);
    background-color: var(--color-bg-light);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(200, 35, 51, 0.1);
}

.form-group input.invalid, 
.form-group select.invalid {
    border-color: var(--color-error);
    background-color: rgba(231, 76, 60, 0.05);
}

.error-msg {
    font-size: 0.75rem;
    color: var(--color-error);
    margin-top: 4px;
    display: none;
}

.form-group input.invalid ~ .error-msg, 
.form-group select.invalid ~ .error-msg {
    display: block;
}

/* Contact Info & Map Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.8rem;
    background-color: var(--color-accent-bg);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-text h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.detail-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.detail-text a {
    color: var(--color-primary);
    font-weight: 600;
}

.map-visual {
    width: 100%;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

/* Success Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 33, 71, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-status-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.modal-body {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Footer Section */
.site-footer {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    color: var(--color-bg-white);
    width: 32px;
    height: 32px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-nav h3, .footer-hours h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-nav h3::after, .footer-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--color-bg-white);
    padding-left: 4px;
}

.footer-hours p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-hours p strong {
    color: var(--color-bg-white);
}

.footer-bottom {
    padding: 30px 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Breakpoints */

/* Laptops & Small Desktops */
@media (max-width: 1024px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Responsive Header & Navigation */
    .hamburger-toggle {
        display: flex;
    }
    
    /* Hamburger Menu Transform to X when menu open */
    .hamburger-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1) inset;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        width: 80%;
        gap: 16px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--color-border);
    }

    .header-actions {
        display: none;
    }

    /* Hero Responsive */
    .hero-section {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .hero-content p {
        font-size: 1.05rem;
    }

    /* Grids to Single Column */
    .about-grid, .maternity-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visuals {
        order: 2;
    }
    .stats-badge {
        right: 0;
        bottom: -15px;
    }
    .maternity-visuals {
        order: 2;
    }

    .appointment-card {
        padding: 40px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .banner-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-content h1 {
        font-size: 1.85rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
