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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header styling similar to OsteoMedic */
header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5530;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #4a7c59;
}

/* Hero section matching OsteoMedic style */
.hero {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 120px 0 80px;
    text-align: left;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
    font-size: 12rem;
    color: #4a7c59;
    opacity: 0.8;
}

.cta-button {
    background: #4a7c59;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* .cta-button:hover {
    background: #3d6249;
    background: 
        linear-gradient(135deg, rgba(240, 248, 240, 0.9) 0%, rgba(232, 245, 232, 0.9) 100%),
        url("../images/hero.jpg") center/cover no-repeat;

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.4);
} */

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}
.hero {
    background: 
        linear-gradient(135deg, rgba(240, 248, 240, 0.9) 0%, rgba(232, 245, 232, 0.9) 100%),
        url("./images/hero.jpg") center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: left;
    position: relative;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 250px;
}

.about-image {
    flex-shrink: 0;
}

.about-image img.about {
    width: 250px;  /* Set your desired image width */
    height: auto;
    border-radius: 10px; /* Optional: round the corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}



/* Booking Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

/* Air Datepicker Apple-style customization */
.air-datepicker {
    z-index: 10002 !important;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15) !important,
        0 8px 16px rgba(0, 0, 0, 0.1) !important,
        0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.air-datepicker-global-container {
    z-index: 10002 !important;
}

.air-datepicker-nav {
    background: linear-gradient(135deg, 
        rgba(74, 124, 89, 0.95) 0%, 
        rgba(44, 85, 48, 0.95) 100%) !important;
    color: white !important;
    border-radius: 20px 20px 0 0 !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 16px !important;
}

.air-datepicker-nav--title {
    color: white !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
}

.air-datepicker-nav--action {
    color: white !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.air-datepicker-nav--action:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.1) !important;
}

.air-datepicker-body {
    padding: 16px !important;
}

.air-datepicker-cell {
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-weight: 500 !important;
}

.air-datepicker-cell.-current- {
    background: linear-gradient(135deg, #4a7c59, #2c5530) !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(74, 124, 89, 0.3) !important;
}

.air-datepicker-cell.-selected- {
    background: linear-gradient(135deg, #2c5530, #1a3a1f) !important;
    color: white !important;
    box-shadow: 0 6px 12px rgba(44, 85, 48, 0.4) !important;
    transform: scale(1.05) !important;
}

.air-datepicker-cell:hover:not(.-disabled-):not(.-selected-):not(.-current-) {
    background: rgba(240, 248, 240, 0.8) !important;
    color: #2c5530 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.15) !important;
}

.air-datepicker-cell.-disabled- {
    color: #ccc !important;
    background: rgba(245, 245, 245, 0.6) !important;
}

.modal-header {
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.date-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.service-option {
    background: #f8fdf8;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.service-option:hover {
    border-color: #4a7c59;
    background: #f0f8f0;
}

.service-option.selected {
    border-color: #4a7c59;
    background: #e8f5e8;
}

.service-option input[type="radio"] {
    display: none;
}

.service-title {
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.service-price {
    color: #4a7c59;
    font-weight: 600;
}

.submit-btn {
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Available times */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.time-slot {
    background: #f8fdf8;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.time-slot:hover {
    border-color: #4a7c59;
    background: #f0f8f0;
}

.time-slot.selected {
    background: #4a7c59;
    color: white;
    border-color: #4a7c59;
}

.time-slot.unavailable {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    border-color: #ddd;
}

.booking-summary {
    background: #f0f8f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.summary-title {
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .form-row,
    .date-time-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }
}

/* Conditions section - OsteoMedic style */
.conditions-section {
    background: white;
    padding: 4rem 0;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #4a7c59;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.condition-item {
    background: #f8fdf8;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
    font-weight: 500;
    color: #333;
    transition: all 0.3s;
}

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

/* About section - OsteoMedic style */
.about-section {
    background: #f0f8f0;
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.about-image {
    text-align: center;
    font-size: 10rem;
    color: #4a7c59;
    opacity: 0.7;
}

/* Testimonials section - OsteoMedic style */
.testimonials-section {
    background: white;
    padding: 4rem 0;
}

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

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

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

.testimonial-author {
    font-weight: bold;
    color: #2c5530;
    font-size: 0.95rem;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
}

/* Services section */
.services-section {
    background: #f0f8f0;
    padding: 4rem 0;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #4a7c59;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Visit section styles */
.visit-section {
    background: white;
    padding: 4rem 0;
}

.visit-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visit-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.visit-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.visit-steps {
    margin-bottom: 4rem;
}

.step-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: #f8fdf8;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #4a7c59;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    background: #4a7c59;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.step-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
}

.step-content li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-content li::before {
    content: "✓";
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.info-card {
    background: #f0f8f0;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.info-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.visit-cta {
    background: #2c5530;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.visit-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.visit-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.visit-cta .cta-button {
    background: #4a7c59;
}

.visit-cta .cta-button:hover {
    background: #3d6249;
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .visit-info {
        grid-template-columns: 1fr;
    }
}

/* Blog section - OsteoMedic style */
.blog-section {
    background: white;
    padding: 4rem 0;
}

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

.blog-card {
    background: #f8fdf8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5530;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
}

/* Newsletter section - OsteoMedic style */
.newsletter-section {
    background: #2c5530;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 300px;
}

.newsletter-button {
    background: #4a7c59;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-button:hover {
    background: #3d6249;
}

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

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

.footer-section h4 {
    color: #4a7c59;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #4a7c59;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
.modal-content {
overflow-y: scroll;
scrollbar-width: none; /* Firefox */
}

.modal-content::-webkit-scrollbar {
display: none; /* Chrome, Safari */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-image {
        font-size: 8rem;
    }

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

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input {
        min-width: 250px;
    }
}