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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Header - Exact Pulse Light Style */
.header {
    background: #2c3e50;
    color: white;
    position: relative;
}

.top-nav {
    background: #2c3e50;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.language-selector {
    display: flex;
    gap: 1rem;
}

.language-selector span {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.language-selector span:hover {
    opacity: 1;
}

.top-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.top-nav-links a:hover {
    opacity: 1;
}

.book-consultation-btn {
    background: #d4af37;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.book-consultation-btn:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

/* Main Navigation */
.main-nav {
    background: #2c3e50;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #2c3e50;
    min-width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 1rem 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.7rem;
}

.mobile-dropdown-content {
    display: none;
    background: rgba(255,255,255,0.1);
    margin-top: 0.5rem;
    border-radius: 5px;
}

.mobile-dropdown-content a {
    padding-left: 2rem;
    font-size: 0.85rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

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

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2c3e50;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Main Content Section */
.main-content {
    padding: 0;
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.content-text-section {
    padding: 3rem 2rem;
}

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

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Treatment Grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.treatment-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-card-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
    position: relative;
}

.treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(44, 62, 80, 0.9);
}

.treatment-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

.treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.content-section a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Blog Section */
.blog-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.blog-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: left;
}

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

.blog-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.blog-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4a5568;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    line-height: 1.2;
    font-size: 0.8rem;
    text-align: center;
}

.blog-category-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.blog-content {
    padding: 2rem;
    text-align: center;
}

.blog-date {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.blog-post-title {
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 4rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonials-rating {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.star-rating {
    color: #ffd700;
    margin-right: 0.5rem;
}

.rating-text {
    color: #666;
    font-size: 1.1rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

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

.testimonial-date {
    color: #999;
    font-size: 0.9rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

.contact-cta-section h2 {
    color: white;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.contact-description {
    color: #b8c5d1;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    margin: 2.5rem 0;
}

.contact-details h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #b8c5d1;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details .phone {
    color: #5dade2;
}

.contact-details .email {
    color: #b8c5d1;
}

.opening-hours {
    margin: 2rem 0;
}

.opening-hours h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.opening-hours p {
    color: #b8c5d1;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.cta-buttons-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0 2.5rem 0;
}

.cta-btn-large {
    background: #e74c3c;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
}

.cta-btn-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.serving-areas {
    font-style: italic;
    color: #8fa5b8;
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.img-fluid {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    display: block;
}

.full-width-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}

/* Fixed Book Consultation Button */
.fixed-consultation-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    white-space: nowrap;
}

.fixed-consultation-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Mobile Booking Button */
.mobile-booking-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.mobile-booking-btn a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

/* Blue Contact Section - Matching Image 2 */
.blue-contact-section {
    background: #516986;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.blue-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blue-contact-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blue-contact-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blue-contact-info {
    margin-bottom: 3rem;
}

.blue-contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.blue-contact-details-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.blue-contact-item {
    text-align: center;
}

.blue-contact-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blue-contact-item strong {
    color: white;
    font-weight: 600;
}

.blue-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.blue-cta-btn {
    background: #d75050;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: none;
}

.blue-cta-btn:hover {
    background: #c03030;
    transform: translateY(-2px);
}

.blue-serving-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-style: italic;
    margin-top: 2rem;
    line-height: 1.6;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop fixed button on mobile */
    .fixed-consultation-btn {
        display: none;
    }

    /* Mobile Booking Button */
    .mobile-booking-btn {
        display: block;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }

    /* Top Navigation */
    .top-nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .top-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .top-nav-links a {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .book-consultation-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: auto;
    }

    /* Main Navigation */
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        padding: 0.5rem;
    }

    /* Content Sections */
    .main-content {
        padding: 0;
    }

    .content-text-section {
        padding: 2rem 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    /* Content Text */
    .content-section {
        padding: 2rem 1rem;
    }

    .content-section p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }

    /* Treatment Grid */
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .treatment-card {
        height: 180px;
    }

    .treatment-title {
        font-size: 1.1rem;
        padding: 1.2rem;
        line-height: 1.3;
    }

    .treatment-card-bg {
        font-size: 1rem;
    }

    /* Blog Section */
    .blog-section {
        padding: 3rem 1rem;
    }

    .blog-title {
        font-size: 2rem;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 3rem 1rem;
    }

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

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

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Contact Section */
    .contact-cta-section {
        padding: 3rem 1rem 5rem 1rem; /* Extra bottom padding for mobile button */
    }

    .contact-cta-section h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }

    .contact-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .contact-details {
        margin: 2rem 0;
        text-align: center;
    }

    .contact-details h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-details p {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .opening-hours {
        text-align: center;
        margin: 2rem 0;
    }

    .opening-hours h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .opening-hours p {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .cta-buttons-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn-large {
        width: 90%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        text-align: center;
    }

    .serving-areas {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .blue-contact-section h2 {
        font-size: 2rem;
    }

    .blue-contact-details-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .blue-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blue-cta-btn {
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Small Mobile Devices */
    .top-nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .top-nav-links a {
        font-size: 0.95rem;
        padding: 0.8rem;
        text-align: center;
        border-radius: 4px;
        background: rgba(255,255,255,0.1);
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

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

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

    .content-section {
        padding: 1.5rem 0.8rem;
    }

    .content-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .treatment-card {
        height: 160px;
    }

    .treatment-title {
        font-size: 1rem;
        padding: 1rem;
    }

    .treatment-card-bg {
        font-size: 0.9rem;
    }

    .blog-title {
        font-size: 1.7rem;
    }

    .testimonials-title {
        font-size: 1.7rem;
    }

    .contact-cta-section h2 {
        font-size: 1.7rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-details p,
    .opening-hours p {
        font-size: 1rem;
    }

    .cta-btn-large {
        width: 95%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .serving-areas {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .treatment-card {
        height: 140px;
    }

    .treatment-title {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}

/* Accessibility Improvements */
*:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2c3e50;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
}

.skip-link:focus {
    top: 6px;
}

/* Improve button accessibility */
button, .book-consultation-btn, .cta-btn-large, .fixed-consultation-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:focus, .book-consultation-btn:focus, .cta-btn-large:focus, .fixed-consultation-btn:focus {
    transform: scale(1.05);
}

/* Print styles for better SEO */
@media print {
    .header, .mobile-menu, .mobile-booking-btn, .fixed-consultation-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
}

/* Core Web Vitals Optimization */
img {
    content-visibility: auto;
}