/* Font Loading - Let Cloudflare handle optimization */

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

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-display: swap;
    font-size: 16px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c5aa0;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #66c7f0;
    outline-offset: 2px;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: 171px;
    aspect-ratio: 2.86/1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 3px;
    color: #2c5aa0;
}

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

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

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

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

/* Hero Section */
.hero {
    background-image: url('images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    background: rgba(44, 90, 160, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 650px;
    padding: 0 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-family: 'Montserrat', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    min-height: 72px;
}

.hero-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.cta-button:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.cta-button:focus {
    outline: 3px solid #66c7f0;
    outline-offset: 3px;
    background: #1e3f73;
}

/* Special styling for hero button */
.hero .cta-button {
    background: #F9C011;
    color: black;
    border: 2px solid #F9C011;
    box-shadow: 0 4px 15px rgba(249, 192, 17, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.hero .cta-button:hover {
    background: #E6AD0F;
    border-color: #E6AD0F;
    color: black;
    box-shadow: 0 6px 20px rgba(230, 173, 15, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:focus {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    background: #E6AD0F;
    color: black;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.placeholder-image {
    width: 400px;
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
    min-height: 600px;
}

.doctor-photo {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.2);
    transition: transform 0.3s ease;
    aspect-ratio: 4/5;
}

.doctor-photo:hover {
    transform: scale(1.05);
}

.about h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    min-height: 48px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 400px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    width: 100%;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #fff;
}


.services h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    min-height: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-family: 'Montserrat', Georgia, serif;
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    min-height: 32px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 3/2;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    min-height: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5aa0;
    text-align: right;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: white !important;
    margin-bottom: 3rem;
    opacity: 1 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact .info-item h3 {
    color: white;
}

.contact .info-item p {
    color: rgba(255, 255, 255, 0.9);
}

.contact .info-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.contact .info-item a:hover {
    color: #e3f2fd;
}

.contact h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    min-height: 48px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item p {
    color: #555;
    line-height: 1.6;
}

.info-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #1e3f73;
}


/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.footer-info a {
    color: #4db6e6;
    text-decoration: none;
    font-weight: 500;
}

.footer-info a:hover {
    color: #66c7f0;
    text-decoration: underline;
}

.footer-info a:focus {
    outline: 2px solid #4db6e6;
    outline-offset: 2px;
}

.footer-links h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links ul li a:focus {
    outline: 2px solid #4db6e6;
    outline-offset: 2px;
}

.footer-social h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-link:focus {
    outline: 2px solid #4db6e6;
    outline-offset: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #e0e0e0;
}

/* Reputation Section */
.reputation {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reputation h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    min-height: 48px;
}

.reputation-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.reputation-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.office-showcase {
    margin-bottom: 4rem;
}

.office-photo {
    width: 100%;
    max-width: 600px;
    height: 450px;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    margin: 0 auto;
    display: block;
}

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

.credential-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.15);
}

.credential-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.credential-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.credential-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.cred-logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
    aspect-ratio: 1/1;
}


/* Google Reviews */
.google-reviews {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid #e9ecef;
}

.star-rating {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reviews-header h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.reviews-header p {
    color: #666;
    margin-bottom: 1.5rem;
}

.google-link {
    display: inline-block;
    background: #1a73e8;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1a73e8;
}

.google-link:hover {
    background: #1557b0;
    border-color: #1557b0;
    transform: translateY(-2px);
}

.google-link:focus {
    outline: 3px solid #4285f4;
    outline-offset: 2px;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(44, 90, 160, 0.9)), url('images/office-plant.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.mission h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    min-height: 48px;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    padding: 2rem;
    border-left: 4px solid white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}


/* Conditions Section */
.conditions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.conditions h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    min-height: 48px;
}

.conditions-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.conditions-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.conditions-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conditions-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.15);
}

.category-header {
    margin-bottom: 2rem;
    text-align: center;
}


.category-header h3 {
    font-family: 'Montserrat', Georgia, serif;
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 0;
    min-height: 38px;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.condition-item {
    padding: 0.8rem 1.2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
    border-left: 3px solid #2c5aa0;
}

.condition-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.conditions-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
}

.conditions-cta h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.conditions-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-family: 'Montserrat', Georgia, serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    min-height: 48px;
}

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

.usp-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}


.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.usp-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.usp-card p {
    color: #666;
    line-height: 1.6;
}

.usp-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Section CTA Buttons */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Style specific CTA buttons to match hero button */
.section-cta .cta-button {
    background: #F9C011;
    color: black;
    border: 2px solid #F9C011;
    box-shadow: 0 4px 15px rgba(249, 192, 17, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-cta .cta-button:hover {
    background: #E6AD0F;
    border-color: #E6AD0F;
    color: black;
    box-shadow: 0 6px 20px rgba(230, 173, 15, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-cta .cta-button:focus {
    outline: 3px solid #2c5aa0;
    outline-offset: 3px;
    background: #E6AD0F;
    color: black;
}

.cta-button.light {
    background: rgba(255, 255, 255, 0.9);
    color: #2c5aa0;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.cta-button.light:hover {
    background: white;
    color: #1e3f73;
    border-color: white;
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    min-width: 250px;
}

.cta-button.secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.cta-button.secondary:hover {
    background: #2c5aa0;
    color: white;
}

/* Booking Section */
.booking-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.booking-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.booking-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.careCredit-note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero {
        min-height: 450px;
        margin-top: 80px;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .logo-img {
        height: 50px;
        width: 143px;
        aspect-ratio: 2.86/1;
    }

    .hero {
        min-height: 400px;
        margin-top: 75px;
    }

    .hero-content {
        padding: 80px 20px 20px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }


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

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

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .conditions-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    

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

    .booking-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .services h2,
    .testimonials h2,
    .about h2,
    .reputation h2,
    .contact h2,
    .conditions h2,
    .why-choose-us h2,
    .mission h2 {
        font-size: 2rem;
    }

    .mission blockquote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 350px;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

}