/*
 * Ahmedabad Branch Landing Page - Dedicated Stylesheet
 * RQC Hair Transplant & Skin Clinic - Ahmedabad Branch
 * File: public/Assets/User/css/ahmedabadbranch.css
 *
 * NOTE: This file contains ONLY page-specific styles for the Ahmedabad Branch
 * landing page. Global styles remain in style.css. Do NOT add styles here
 * that could affect other pages.
 */

/* ============================================================
   CSS CUSTOM PROPERTIES (Scoped to page)
   ============================================================ */
.ahmedabad-page {
    --ahm-primary: #005298;
    --ahm-primary-light: #0069c7;
    --ahm-primary-dark: #003b6e;
    --ahm-accent: #e8f4ff;
    --ahm-gold: #f0a500;
    --ahm-dark: #18100f;
    --ahm-grey: #f4f6f9;
    --ahm-white: #ffffff;
    --ahm-text: #666666;
    --ahm-shadow: 0 8px 40px rgba(0, 82, 152, 0.12);
    --ahm-shadow-hover: 0 16px 50px rgba(0, 82, 152, 0.22);
    --ahm-radius: 10px;
    --ahm-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes ahm-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ahm-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ahm-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ahm-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes ahm-shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

@keyframes ahm-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes ahm-badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes ahm-star-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#pinquiryform .error {
    color: #ff0000;
}
/* ============================================================
   SECTION UTILITY - Ahmedabad page overrides
   ============================================================ */
.ahmedabad-page section {
    position: relative;
    overflow: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ahm-hero {
    background: linear-gradient(135deg, #003b6e 0%, #005298 50%, #0069c7 100%);
    padding: 40px 0 35px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.ahm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg-1.png") center/50% repeat;
    opacity: 0.1;
    pointer-events: none;
}

.ahm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    animation: ahm-badge-bounce 3s ease-in-out infinite;
    backdrop-filter: blur(6px);
}

.ahm-hero-badge i {
    color: #f0a500;
    font-size: 14px;
}

.ahm-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    animation: ahm-fadeInLeft 0.8s ease both;
}

.ahm-hero h1 span {
    color: #f0a500;
}

.ahm-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 28px;
    animation: ahm-fadeInLeft 0.9s 0.1s ease both;
}

.ahm-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: ahm-fadeInLeft 1s 0.2s ease both;
}

.ahm-hero-stat {
    text-align: center;
}

.ahm-hero-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #f0a500;
    font-family: var(--title-fonts);
    line-height: 1.1;
}

.ahm-hero-stat .stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.ahm-hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: ahm-fadeInLeft 1s 0.3s ease both;
}

.ahm-btn-primary {
    background: var(--ahm-primary);
    color: #fff;
    border: 2px solid var(--ahm-accent);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--ahm-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--title-fonts);
    cursor: pointer;
}

.ahm-btn-primary:hover {
    background: var(--ahm-accent);
    border-color: var(--ahm-primary);
    color: var(--ahm-primary);
    transform: translateY(-2px);
}

.ahm-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--ahm-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--title-fonts);
    cursor: pointer;
}

.ahm-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Hero Form Card */
.ahm-hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: ahm-fadeInRight 0.9s 0.2s ease both;
    position: relative;
    z-index: 2;
}

.ahm-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #18100f;
    margin-bottom: 4px;
    font-family: var(--title-fonts);
}

.ahm-form-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.5;
}

.ahm-form-group {
    margin-bottom: 16px;
}

.ahm-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #18100f;
    margin-bottom: 6px;
    /* text-transform: uppercase; */
    letter-spacing: 0.4px;
}

.ahm-form-control {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #18100f;
    background: #f8fafc;
    transition: var(--ahm-transition);
    font-family: var(--body-fonts);
}

.ahm-form-control:focus {
    border-color: #005298;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 82, 152, 0.12);
}

.ahm-form-control::placeholder {
    color: #9ca3af;
}

.ahm-form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #005298, #0069c7);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--ahm-transition);
    font-family: var(--title-fonts);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.ahm-form-submit-btn:hover {
    background: linear-gradient(135deg, #003b6e, #005298);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 152, 0.4);
    color: #fff;
}

.ahm-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    color: #6b7280;
}

.ahm-form-trust i {
    color: #22c55e;
    font-size: 13px;
}

/* ============================================================
   SECTION HEADER / TITLE STYLES
   ============================================================ */
.ahm-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ahm-section-tag {
    display: inline-block;
    background: #e8f4ff;
    color: #005298;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 82, 152, 0.15);
}

.ahm-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #18100f;
    line-height: 1.25;
    margin-bottom: 16px;
    font-family: var(--title-fonts);
}

.ahm-section-title span {
    color: #005298;
}

.ahm-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.ahm-section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005298, #f0a500);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ============================================================
   WHY CHOOSE US - FEATURE CARDS
   ============================================================ */
.ahm-why-section {
    background: #f4f6f9;
    padding: 60px 0;
}

.ahm-feature-card {
    background: #fff;
    border-radius: var(--ahm-radius);
    padding: 36px 28px;
    height: 100%;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 82, 152, 0.07);
    transition: var(--ahm-transition);
    position: relative;
    overflow: hidden;
}

.ahm-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #005298, #f0a500);
    transform: scaleX(0);
    transition: var(--ahm-transition);
    transform-origin: left;
}

.ahm-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ahm-shadow-hover);
    border-color: rgba(0, 82, 152, 0.12);
}

.ahm-feature-card:hover::before {
    transform: scaleX(1);
}

.ahm-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f4ff, #c8e6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--ahm-transition);
}

.ahm-feature-card:hover .ahm-feature-icon {
    background: linear-gradient(135deg, #005298, #0069c7);
}

.ahm-feature-icon i {
    font-size: 28px;
    color: #005298;
    transition: var(--ahm-transition);
}

.ahm-feature-card:hover .ahm-feature-icon i {
    color: #fff;
    transform: scale(1.1);
}

.ahm-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #18100f;
    margin-bottom: 10px;
    font-family: var(--title-fonts);
}

.ahm-feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.ahm-services-section {
    background: #fff;
    padding: 0 0 60px;
}

.ahm-service-card {
    background: #fff;
    border: 1.5px solid #e8f0f8;
    border-radius: var(--ahm-radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--ahm-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ahm-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #005298, #003b6e);
    opacity: 0;
    transition: var(--ahm-transition);
    z-index: 0;
}

.ahm-service-card:hover::after {
    opacity: 1;
}

.ahm-service-card > * {
    position: relative;
    z-index: 1;
}

.ahm-service-card:hover h4,
.ahm-service-card:hover p {
    color: #fff;
}

.ahm-service-card:hover .ahm-service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.ahm-service-card:hover .ahm-service-icon i {
    color: var(--ahm-accent);
}

.ahm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 82, 152, 0.25);
    border-color: transparent;
}

.ahm-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f4ff;
    border: 2px solid rgba(0, 82, 152, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--ahm-transition);
}

.ahm-service-icon i {
    font-size: 30px;
    color: #005298;
    transition: var(--ahm-transition);
}

.ahm-service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #18100f;
    margin-bottom: 10px;
    transition: var(--ahm-transition);
    font-family: var(--title-fonts);
}

.ahm-service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: var(--ahm-transition);
}

/* ============================================================
   BEFORE & AFTER RESULTS SECTION
   ============================================================ */
.ahm-results-section {
    background: #f4f6f9;
    padding: 60px 0;
}

.ahm-result-card {
    border-radius: var(--ahm-radius);
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 82, 152, 0.1);
    transition: var(--ahm-transition);
    background: #fff;
}

.ahm-result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 82, 152, 0.2);
}
/* 
.ahm-result-img-wrapper {
    position: relative;
    overflow: hidden;
}

.ahm-result-img-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

.ahm-result-card:hover .ahm-result-img-wrapper img {
    transform: scale(1.05);
}

.ahm-result-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 58, 110, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--ahm-transition);
}

.ahm-result-card:hover .ahm-result-overlay {
    opacity: 1;
} */

.ahm-result-badge {
    background: #f0a500;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}

.ahm-result-info {
    padding: 18px 20px;
}

.ahm-result-info .result-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #005298;
    font-weight: 600;
}

.ahm-result-info .result-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ahm-result-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #18100f;
    margin: 8px 0 4px;
    font-family: var(--title-fonts);
}

.ahm-result-info p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.ahm-testimonials-section {
    background: #fff;
    padding: 60px 0;
}

.ahm-testimonial-card {
    background: #fff;
    border: 1.5px solid #e8f0f8;
    border-radius: var(--ahm-radius);
    padding: 32px;
    height: 100%;
    transition: var(--ahm-transition);
    position: relative;
}

.ahm-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: #e8f4ff;
    line-height: 1;
}

.ahm-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ahm-shadow-hover);
    border-color: rgba(0, 82, 152, 0.15);
}

.ahm-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.ahm-rating i {
    color: #f0a500;
    font-size: 14px;
}

.ahm-testimonial-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.ahm-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f0f4f8;
    padding-top: 18px;
}

.ahm-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005298, #0069c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--title-fonts);
    flex-shrink: 0;
}

.ahm-author-info .author-name {
    font-weight: 700;
    font-size: 14px;
    color: #18100f;
    font-family: var(--title-fonts);
    display: block;
}

.ahm-author-info .author-city {
    font-size: 12px;
    color: #666;
    display: block;
}

.ahm-google-badge {
    margin-left: auto;
}

.ahm-google-badge img {
    width: 20px;
    height: 20px;
    border-radius: 0;
}

/* ============================================================
   DOCTOR SECTION
   ============================================================ */
.ahm-doctor-section {
    background: linear-gradient(135deg, #f4f6f9 0%, #e8f4ff 100%);
    padding: 0 0 60px; 
}

.ahm-doctor-img-wrapper {
    position: relative;
    text-align: center;
}

.ahm-doctor-img-wrapper img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 82, 152, 0.18);
}

.ahm-doctor-badge-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    min-width: 130px;
    animation: ahm-float 4s ease-in-out infinite;
}

.ahm-doctor-badge-card .badge-number {
    font-size: 28px;
    font-weight: 800;
    color: #005298;
    font-family: var(--title-fonts);
    line-height: 1;
}

.ahm-doctor-badge-card .badge-label {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
}

.ahm-doctor-exp-tag {
    position: absolute;
    top: 30px;
    left: -20px;
    /* background: linear-gradient(135deg, #f0a500, #d6920a); */
    background: linear-gradient(135deg, var(--ahm-primary-dark), var(--ahm-primary-light));
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 6px 20px var(--ahm-primary-dark);
    animation: ahm-float 4s 1s ease-in-out infinite;
}

.ahm-doctor-exp-tag .exp-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--title-fonts);
}

.ahm-doctor-exp-tag .exp-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ahm-doctor-content {
    padding-left: 20px;
}

.ahm-doctor-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #18100f;
    margin-bottom: 6px;
    font-family: var(--title-fonts);
}

.ahm-doctor-designation {
    color: #005298;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.ahm-doctor-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ahm-doctor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.ahm-credential-chip {
    background: #e8f4ff;
    color: #005298;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 82, 152, 0.15);
}

/* ============================================================
   TECHNOLOGY SECTION
   ============================================================ */
.ahm-tech-section {
    background: #fff;
    padding: 0 0 60px;
}

.ahm-tech-card {
    background: linear-gradient(135deg, #f8fafc, #e8f4ff);
    border-radius: var(--ahm-radius);
    padding: 30px 24px;
    text-align: center;
    border: 1.5px solid rgba(0, 82, 152, 0.08);
    transition: var(--ahm-transition);
    height: 100%;
}

.ahm-tech-card:hover {
    background: linear-gradient(135deg, #005298, #0069c7);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 82, 152, 0.25);
    border-color: transparent;
}

.ahm-tech-card:hover h5,
.ahm-tech-card:hover p,
.ahm-tech-card:hover .ahm-tech-icon i {
    color: #fff;
}

.ahm-tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 82, 152, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--ahm-transition);
}

.ahm-tech-card:hover .ahm-tech-icon {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.ahm-tech-icon i {
    font-size: 26px;
    color: #005298;
    transition: var(--ahm-transition);
}

.ahm-tech-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #18100f;
    margin-bottom: 8px;
    transition: var(--ahm-transition);
    font-family: var(--title-fonts);
}

.ahm-tech-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: var(--ahm-transition);
}

/* ============================================================
   TREATMENT PROCESS SECTION
   ============================================================ */
.ahm-process-section {
    background: #f4f6f9;
    padding: 60px 0;
}

.ahm-process-wrapper {
    position: relative;
}

.ahm-process-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 8.33%;
    right: 8.33%;
    height: 2px;
    background: linear-gradient(90deg, #005298, #f0a500, #005298);
    z-index: 0;
}

.ahm-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.ahm-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005298, #0069c7);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--title-fonts);
    box-shadow: 0 6px 20px rgba(0, 82, 152, 0.35);
    position: relative;
    transition: var(--ahm-transition);
}

.ahm-process-step:hover .ahm-step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 82, 152, 0.45);
}

.ahm-step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(0, 82, 152, 0.25);
    animation: ahm-pulse-ring 2s ease-out infinite;
}

.ahm-process-step h5 {
    font-size: 15px;
    font-weight: 700;
    color: #18100f;
    margin-bottom: 8px;
    font-family: var(--title-fonts);
}

.ahm-process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   FACILITIES SECTION
   ============================================================ */
/* .ahm-facilities-section {
    background: #fff;
    padding: 60px 0;
}

.ahm-facility-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: var(--ahm-radius);
    border: 1.5px solid #e8f0f8;
    transition: var(--ahm-transition);
    height: 100%;
    background: #fff;
}

.ahm-facility-item:hover {
    border-color: rgba(0, 82, 152, 0.2);
    box-shadow: var(--ahm-shadow);
    transform: translateY(-4px);
}

.ahm-facility-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #e8f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--ahm-transition);
}

.ahm-facility-item:hover .ahm-facility-icon-wrap {
    background: #005298;
}

.ahm-facility-icon-wrap i {
    font-size: 22px;
    color: #005298;
    transition: var(--ahm-transition);
}

.ahm-facility-item:hover .ahm-facility-icon-wrap i {
    color: #fff;
}

.ahm-facility-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #18100f;
    margin-bottom: 6px;
    font-family: var(--title-fonts);
}

.ahm-facility-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
} */

/* ============================================================
   FAQ SECTION
   ============================================================ */
.ahm-faq-section {
    background: #f4f6f9;
    padding: 0 0 60px;
}

.ahm-faq-accordion .accordion-item {
    border: 1.5px solid #e8f0f8;
    border-radius: var(--ahm-radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: var(--ahm-transition);
}

.ahm-faq-accordion .accordion-item:hover {
    border-color: rgba(0, 82, 152, 0.2);
    box-shadow: 0 4px 16px rgba(0, 82, 152, 0.08);
}

.ahm-faq-accordion .accordion-button {
    font-size: 15px;
    font-weight: 700;
    color: #18100f;
    background: #fff;
    padding: 20px 24px;
    font-family: var(--title-fonts);
    border-radius: var(--ahm-radius) !important;
}

.ahm-faq-accordion .accordion-button:not(.collapsed) {
    color: #005298;
    background: #e8f4ff;
    box-shadow: none;
}

.ahm-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 82, 152, 0.2);
}

.ahm-faq-accordion .accordion-button::after {
    filter: hue-rotate(180deg) brightness(0.5);
}

.ahm-faq-accordion .accordion-body {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    padding: 0 24px 22px;
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
/* .ahm-reviews-section {
    background: #fff;
    padding: 60px 0;
}

.ahm-google-review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ahm-google-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ahm-google-logo-block .g-text {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--title-fonts);
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.ahm-google-rating-block {
    text-align: center;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.ahm-google-rating-block .rating-big {
    font-size: 48px;
    font-weight: 800;
    color: #18100f;
    font-family: var(--title-fonts);
    line-height: 1;
}

.ahm-google-rating-block .rating-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin: 4px 0;
}

.ahm-google-rating-block .rating-stars i {
    color: #f0a500;
    font-size: 16px;
}

.ahm-google-rating-block .rating-count {
    font-size: 13px;
    color: #666;
}

.ahm-review-card {
    background: #fff;
    border: 1.5px solid #e8f0f8;
    border-radius: var(--ahm-radius);
    padding: 24px;
    height: 100%;
    transition: var(--ahm-transition);
}

.ahm-review-card:hover {
    box-shadow: var(--ahm-shadow);
    border-color: rgba(0, 82, 152, 0.12);
    transform: translateY(-4px);
}

.ahm-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ahm-reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ahm-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005298, #0069c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--title-fonts);
    flex-shrink: 0;
}

.ahm-reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: #18100f;
    display: block;
    font-family: var(--title-fonts);
}

.ahm-reviewer-date {
    font-size: 11px;
    color: #999;
}

.ahm-review-g-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #4285F4;
    font-family: Arial, sans-serif;
}

.ahm-review-text {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
} */

/* ============================================================
   LOCATION / MAP SECTION
   ============================================================ */
.ahm-location-section {
    background: #f4f6f9;
    padding: 0 0 60px;
}

.ahm-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 82, 152, 0.12);
}

.ahm-map-wrapper iframe {
    width: 100%;
    height: 440px;
    border: 0;
    display: block;
}

.ahm-contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(0, 82, 152, 0.08);
    height: 100%;
    border: 1.5px solid rgba(0, 82, 152, 0.08);
}

.ahm-contact-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #18100f;
    margin-bottom: 8px;
    font-family: var(--title-fonts);
}

.ahm-branch-tag {
    background: #e8f4ff;
    color: #005298;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
}

.ahm-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 7px;
    border-bottom: 1px solid #f0f4f8;
}

.ahm-contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ahm-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ahm-contact-icon i {
    font-size: 18px;
    color: #005298;
}

.ahm-contact-detail .detail-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.ahm-contact-detail .detail-value {
    font-size: 14px;
    color: #18100f;
    font-weight: 600;
    line-height: 1.5;
}

.ahm-contact-detail a {
    color: #18100f;
    transition: var(--ahm-transition);
}

.ahm-contact-detail a:hover {
    color: #005298;
}

/* ============================================================
   CTA SECTION (Mid-page Banner)
   ============================================================ */
.ahm-cta-section {
    background: linear-gradient(135deg, #003b6e 0%, #005298 60%, #0069c7 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.ahm-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url("../img/bg-1.png");
    background-position: center center;
    background-repeat:repeat;
    background-size: 60% auto;
    background-attachment: fixed;

}

/* .ahm-cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    font-family: var(--title-fonts);
} */

.ahm-cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 30px;
}

.ahm-cta-phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
    transition: var(--ahm-transition);
    text-decoration: none;
    font-family: var(--title-fonts);
}

.ahm-cta-phone-badge:hover {
    background: var(--ahm-accent);
    border-color: var(--ahm-accent);
    color: var(--ahm-primary-dark);
    transform: translateY(-2px);
}

.ahm-cta-phone-badge i {
    font-size: 22px;
}

/* ============================================================
   BREADCRUMB-LIKE LOCATION BAR
   ============================================================ */
.ahm-topbar {
    background: #003b6e;
    padding: 10px 0;
}

.ahm-topbar-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ahm-topbar-text i {
    color: #f0a500;
}

.ahm-topbar-link {
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 1199px) {
    .ahm-hero h1 { font-size: 36px; }
    .ahm-section-title { font-size: 30px; }
}

@media (max-width: 991px) {
    .ahm-hero {
        min-height: auto;
        padding: 50px 0;
    }

    .ahm-hero h1 { font-size: 30px; }
    .ahm-hero-form-card { margin-top: 40px; }

    .ahm-process-wrapper::before { display: none; }

    .ahm-doctor-content { padding-left: 0; margin-top: 40px; }
    .ahm-doctor-badge-card { right: 10px; bottom: 10px; }
    .ahm-doctor-exp-tag { left: 10px; top: 10px; }

    .ahm-section-title { font-size: 28px; }

    .ahm-stat-item + .ahm-stat-item::before { display: none; }
}

@media (max-width: 767px) {
    .ahm-hero h1 { font-size: 26px; }
    .ahm-hero-stats { gap: 16px; }
    .ahm-hero-stat .stat-number { font-size: 22px; }

    .ahm-section-title { font-size: 24px; }
    .ahm-section-header { margin-bottom: 36px; }

    .ahm-cta-section h2 { font-size: 26px; }

    .ahm-stat-number { font-size: 38px; }

    .ahm-contact-info-card { margin-top: 28px; }

    .ahm-doctor-badge-card,
    .ahm-doctor-exp-tag { display: none; }

    .ahm-hero-cta-group { flex-direction: column; }
    .ahm-btn-primary,
    .ahm-btn-outline-white { text-align: center; justify-content: center; }

    .ahm-google-review-header { gap: 12px; }
    .ahm-google-rating-block { padding-left: 12px; }
    .ahm-google-rating-block .rating-big { font-size: 36px; }
}

@media (max-width: 575px) {
    .ahm-hero { padding: 40px 0 50px !important; }
    .ahm-hero h1 { font-size: 22px; }
    .ahm-hero-form-card { padding: 10px 18px; margin-top: 0; }
    .ahm-map-wrapper iframe { height: 300px; }
    .ahm-services-section {padding: 20px 0 40px !important;}
    .ahm-doctor-section {padding: 10px 0 !important;}
    .ahm-doctor-content {margin-top: 0px; margin-bottom: 10px;}
    .ahm-tech-section {padding-top: 0 !important;}
    .ahm-faq-section {padding: 0 0 0 0 !important;}
    .ahm-faq-accordion {margin: 0 0 0 0;}
    .ahm-location-section {padding: 25px 0 10px 0 !important;}
    .ahm-contact-info-card {margin-top: 0; padding: 25px 25px !important;}
    .ahm-cta-section {padding: 45px 0 !important;}
    .ahm-btn-primary {padding: 14px 25px !important;}
    .ahm-faq-section-row {--bs-gutter-y : 1rem;}
}
