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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fefefe;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2d3748;
}

h1 { font-size: 4rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(237, 137, 54, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ed8936;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: #ed8936;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ed8936;
    transition: width 0.3s ease;
}

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

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(237, 137, 54, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(254, 254, 254, 0.98);
}

.nav-dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(237, 137, 54, 0.05);
}

.nav-dropdown-link:last-child {
    border-bottom: none;
}

.nav-dropdown-link:hover {
    color: #ed8936;
    background-color: rgba(237, 137, 54, 0.05);
    padding-left: 2rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ed8936;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, #fefefe 0%, #faf5f0 50%, #f7f3ee 100%);
    color: #2d3748;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 0;
    margin-left: 0;
    padding-top: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #4a5568;
    font-weight: 400;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-image {
    float: none;
    margin: 0 auto 2rem auto;
    shape-outside: none;
    z-index: 1;
    position: relative;
}

.hero-photo {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.hero-photo:hover {
    transform: translateY(-10px);
}

.peter-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1;
}

.btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-primary {
    background-color: white;
    color: #ed8936;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #ed8936;
    border: 2px solid #ed8936;
}

.btn-secondary:hover {
    background-color: #ed8936;
    color: white;
}

.btn-therapies {
    background-color: rgba(237, 137, 54, 0.1);
    color: #ed8936;
    border: 2px solid rgba(237, 137, 54, 0.3);
    margin-left: 1rem;
}

.btn-therapies:hover {
    background-color: rgba(237, 137, 54, 0.2);
    border-color: rgba(237, 137, 54, 0.5);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - now part of hero */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    position: relative;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.accreditations h3 {
    margin: 2rem 0 1rem;
    color: #2d3748;
    font-size: 1.5rem;
    position: relative;
}

.accreditations h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ed8936;
    border-radius: 1px;
}

.accreditation-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.accreditation-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.accreditation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accreditation-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ed8936;
    margin-bottom: 0.5rem;
}

.accreditation-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

.accreditation-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ed8936, transparent);
    margin: 2rem 0;
    opacity: 0.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ed8936;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Therapies Section */
.therapies {
    padding: 80px 0;
    background-color: white;
}

.therapies-content {
    max-width: 900px;
    margin: 0 auto;
}

.therapies-intro {
    margin-bottom: 4rem;
}

.therapies-intro p {
    margin-bottom: 2rem;
    color: #4a5568;
}

.therapy-challenges {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.therapy-challenges li {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #ed8936;
    font-weight: 500;
    color: #2d3748;
}

.therapy-challenges li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



.therapy-methods h3 {
    margin: 3rem 0 2rem;
    color: #2d3748;
    font-size: 1.75rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.method-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.method-card h4 {
    color: #ed8936;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.method-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Kilkenny Location Section */
.kilkenny-location-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(237, 137, 54, 0.1);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-text h3 {
    color: #ed8936;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.location-text h4 {
    color: #2d3748;
    margin: 2rem 0 1rem 0;
    font-size: 1.25rem;
}

.location-benefits {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.location-benefits li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.location-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ed8936;
    font-weight: bold;
    font-size: 1.2rem;
}

.location-cta {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    border-left: 4px solid #ed8936;
}

.location-cta p {
    margin-bottom: 0;
    color: #2d3748;
}

.location-cta a {
    color: #ed8936;
    text-decoration: none;
    font-weight: 500;
}

.location-cta a:hover {
    text-decoration: underline;
}

/* Service and Benefits Lists */
.service-list, .benefits-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-list li, .benefits-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-list li::before, .benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ed8936;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Professional Accreditations Section */
.accreditations-section {
    padding: 80px 0;
    background-color: white;
}

.accreditation-main-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.accreditation-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.psi-logo {
    max-width: 180px;
}

.bps-logo {
    max-width: 220px;
}

.accreditations-section .accreditation-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background-color: #ed8936;
    color: white;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #2d3748;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.location-icon {
    margin-bottom: 1.5rem;
    color: #ed8936;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.location-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.location-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.location-details p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-items: center;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-height: 56px;
}

.btn-outline {
    background-color: transparent;
    color: #ed8936;
    border: 2px solid #ed8936;
}

.btn-outline:hover {
    background-color: #ed8936;
    color: white;
}

.location-map {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #ed8936;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details p {
    color: #4a5568;
    margin-bottom: 0;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: nowrap;
    padding-right: 0.5rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ed8936;
}

/* Footer */
.footer {
    background-color: #ed8936;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-accreditations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-accreditation {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.footer-accreditation:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Links */
.contact-details p a {
    color: #ed8936;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: clamp(0.85rem, 2.1vw, 1.05rem);
}

@media (max-width: 380px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 1rem 1.25rem;
    }

    .contact-details p {
        padding-right: 0.25rem;
    }
}

.contact-details p a:hover {
    color: #dd6b20;
}

/* Contact Images */
.contact-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-image {
    flex: 0 0 auto;
    max-width: 200px;
}

.contact-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

/* Specific styling for ps1.png to remove black bar */
.contact-img[src*="ps1.png"] {
    object-fit: cover;
    object-position: center;
    max-height: 150px;
}

.contact-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Align logo cards within contact grid */
.logo-card {
    justify-content: center;
    align-items: center;
    height: 180px;
    overflow: hidden;
}

.logo-card .contact-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: rgba(254, 254, 254, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        padding-top: max(2rem, env(safe-area-inset-top));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        height: calc(100vh - 100%);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    /* Mobile dropdown styles */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-dropdown-link {
        padding: 0.5rem 0;
        border-bottom: none;
        font-size: 0.9rem;
        margin-left: 1.5rem;
        display: block;
    }

    .nav-dropdown-link:hover {
        padding-left: 0;
        background-color: transparent;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        text-align: left;
    }
    
    .hero-image {
        float: none;
        margin: 0 auto 2rem auto;
        shape-outside: none;
        z-index: 1;
    }
    
    .hero-content {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-photo {
        width: 250px;
        height: 350px;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        position: relative;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .accreditation-logos {
        grid-template-columns: 1fr;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        width: 100%;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-accreditations {
        justify-content: center;
    }

    .therapy-challenges {
        grid-template-columns: 1fr;
    }

    .therapy-challenges li {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-photo {
        width: 200px;
        height: 280px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .accreditation-main-logos {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .accreditation-logo {
        max-width: 150px;
    }

    .psi-logo {
        max-width: 140px;
    }

    .bps-logo {
        max-width: 160px;
    }

    .accreditation-logos {
        grid-template-columns: 1fr;
    }

    .location-details {
        padding: 1rem;
    }

    .footer-accreditations {
        flex-direction: column;
        align-items: center;
    }

    .therapy-challenges {
        grid-template-columns: 1fr;
    }

    .therapy-challenges li {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .therapy-challenges li::before {
        top: 0.75rem;
    }

    .contact-images {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-image {
        max-width: 150px;
    }

    .contact-img {
        max-width: 150px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #ed8936;
    outline-offset: 2px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #ed8936;
    }

    .btn-secondary {
        border: 2px solid white;
    }
}

/* iPhone X and devices with notch support */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    @media (max-width: 768px) {
        .nav-menu {
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
            width: 100vw;
            left: calc(-100vw - env(safe-area-inset-left));
        }
        
        .nav-menu.active {
            left: 0;
        }
    }
} 