/* UK Ambulance Website - Main Stylesheet */
/* NHS Blue: #005EB8 | NHS Dark Blue: #003087 | NHS Light Blue: #41B6E6 */

:root {
    --nhs-blue: #005EB8;
    --nhs-dark: #003087;
    --nhs-light: #41B6E6;
    --nhs-green: #009639;
    --nhs-red: #DA291C;
    --nhs-warm-yellow: #FFB81C;
    --text-dark: #212B32;
    --text-mid: #4C6272;
    --text-light: #768692;
    --bg-light: #F0F4F5;
    --bg-white: #FFFFFF;
    --border: #D8DDE0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Emergency Banner */
.emergency-banner {
    background: var(--nhs-red);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.emergency-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    font-size: 1.1rem;
}
.emergency-banner i {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 42px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--nhs-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
.logo-text h1 {
    font-size: 1.35rem;
    color: var(--nhs-blue);
    line-height: 1.2;
}
.logo-text span {
    font-size: 0.75rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.95rem;
}
nav a:hover, nav a.active {
    background: var(--bg-light);
    color: var(--nhs-blue);
}
nav .btn-nav {
    background: var(--nhs-blue);
    color: white !important;
    margin-left: 8px;
}
nav .btn-nav:hover {
    background: var(--nhs-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--nhs-dark) 0%, var(--nhs-blue) 100%);
    color: white;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}
.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-white {
    background: white;
    color: var(--nhs-blue);
    box-shadow: var(--shadow);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}
.btn-primary {
    background: var(--nhs-blue);
    color: white;
}
.btn-primary:hover {
    background: var(--nhs-dark);
    transform: translateY(-2px);
}
.btn-green {
    background: var(--nhs-green);
    color: white;
}
.btn-green:hover {
    background: #007a2e;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}
.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.stat-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 28px 24px;
    border-bottom: 1px solid var(--border);
}
.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-mid);
    font-size: 0.9rem;
}
.trust-item i {
    color: var(--nhs-green);
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 24px;
}
.section-container {
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-block;
    background: rgba(0,94,184,0.1);
    color: var(--nhs-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.section-header p {
    color: var(--text-mid);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--nhs-blue);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,94,184,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nhs-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.service-link {
    color: var(--nhs-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}
.service-link:hover {
    gap: 10px;
}

/* Why Choose Us */
.why-section {
    background: var(--bg-light);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-image {
    background: linear-gradient(135deg, var(--nhs-blue), var(--nhs-light));
    border-radius: var(--radius-lg);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}
.why-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.why-features {
    display: grid;
    gap: 24px;
}
.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-feature-icon {
    min-width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nhs-blue);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.why-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.why-feature p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.fleet-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.fleet-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.fleet-img {
    height: 220px;
    background: linear-gradient(135deg, var(--bg-light), var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}
.fleet-info {
    padding: 28px;
}
.fleet-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.fleet-info p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.fleet-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fleet-tag {
    background: var(--bg-light);
    color: var(--text-mid);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Coverage Section */
.coverage-section {
    background: linear-gradient(135deg, var(--nhs-dark), var(--nhs-blue));
    color: white;
    position: relative;
    overflow: hidden;
}
.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}
.coverage-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.coverage-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.coverage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.coverage-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4rem;
    color: var(--nhs-blue);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars {
    color: var(--nhs-warm-yellow);
    margin-bottom: 16px;
    font-size: 1rem;
}
.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--nhs-blue), var(--nhs-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.testimonial-author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    text-align: center;
}
.cta-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.cta-box p {
    color: var(--text-mid);
    margin-bottom: 32px;
    font-size: 1.05rem;
}
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--nhs-blue);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 16px;
    transition: var(--transition);
}
.cta-phone:hover {
    background: var(--nhs-dark);
    transform: scale(1.02);
}
.cta-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 24px 24px;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--nhs-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.footer-logo-text h3 {
    font-size: 1.2rem;
    color: white;
}
.footer-logo-text span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-col a:hover {
    color: white;
    padding-left: 4px;
}
.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact i {
    color: var(--nhs-blue);
    width: 20px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--nhs-blue);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--nhs-dark), var(--nhs-blue));
    color: white;
    padding: 80px 24px 60px;
    text-align: center;
}
.page-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}
.breadcrumbs a {
    color: white;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Content Pages */
.content-section {
    padding: 60px 24px;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.content-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.content-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.7;
}
.content-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 4rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.team-img {
    height: 280px;
    background: linear-gradient(135deg, var(--bg-light), var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}
.team-info {
    padding: 24px;
}
.team-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.team-info p {
    color: var(--nhs-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.team-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}
.contact-info-box {
    display: grid;
    gap: 24px;
}
.contact-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}
.contact-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--nhs-blue);
}
.contact-item-icon {
    min-width: 48px;
    height: 48px;
    background: rgba(0,94,184,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nhs-blue);
    font-size: 1.2rem;
}
.contact-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.contact-item p, .contact-item a {
    color: var(--text-mid);
    font-size: 0.95rem;
    text-decoration: none;
}
.contact-item a:hover {
    color: var(--nhs-blue);
}
.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--nhs-blue);
    box-shadow: 0 0 0 3px rgba(0,94,184,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}
.faq-question:hover {
    background: var(--bg-light);
}
.faq-question i {
    color: var(--nhs-blue);
    transition: var(--transition);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-mid);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 300px;
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.award-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.award-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.award-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--nhs-warm-yellow), #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}
.award-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.award-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
}
.award-year {
    display: inline-block;
    background: var(--nhs-blue);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 12px;
}

/* Accreditations */
.accreditations {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.accreditation {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    min-width: 160px;
    transition: var(--transition);
}
.accreditation:hover {
    border-color: var(--nhs-blue);
    box-shadow: var(--shadow);
}
.accreditation i {
    font-size: 2rem;
    color: var(--nhs-blue);
    margin-bottom: 8px;
}
.accreditation h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.accreditation p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .hero-stats { max-width: 500px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { height: 320px; order: -1; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-container { height: 70px; }
    .mobile-menu-btn { display: block; }
    nav { 
        position: absolute; 
        top: 70px; 
        left: 0; 
        width: 100%; 
        background: white; 
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    nav.open { max-height: 500px; }
    nav ul { flex-direction: column; padding: 16px; gap: 4px; }
    nav .btn-nav { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }
    .hero { padding: 60px 20px; }
    .hero h2 { font-size: 2.2rem; }
    .hero-stats { grid-template-columns: 1fr; }
    section { padding: 60px 20px; }
    .section-header h2 { font-size: 1.8rem; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .trust-container { gap: 20px; }
    .page-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero h2 { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .stat-card h3 { font-size: 2rem; }
    .cta-box { padding: 40px 24px; }
    .cta-phone { font-size: 1.1rem; padding: 14px 24px; }
}
