/* ==========================================================================
   TMC Diagnostic Centre - CSS
   ========================================================================== */

:root {
    /* TMC Brand Colors based on the logo */
    --tmc-red: #D81B21;
    --tmc-red-hover: #b5151b;
    --tmc-blue: #112E83;
    --tmc-blue-hover: #0d2363;
    --tmc-navy: #0B1B42;
    --tmc-purple: #5E2775;
    
    /* Neutrals */
    --white: #ffffff;
    --light-bg: #F4F7F9;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(11, 27, 66, 0.05);
    --shadow-hover: 0 20px 40px rgba(11, 27, 66, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--tmc-navy);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; }

.section-subtitle {
    color: var(--tmc-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.section-title span {
    color: var(--tmc-blue);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--tmc-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(216, 27, 33, 0.3);
}

.btn-primary:hover {
    background-color: var(--tmc-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 27, 33, 0.4);
    color: var(--white);
}

.btn-outline {
    border-color: var(--tmc-blue);
    color: var(--tmc-blue);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--tmc-blue);
    color: var(--white);
}

.btn-outline.light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline.light:hover {
    background-color: var(--white);
    color: var(--tmc-navy);
}

.btn-block {
    width: 100%;
}

/* 1. Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 30px rgba(11, 27, 66, 0.03);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--tmc-navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tmc-red), var(--tmc-blue));
    transition: var(--transition);
}

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



.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--tmc-navy);
    cursor: pointer;
}

/* 2. Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1530497610245-94d3c16cda28?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 24px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,27,66,0.95) 0%, rgba(11,27,66,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.trust-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.trust-badge i { color: var(--tmc-red); margin-right: 6px; }

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(90deg, #FF6B6B, #4D96FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--tmc-navy);
}

/* Hero Animations */
.scan-line-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(22, 50, 138, 0.1), transparent);
    z-index: 1;
    animation: scan 8s linear infinite;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    right: 10%;
    top: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 39, 117, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite alternate;
}

/* 3. Trust Bar */
.trust-bar {
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.trust-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.trust-icon {
    background: var(--light-bg);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tmc-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.trust-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* 4. About Section */
.about {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--tmc-navy);
}

.experience-badge i {
    color: var(--tmc-red);
    font-size: 1.5rem;
}

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

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-list i {
    color: var(--tmc-blue);
    background: rgba(17, 46, 131, 0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.75rem;
}

/* 5. Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--tmc-red), var(--tmc-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--tmc-blue);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--tmc-red);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.service-link {
    color: var(--tmc-navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--tmc-blue);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 6. Advanced Imaging Section */
.advanced-imaging {
    padding: 100px 0;
    background: var(--tmc-navy);
    color: var(--white);
    overflow: hidden;
}

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

.advanced-imaging .section-title {
    color: var(--white);
}

.advanced-imaging .section-title span {
    color: #8ECAE6;
}

.advanced-imaging p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.imaging-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.imaging-tags span {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.imaging-tags i { color: #8ECAE6; }

.scanner-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.scanner-container img {
    width: 100%;
    display: block;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, transparent, rgba(77, 150, 255, 0.8), transparent);
    box-shadow: 0 0 15px rgba(77, 150, 255, 0.5);
    animation: scanVertical 4s ease-in-out infinite alternate;
}

/* 7. Why Choose Us */
.why-us {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-card.offset {
    transform: translateY(30px);
}

.why-card:hover {
    box-shadow: var(--shadow-hover);
}

.why-card i {
    font-size: 2rem;
    color: var(--tmc-red);
    margin-bottom: 20px;
    background: rgba(216, 27, 33, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.why-card h4 {
    margin-bottom: 12px;
}

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

/* 8. Our Mission */
.mission {
    padding: 120px 0;
    position: relative;
    background: var(--tmc-navy);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.mission-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1551076805-e18690c5e537?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.mission-circle {
    position: absolute;
    left: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 40px solid rgba(216, 27, 33, 0.05);
    animation: rotateSlow 20s linear infinite;
}

.mission-circle-2 {
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 60px solid rgba(17, 46, 131, 0.05);
    animation: rotateSlow 25s linear infinite reverse;
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.mission h2 {
    color: var(--white);
    font-weight: 400;
    line-height: 1.4;
    margin: 20px 0 30px;
    font-style: italic;
}

.mission p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* 9. Patient Journey */
.journey {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 22%;
    background: var(--white);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--tmc-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px rgba(17, 46, 131, 0.1);
    transition: var(--transition);
}

.timeline-item:hover .timeline-number {
    background: var(--tmc-red);
    box-shadow: 0 0 0 8px rgba(216, 27, 33, 0.1);
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* 10. Gallery */
.gallery {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    grid-auto-flow: dense; /* Fills empty grid spaces automatically */
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery-item.wide {
        grid-column: span 2;
    }
    .gallery-item.tall {
        grid-row: span 2;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 27, 66, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--tmc-red);
}

/* 11 & 12. Location & Contact */
.location-contact {
    padding: 100px 0;
    background: var(--white);
}

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

.location-box, .form-box {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 20px;
}

.contact-info {
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item i {
    font-size: 1.25rem;
    color: var(--tmc-red);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--tmc-navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--tmc-blue);
    box-shadow: 0 0 0 3px rgba(17, 46, 131, 0.1);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    display: none;
}
.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}

.branch-section {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}
.branch-section h3 {
    font-size: 1.15rem;
    color: var(--tmc-blue);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 8px;
}
.general-contact-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed var(--border-color);
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tmc-navy), var(--tmc-blue));
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* 14. Footer */
.footer {
    background: #061129;
    color: #94A3B8;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--tmc-red);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--tmc-blue);
}

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

/* Animations Keyframes */
@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes scanVertical {
    0% { top: 0; }
    100% { top: calc(100% - 15px); }
}

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

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries (Responsive) */
@media (max-width: 1024px) {
    .trust-container { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card.offset { transform: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .about-grid, .imaging-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }
    .timeline::before {
        top: 0;
        left: 30px;
        width: 2px;
        height: 100%;
    }
    .timeline-item {
        width: 100%;
        display: flex;
        text-align: left;
        margin-bottom: 30px;
        background: transparent;
    }
    .timeline-number {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        clip-path: circle(0 at 90% -10%);
        transition: all 0.5s ease-out;
    }
    
    .nav-links.active {
        clip-path: circle(150% at 90% -10%);
    }

    .nav-links a {
        color: var(--tmc-navy);
        padding: 10px 0;
    }
    
    .hamburger { display: block; }
    .hamburger { color: var(--tmc-navy); }
    
    .trust-container, .services-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
    
    .location-box, .form-box { padding: 30px 20px; }

    /* Mobile Spacing & Typography Tweaks */
    .hero { padding: 100px 20px 40px; min-height: 85vh; }
    .about, .services, .advanced-imaging, .why-us, .mission, .journey, .gallery, .location-contact, .final-cta {
        padding: 60px 0;
    }
    .about-grid, .imaging-grid, .contact-grid { gap: 40px; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .hero-buttons { display: flex; flex-direction: column; width: 100%; gap: 12px; }
    .hero-buttons .btn { width: 100%; }
    .mission-circle, .mission-circle-2 { display: none; /* Remove background clutter on small screens */ }
    .branch-section { padding: 16px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}