/* ============================================
   PROFESSIONAL & CLEAN DESIGN
   Jacob's Physiotherapy Centre
   ============================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

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

/* ===== HEADER ===== */
header {
    background: #0f3b5f;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.logo-text .location-small {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
    line-height: 1.3;
}

/* Top buttons */
.top-buttons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.top-buttons a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-buttons a:first-child {
    background: rgba(255,255,255,0.15);
    color: white;
}

.top-buttons a:first-child:hover {
    background: rgba(255,255,255,0.25);
}

.whatsapp {
    background: #25D366 !important;
    color: white !important;
}

.book {
    background: #e67e22 !important;
    color: white !important;
}

.book:hover {
    background: #d35400 !important;
}

/* Floating Dr. Assist Button */
.floating-drassist {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(255,255,255,0.3);
}

.floating-drassist i {
    font-size: 28px;
    margin-bottom: 4px;
}

.floating-drassist span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.floating-drassist:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d35400, #e67e22);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #eef2f7 0%, #e0e8f0 100%);
    padding: 3rem 0;
}

.hero-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.experience-badge {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f3b5f;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.hero-feature i {
    color: #e67e22;
    width: 24px;
}

.hero-feature span {
    color: #e67e22;
    font-weight: 500;
}

.btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

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

.hero-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

/* ===== SECTIONS ===== */
.section, .specialties, .about, .conditions, .testimonial, .locations, .gallery-section {
    padding: 3rem 0;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0f3b5f;
}

.light {
    background: #f1f5f9;
}

/* Treatments Grid */
.grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.treatments {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    padding-bottom: 1rem;
}

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

.card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.card p {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

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

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.specialty-card i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.specialty-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0f3b5f;
}

.specialty-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* About */
.about {
    background: white;
}

.about-box {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 28px;
}

.about-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 24px;
}

.about-box div h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-box p {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.about-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    background: #eef2ff;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    color: #0f3b5f;
}

.about-highlights span i {
    color: #e67e22;
}

/* Why Choose */
.why {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.why-box {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.2s;
}

.why-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -10px rgba(0,0,0,0.1);
}

.why-box i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.why-box p {
    font-weight: 500;
    font-size: 0.85rem;
}

/* Conditions */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.condition-item {
    background: white;
    padding: 0.7rem 1rem;
    text-align: center;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #0f3b5f;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.condition-item:hover {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

/* Testimonials */
.testimonial {
    background: linear-gradient(120deg, #fff8f0, #ffffff);
}

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

.testimonial .card {
    padding: 1.8rem;
    text-align: center;
}

.testimonial .card small {
    display: block;
    margin-top: 0.8rem;
    color: #e67e22;
    font-weight: 600;
}

/* Gallery */
.gallery-section {
    background: #ffffff;
}

.gallery-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.gallery-slider {
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 24px;
    padding: 10px 0;
}

.gallery-slider .slick-slide {
    padding: 0 10px;
}

.gallery-slider .slick-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-slider .slick-slide img:hover {
    transform: scale(1.02);
}

.slick-prev:before, .slick-next:before {
    color: #e67e22;
    font-size: 28px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #e67e22;
}

.slick-dots li.slick-active button:before {
    color: #e67e22;
    opacity: 1;
}

.gallery-caption {
    text-align: center;
    padding: 0.8rem;
    font-weight: 500;
    color: #0f3b5f;
    font-size: 0.85rem;
    background: white;
    margin-top: 5px;
    border-radius: 12px;
}

/* Locations */
.locations {
    background: #ffffff;
}

.locations-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.locations-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.location {
    background: #f8fafc;
    border-radius: 24px;
    padding: 1.8rem;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.location:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
    border-color: #e67e22;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: #e67e22;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-title h3 {
    font-size: 1.4rem;
    color: #0f3b5f;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location-tag {
    font-size: 0.7rem;
    background: #e67e22;
    color: white;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    display: inline-block;
}

.location-tag.secondary {
    background: #0f3b5f;
}

.location-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.detail-row i {
    color: #e67e22;
    width: 18px;
    margin-top: 0.2rem;
}

.detail-row p {
    color: #334155;
    line-height: 1.4;
    flex: 1;
}

.detail-row a {
    color: #0f3b5f;
    text-decoration: none;
    font-weight: 600;
}

.detail-row a:hover {
    color: #e67e22;
}

.detail-row span {
    color: #475569;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: white;
    color: #e67e22;
    padding: 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.location-btn:hover {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

/* Contact Strip */
.contact-strip {
    background: linear-gradient(135deg, #0f3b5f 0%, #1a4a6e 100%);
    border-radius: 20px;
    padding: 1.2rem 1.8rem;
    margin-top: 1rem;
}

.contact-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-strip-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-strip-text i {
    font-size: 2rem;
    color: #e67e22;
}

.contact-strip-text div {
    display: flex;
    flex-direction: column;
}

.contact-strip-text strong {
    color: white;
    font-size: 1rem;
}

.contact-strip-text span {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

.contact-strip-buttons {
    display: flex;
    gap: 0.8rem;
}

.contact-strip-call,
.contact-strip-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.contact-strip-call {
    background: #25D366;
    color: white;
}

.contact-strip-call:hover {
    background: #1da15a;
    transform: translateY(-2px);
}

.contact-strip-wa {
    background: white;
    color: #0f3b5f;
}

.contact-strip-wa:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0f3b5f;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 1.5rem;
}

.footer-content p {
    margin: 0.3rem 0;
    font-size: 0.8rem;
}

/* Modalities */
.modalities-heading {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #0f3b5f;
}

.modalities-grid-custom {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 92%;
    }
    .nav {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        justify-content: center;
    }
    .top-buttons {
        justify-content: center;
        width: 100%;
    }
    .hero-box {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .about-box {
        flex-direction: column;
        text-align: center;
    }
    .about-box div h2 {
        text-align: center;
    }
    .about-highlights {
        justify-content: center;
    }
    h2 {
        font-size: 1.6rem;
    }
    .locations-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-strip-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-strip-text {
        flex-direction: column;
        text-align: center;
    }
    .gallery-slider .slick-slide img {
        height: 220px;
    }
    .floating-drassist {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .floating-drassist i {
        font-size: 22px;
    }
    .floating-drassist span {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 45px;
        height: 45px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .gallery-slider .slick-slide img {
        height: 180px;
    }
    .floating-drassist {
        width: 50px;
        height: 50px;
    }
    .floating-drassist i {
        font-size: 20px;
    }
    .floating-drassist span {
        font-size: 8px;
    }
}