/* =========================================================
   CONVERSION-FOCUSED APPOINTMENT BOOKING PAGE STYLES
   Dr. Shukla's Sanjeevani Homoeopathy
   ========================================================= */

body { color: #2B2B2B; background-color: #F8FAF9; }

/* =========================================================
   1. BOOKING HERO HEADER
   ========================================================= */
.booking-hero {
    background: radial-gradient(circle at top right, rgba(234, 247, 240, 0.6) 0%, transparent 50%),
                linear-gradient(135deg, #0F6B45 0%, #177245 100%);
    color: #ffffff;
    padding: 70px 20px 80px;
    text-align: center;
}

.booking-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
}

.booking-hero p {
    font-size: 17px;
    opacity: 0.92;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.trust-item i {
    font-size: 24px;
    color: #72EAA1;
}

.trust-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.trust-item span {
    font-size: 12px;
    opacity: 0.85;
}

/* =========================================================
   2. SPLIT LAYOUT (FORM + SIDEBAR)
   ========================================================= */
.booking-section {
    max-width: 1140px;
    margin: 50px auto 70px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
}

/* LEFT FORM CARD */
.booking-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    border: 1px solid #E5E9E7;
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 26px;
    color: #0F6B45;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: #5F6368;
}

/* MODE SELECTOR */
.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.mode-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid #E5E9E7;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #FAFCFA;
}

.mode-card input {
    display: none;
}

.mode-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #EAF7F0;
    color: #0F6B45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s ease;
}

.mode-text strong {
    display: block;
    font-size: 14px;
    color: #2B2B2B;
}

.mode-text span {
    font-size: 12px;
    color: #5F6368;
}

.mode-card.active, .mode-card:hover {
    border-color: #0F6B45;
    background: #F0F9F4;
}

.mode-card.active .mode-icon {
    background: #0F6B45;
    color: #ffffff;
}

/* FORM FIELDS */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    margin-bottom: 20px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-field label i {
    color: #0F6B45;
}

.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #DCE3E0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #2B2B2B;
    background: #FAFCFA;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: #0F6B45;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 107, 69, 0.1);
}

.form-consent {
    margin-bottom: 25px;
    font-size: 13px;
    color: #5F6368;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-consent input {
    margin-top: 3px;
    accent-color: #0F6B45;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0F6B45 0%, #177245 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(15, 107, 69, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 107, 69, 0.4);
    background: linear-gradient(135deg, #127A50 0%, #19804E 100%);
}

.form-security-note {
    text-align: center;
    font-size: 12px;
    color: #5F6368;
    margin-top: 15px;
}

/* RIGHT SIDEBAR */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doc-trust-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #E5E9E7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
}

.doc-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #EAF7F0;
    color: #0F6B45;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.sidebar-doc-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #0F6B45;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.doc-trust-card h3 {
    font-size: 18px;
    color: #0F6B45;
    margin-bottom: 4px;
}

.doc-sub {
    font-size: 12px;
    color: #5F6368;
    margin-bottom: 12px;
}

.rating-box {
    background: #FFFDF0;
    border: 1px solid #FFEBA8;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 12px;
}

.stars {
    color: #FFB800;
    letter-spacing: 2px;
}

.count {
    display: block;
    color: #7A6000;
    font-size: 11px;
    margin-top: 2px;
}

.doc-highlights {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 13px;
}

.doc-highlights li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2B2B2B;
    line-height: 1.4;
}
.doc-highlights i {
    margin-top: 3px;
    flex-shrink: 0;
}

.doc-highlights i {
    color: #0F6B45;
}

.sidebar-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #E5E9E7;
    font-size: 13px;
    color: #5F6368;
}

.sidebar-info-card h4 {
    color: #0F6B45;
    margin-bottom: 8px;
    font-size: 15px;
}

.sidebar-contact-links {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-contact-links a {
    color: #0F6B45;
    font-weight: 600;
    text-decoration: none;
}

.guarantee-card {
    background: #EAF7F0;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.guarantee-card i {
    font-size: 24px;
    color: #0F6B45;
    margin-top: 2px;
}

.guarantee-card h5 {
    color: #0F6B45;
    font-size: 14px;
    margin-bottom: 4px;
}

.guarantee-card p {
    font-size: 12px;
    color: #3B5E4F;
    line-height: 1.4;
}

/* =========================================================
   3. WHY CHOOSE US SECTION
   ========================================================= */
.why-choose-section {
    padding: 70px 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 30px;
    color: #0F6B45;
    margin-bottom: 10px;
}

.section-title p {
    color: #5F6368;
    font-size: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #E5E9E7;
    transition: transform 0.25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #EAF7F0;
    color: #0F6B45;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-card h3 {
    font-size: 17px;
    color: #0F6B45;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #5F6368;
    line-height: 1.6;
}

/* =========================================================
   4. TESTIMONIALS SECTION
   ========================================================= */
.appointment-testimonials {
    background: #ffffff;
    padding: 70px 20px;
    border-top: 1px solid #E5E9E7;
    border-bottom: 1px solid #E5E9E7;
}

.app-reviews-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.app-review-card {
    background: #FAFCFA;
    border: 1px solid #E5E9E7;
    border-radius: 16px;
    padding: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #2B2B2B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rev-stars {
    color: #FFB800;
    margin-bottom: 10px;
}

.rev-author {
    margin-top: 16px;
    border-top: 1px solid #E5E9E7;
    padding-top: 10px;
}

.rev-author strong {
    display: block;
    color: #0F6B45;
    font-size: 13px;
}

.rev-author span {
    font-size: 11px;
    color: #5F6368;
}

/* =========================================================
   5. FAQ ACCORDION SECTION
   ========================================================= */
.appointment-faq {
    padding: 70px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #E5E9E7;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #0F6B45;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.25s ease;
}

.faq-answer {
    padding: 0 24px 18px;
    font-size: 14px;
    color: #5F6368;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .app-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .booking-hero h1 {
        font-size: 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .mode-selector {
        grid-template-columns: 1fr;
    }
    .hero-trust-bar {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .booking-form-wrap {
        padding: 24px;
    }
}


/* =========================================================
   LIVE GOOGLE REVIEWS CAROUSEL STYLES
   ========================================================= */
.google-reviews-section {
    background: #ffffff;
    padding: 70px 20px;
    border-top: 1px solid #E5E9E7;
    border-bottom: 1px solid #E5E9E7;
}

.reviews-header-wrap {
    max-width: 1140px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.google-brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.g-logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F8FAF9;
    border: 1px solid #E5E9E7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4285F4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.g-rating-info h3 {
    font-size: 20px;
    color: #0F6B45;
    margin-bottom: 4px;
}

.g-stars-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.g-rating-score {
    font-weight: 700;
    font-size: 16px;
    color: #2B2B2B;
}

.g-stars {
    color: #FFB800;
    letter-spacing: 2px;
}

.g-count {
    color: #5F6368;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1.5px solid #4285F4;
    color: #4285F4;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.write-review-btn:hover {
    background: #4285F4;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.25);
}

.googleReviewsSwiper {
    max-width: 1140px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.g-review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.g-review-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(66,133,244,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.g-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(66,133,244,0.12), inset 0 0 0 1px rgba(255,255,255,0.8);
    border-color: rgba(66, 133, 244, 0.2);
}

.g-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.g-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-user-info {
    flex: 1;
}

.g-user-info strong {
    display: block;
    font-size: 14px;
    color: #2B2B2B;
}

.g-verified {
    font-size: 11px;
    color: #34A853;
    display: flex;
    align-items: center;
    gap: 4px;
}

.g-mini-logo {
    width: 20px;
    height: 20px;
}

.g-stars-row {
    color: #FFB800;
    font-size: 13px;
    margin-bottom: 8px;
}

.g-date {
    color: #8A9099;
    font-size: 11px;
    font-weight: 400;
}

.g-tag {
    display: inline-block;
    background: #EAF7F0;
    color: #0F6B45;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.g-text {
    font-size: 13px;
    color: #4A4A4A;
    line-height: 1.6;
    flex: 1;
}

.googleReviewsSwiper .swiper-pagination-bullet-active {
    background: #4285F4;
}

.googleReviewsSwiper .swiper-button-next,
.googleReviewsSwiper .swiper-button-prev {
    color: #4285F4;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.googleReviewsSwiper .swiper-button-next:after,
.googleReviewsSwiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.rating-box {
    background: #FAFCFA;
    border: 1.5px solid #E5E9E7;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 18px;
    text-align: center;
}

.rating-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.count-link {
    display: inline-block;
    color: #4285F4;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.count-link:hover {
    color: #0F6B45;
    text-decoration: underline;
}

.g-live-badge {
    background: #EAF7F0;
    color: #0F6B45;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}


/* =========================================================
   CUSTOM ANIMATED CAROUSEL STYLES
   ========================================================= */
.carousel-nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #DCE3E0;
    color: #0F6B45;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.carousel-arrow:hover {
    background: #0F6B45;
    color: #ffffff;
    border-color: #0F6B45;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(15, 107, 69, 0.3);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-viewport {
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 4px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.g-review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .g-review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .g-review-card {
        flex: 0 0 100%;
    }
}

.reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DCE3E0;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.carousel-dot.active, .carousel-dot:hover {
    background: #0F6B45;
    width: 24px;
    border-radius: 10px;
}

.g-score-val {
    font-weight: 700;
    font-size: 16px;
    color: #0F6B45;
}

.g-mini-icon {
    color: #4285F4;
    font-size: 18px;
}

/* =========================================================
   ULTRA-PREMIUM BOOKING HERO
   ========================================================= */
@keyframes bookingMesh {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatAppt1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatAppt2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(15px) rotate(-1deg); }
}

.booking-hero-ultra {
    position: relative;
    padding: 100px 20px 120px;
    background-image: 
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M200,350 C200,350 150,250 100,200 C50,150 20,180 20,180 C20,180 80,100 200,100 C320,100 380,180 380,180 C380,180 350,150 300,200 C250,250 200,350 200,350 Z M200,350 C200,350 200,200 200,100' /%3E%3C/svg%3E"),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M200,350 C200,350 150,250 100,200 C50,150 20,180 20,180 C20,180 80,100 200,100 C320,100 380,180 380,180 C380,180 350,150 300,200 C250,250 200,350 200,350 Z M200,350 C200,350 200,200 200,100' /%3E%3C/svg%3E"),
      linear-gradient(-45deg, #0a4a30, #0F6B45, #177245, #20B2AA);
    background-position: left -150px top 100px, right -150px bottom 100px, 0% 0%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 500px auto, 500px auto, 400% 400%;
    animation: bookingMesh 15s ease infinite;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.booking-hero-ultra-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vw;
    max-width: 800px; max-height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.booking-hero-ultra-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-hero-ultra h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gradient-text-ultra {
    background: linear-gradient(135deg, #ffffff 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-hero-ultra p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-trust-bar-ultra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.trust-item-ultra {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.trust-icon-ultra {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.trust-item-ultra strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.trust-item-ultra span {
    font-size: 13px;
    opacity: 0.85;
}

.glass-float-1, .glass-float-2 {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 6;
}

.glass-float-1 {
    top: 20%; left: 10%;
    animation: floatAppt1 6s ease-in-out infinite;
}

.glass-float-2 {
    bottom: 20%; right: 10%;
    animation: floatAppt2 7s ease-in-out infinite;
}

/* =========================================================
   HOW IT WORKS TIMELINE
   ========================================================= */
.booking-timeline {
    background: #ffffff;
    padding: 80px 20px;
    border-bottom: 1px solid #E5E9E7;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-header h2 {
    font-size: 32px;
    color: #0F6B45;
    margin-bottom: 10px;
}

.timeline-header p {
    color: #5F6368;
    font-size: 16px;
}

.timeline-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 280px;
}

.step-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0F6B45, #20B2AA);
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15,107,69,0.2);
    border: 5px solid #fff;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
}

.timeline-step h3 {
    font-size: 18px;
    color: #2B2B2B;
    margin-bottom: 10px;
}

.timeline-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.timeline-connector {
    flex: 0 0 auto;
    width: 60px;
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 8px;
    color: #20B2AA;
    opacity: 0.5;
}

.timeline-connector .line {
    flex: 1;
    height: 2px;
    background: dashed 2px #20B2AA;
}

/* =========================================================
   ULTRA FAQ
   ========================================================= */
.appointment-faq-ultra {
    background: #F8FAF9;
    padding: 80px 20px;
}

.faq-ultra-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-ultra-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-ultra-header h2 {
    font-size: 36px;
    color: #0F6B45;
    margin-bottom: 10px;
}

.faq-ultra-header p {
    color: #5F6368;
    font-size: 16px;
}

.faq-accordion-ultra {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-ultra {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-ultra:hover {
    box-shadow: 0 10px 25px rgba(15,107,69,0.08);
}

.faq-question-ultra {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2B2B2B;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item-ultra.active .faq-question-ultra {
    color: #0F6B45;
}

.icon-wrap {
    width: 36px; height: 36px;
    background: #EAF7F0;
    color: #0F6B45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-ultra.active .icon-wrap {
    background: #0F6B45;
    color: #fff;
}

.faq-answer-ultra {
    display: none;
    padding: 0 24px 24px;
    color: #5F6368;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item-ultra.active .faq-answer-ultra {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .booking-hero-ultra h1 { font-size: 36px; }
    .hero-trust-bar-ultra { grid-template-columns: repeat(2, 1fr); }
    .glass-float-1, .glass-float-2 { display: none; }
    .timeline-steps { flex-direction: column; align-items: center; gap: 40px; }
    .timeline-step { max-width: 100%; }
    .timeline-connector { display: none; }
}
