/* ==========================================================================
   Dr. Aaditi Shaha, PT — Professional Physiotherapy Website
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --navy:       #0b2545;
    --navy-mid:   #134074;
    --teal:       #0d9488;
    --teal-light: #14b8a6;
    --teal-pale:  #e6faf9;
    --gold:       #f59e0b;
    --surface:    #f8fafc;
    --white:      #ffffff;
    --text-dark:  #0f172a;
    --text-body:  #475569;
    --text-light: #94a3b8;
    --border:     #e2e8f0;
    --shadow-sm:  0 1px 3px rgba(11,37,69,.06), 0 1px 2px rgba(11,37,69,.04);
    --shadow-md:  0 4px 16px rgba(11,37,69,.10);
    --shadow-lg:  0 16px 40px rgba(11,37,69,.14);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --radius-xl:  36px;
    --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* --------------------------------------------------------------------------
   Base Reset & Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.bg-surface    { background: var(--surface); }
.text-teal     { color: var(--teal); }
.text-navy     { color: var(--navy); }

.section-pad   { padding: 96px 0; }

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}
.section-label-light { color: rgba(255,255,255,0.65); }

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
}

.section-sub {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: 6px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 12px auto 0;
}

.body-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--teal);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid var(--teal);
    letter-spacing: 0.3px;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary-cta:hover, .btn-primary-cta:focus {
    background: #0b8078;
    border-color: #0b8078;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,.35);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--teal);
    transition: all var(--transition);
}
.btn-hero-primary:hover {
    background: #0b8078;
    border-color: #0b8078;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13,148,136,.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.5);
    transition: all var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.82rem;
}
.top-bar-link {
    color: rgba(255,255,255,.75);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
}
.top-bar-link:hover { color: var(--teal-light); }
.top-bar-text {
    color: rgba(255,255,255,.6);
    font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
#mainNav {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: box-shadow var(--transition), padding var(--transition);
    z-index: 1000;
}
#mainNav.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--navy-mid));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
}
.brand-tag {
    font-size: 0.72rem;
    color: var(--teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-body) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--teal) !important;
    background: var(--teal-pale);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, #134074 55%, #1e5f8c 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(13,148,136,0.15) 0%, transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.min-vh-screen { min-height: 80vh; display: flex; align-items: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,148,136,.2);
    border: 1px solid rgba(13,148,136,.4);
    color: var(--teal-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin: 0;
}
.hero-title-accent {
    color: var(--teal-light);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 8px;
    font-style: italic;
}

.hero-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-top: 8px;
}

.hero-stats {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 28px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal-light);
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,.2);
    height: 48px;
    align-self: center;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}
.hero-image-bg {
    position: absolute;
    inset: -20px;
    border-radius: var(--radius-xl);
    background: rgba(13,148,136,.1);
    border: 1px solid rgba(13,148,136,.2);
    z-index: 0;
}
.hero-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    max-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-card {
    position: absolute;
    z-index: 2;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
}
.hero-card strong { display: block; color: var(--navy); font-weight: 700; line-height: 1.2; }
.hero-card small  { color: var(--text-light); font-size: 0.75rem; }
.hero-card i { font-size: 1.6rem; }

.hero-card-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.hero-card-2 { top: 40px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
    background: var(--surface);
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.trust-item i {
    font-size: 2rem;
    color: var(--teal);
    width: 54px;
    height: 54px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-image-wrapper {
    position: relative;
    padding: 20px 0 40px;
}
.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 560px;
}
.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: var(--teal);
    color: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.exp-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.exp-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: .9;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-quote-pill {
    position: absolute;
    top: 0;
    left: -10px;
    background: var(--navy);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.about-blockquote {
    background: var(--teal-pale);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    font-size: 1rem;
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
    margin: 24px 0 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: all var(--transition);
}
.credential-item:hover { border-color: var(--teal); background: var(--teal-pale); }
.credential-item i { color: var(--teal); font-size: 1rem; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Expertise Cards
   -------------------------------------------------------------------------- */
.expertise-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.expertise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.expertise-card:hover {
    border-color: rgba(13,148,136,.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.expertise-card:hover::before { transform: scaleX(1); }

.expertise-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 18px;
    transition: all var(--transition);
}
.expertise-card:hover .expertise-icon {
    background: var(--teal);
    color: white;
}
.expertise-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.expertise-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 16px;
}
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.expertise-tags span {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-body);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

/* --------------------------------------------------------------------------
   Why Choose Section
   -------------------------------------------------------------------------- */
.why-section {
    background: linear-gradient(135deg, var(--navy) 0%, #134074 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(13,148,136,.08);
    pointer-events: none;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
}
.why-icon {
    width: 46px;
    height: 46px;
    background: rgba(13,148,136,.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal-light);
    flex-shrink: 0;
}
.why-feature h6 { font-weight: 700; color: white; margin-bottom: 4px; font-size: 1rem; }
.why-feature p  { color: rgba(255,255,255,.65); font-size: 0.88rem; margin: 0; }

.why-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(13,148,136,.5);
    transform: translateY(-4px);
}
.why-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(13,148,136,.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--teal-light);
    margin-bottom: 16px;
}
.why-card h6 { color: white; font-weight: 700; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,.65); font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* --------------------------------------------------------------------------
   Online Consultation Section
   -------------------------------------------------------------------------- */
.online-feature-list { display: flex; flex-direction: column; gap: 20px; }
.online-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.online-feature > i {
    font-size: 1.4rem;
    color: var(--teal);
    background: var(--teal-pale);
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.online-feature strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.online-feature p { font-size: 0.88rem; color: var(--text-body); margin: 0; }

.online-cta-card {
    background: var(--navy);
    color: white;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.online-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(13,148,136,.18) 0%, transparent 60%);
    pointer-events: none;
}
.online-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(13,148,136,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--teal-light);
    margin: 0 auto 24px;
}
.online-cta-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
}
.online-cta-card p { color: rgba(255,255,255,.7); font-size: 0.95rem; margin-bottom: 0; }

.online-steps { margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.online-step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.8);
}
.step-num {
    width: 32px;
    height: 32px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.online-cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,.5);
    text-align: center;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--border);
    line-height: 1;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #134074 100%);
    border-color: transparent;
}
.testimonial-featured::before { color: rgba(255,255,255,.1); }
.testimonial-featured .testimonial-text,
.testimonial-featured .author-name { color: white !important; }
.testimonial-featured .testimonial-stars i { color: var(--gold) !important; }

.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: var(--gold); font-size: 0.95rem; }

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--teal), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}
.testimonial-featured .testimonial-author strong { color: white; }
.testimonial-author small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
}
.testimonial-featured .testimonial-author small { color: rgba(255,255,255,.55); }

/* --------------------------------------------------------------------------
   Appointment Section
   -------------------------------------------------------------------------- */
.appointment-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.appt-info-col {
    background: linear-gradient(180deg, var(--navy) 0%, #134074 100%);
}
.appt-info {
    padding: 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.appt-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
}
.appt-info > p {
    color: rgba(255,255,255,.65);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.appt-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}
.appt-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.75);
    font-size: 0.85rem;
    padding: 12px 14px;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.1);
    transition: all var(--transition);
    text-decoration: none;
}
.appt-contact-item:hover { background: rgba(13,148,136,.2); border-color: rgba(13,148,136,.4); color: white; }
.appt-contact-item i {
    font-size: 1.2rem;
    color: var(--teal-light);
    flex-shrink: 0;
}
.appt-contact-item strong { display: block; color: white; font-weight: 600; font-size: 0.82rem; margin-bottom: 2px; }
.appt-contact-item span { color: rgba(255,255,255,.7); font-size: 0.82rem; }

.appt-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 24px;
}
.appt-badges span {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.65);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}

.appt-form-col { background: white; }
.appt-form-inner {
    padding: 48px 40px;
}
.appt-form-inner h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 10px 14px;
    transition: all var(--transition);
    background: var(--surface);
}
.form-control:focus, .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13,148,136,.12);
    background: white;
    outline: none;
}
.form-control::placeholder { color: var(--text-light); }

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    text-align: center;
    transition: all var(--transition);
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(13,148,136,.3);
}
.contact-card-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--teal), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 16px;
}
.contact-card h6 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.contact-card a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    word-break: break-word;
}
.contact-card a:hover { color: var(--navy); }
.contact-highlight {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
    padding: 72px 0 0;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo i {
    font-size: 1.8rem;
    color: var(--teal-light);
    background: rgba(13,148,136,.15);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-logo span { display: block; font-weight: 700; color: white; font-size: 1rem; }
.footer-logo small { display: block; font-size: 0.78rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.footer-about { font-size: 0.88rem; line-height: 1.7; margin-top: 16px; }
.footer-tagline {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--teal-light);
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 500;
}
.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-light); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}
.footer-contact i { color: var(--teal-light); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--teal-light); }
.footer-contact span { color: rgba(255,255,255,.65); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 56px;
    padding: 24px 0;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-badges span {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
}
.footer-badges i { color: var(--teal-light); }

/* --------------------------------------------------------------------------
   Floating Buttons
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    z-index: 9999;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    background: #20bd5a;
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: white;
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 9998;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Scroll Progress Bar
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    z-index: 9999;
    transition: width .1s linear;
    width: 0%;
}

/* --------------------------------------------------------------------------
   Form Alert
   -------------------------------------------------------------------------- */
.alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #15803d;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
}
.alert-danger {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Hero Background Elements SVG
   -------------------------------------------------------------------------- */
.hero-bg-elements {
    position: absolute;
    bottom: 56px;
    left: 0;
    width: 100%;
    pointer-events: none;
    user-select: none;
    opacity: 0.7;
    z-index: 0;
}

/* --------------------------------------------------------------------------
   Expertise Illustration
   -------------------------------------------------------------------------- */
.expertise-illus {
    max-height: 340px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(11,37,69,0.1));
}

/* --------------------------------------------------------------------------
   Consultation Illustration & Steps Card
   -------------------------------------------------------------------------- */
.consult-illus {
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 8px 28px rgba(11,37,69,0.12));
}

.consult-steps-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}
.consult-steps-card .online-steps { margin: 0; }
.consult-steps-card .online-step  { color: var(--text-dark); }
.consult-steps-card .online-step span:last-child { font-weight: 500; }

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .hero-card-1 { left: -5px; }
    .hero-card-2 { right: -5px; }
    .section-pad { padding: 80px 0; }
}

@media (max-width: 991px) {
    .hero-section { padding: 80px 0 80px; min-height: auto; }
    .min-vh-screen { min-height: auto; }
    .hero-card { display: none; }
    .about-experience-badge { right: 10px; }
    .about-quote-pill { left: 10px; }
    .appt-info { padding: 40px 32px; }
    .appt-form-inner { padding: 40px 32px; }
    .footer-badges { justify-content: center; }
    .footer-bottom .col-md-6:last-child { text-align: center !important; }
}

@media (max-width: 767px) {
    .section-pad { padding: 60px 0; }
    .hero-section { padding: 60px 0 60px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.6rem; }
    .appt-info { padding: 32px 24px; }
    .appt-form-inner { padding: 32px 24px; }
    .appt-info h2 { font-size: 1.6rem; }
    .online-cta-card { padding: 36px 28px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .back-to-top { bottom: 84px; right: 20px; }
}

@media (max-width: 575px) {
    .top-bar .d-flex.align-items-center.gap-4 { gap: 12px !important; }
    .top-bar-link { font-size: 0.76rem; }
    .hero-title { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-stat-divider { display: none; }
    .trust-item { flex-direction: row; text-align: left; }
    .expertise-card { padding: 24px; }
    .testimonial-card { padding: 24px; }
}
