@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-green: #45546ce6 !important;
    --dark-blue: #0B3D59;
    --light-bg: #F0F6F7;
    --white: #FFFFFF;
    --dark-text: #1A1A1A;
    --emergency-red: #E63946;
    --review-bg: #0b4060;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
.top-header {
    background: var(--primary-green);
    padding: 10px 0;
    /* Reduced padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 100px;
    /* Slightly smaller logo for better fit */
}

.phone-link {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

.btn-green {
    background: var(--primary-green);
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-green:hover {
    background: #45546ce6;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--light-bg);
    color: var(--dark-text);
    padding: 100px 0;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hero-benefits li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.hero-benefits li i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.5rem;
}

.hero-images-grid img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    object-fit: cover;
}

.hero-review-card-inline {
    background: var(--review-bg);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-review-card-inline .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hero-review-card-inline .avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
    font-size: 0.9rem;
}

.hero-review-card-inline p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.stacked-img-top {
    height: 200px;
}

.stacked-img-bottom {
    height: 250px;
}

@media (max-width: 991px) {

    .stacked-img-top,
    .stacked-img-bottom {
        height: auto;
    }
}

/* 3-Column Info */
.info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-card {
    text-align: left;
    padding: 20px 40px;
    transition: var(--transition);
    height: 100%;
}

.info-card i {
    background: #EBF2E0;
    color: var(--primary-green);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.info-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Vertical Divider for Info Section */
@media (min-width: 768px) {
    .info-section .row>div:not(:first-child) {
        border-left: 1px solid #E5E5E5;
    }
}

/* Form Section Redesign */
.form-section {
    padding: 0;
    overflow: hidden;
    background: #f8f9fa;
}

.form-split-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.form-image-col {
    position: relative;
    padding: 0;
    min-height: 600px;
}

@media (max-width: 991px) {
    .form-image-col {
        min-height: 400px;
    }
}

.form-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-floating-card {
    position: absolute !important;
    bottom: 50px !important;
    right: 30px !important;
    background: #F4FAF0 !important;
    border: 1px solid #45546ce6 !important;
    padding: 40px !important;
    border-radius: 10px !important;
    max-width: 380px  !important;
    z-index: 10  !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1)  !important;
}

@media (max-width: 1200px) {
    .form-floating-card {
        right: 15px  !important;
        max-width: 300px  !important;
    }
}

.form-floating-card .tag-icon {
    background: #45546ce6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.form-floating-card h4 {
    color: #45546ce6;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.form-floating-card p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
}

.form-content-col {
    background: #0B3D59;
    color: white;
    padding: 100px 80px;
}

@media (max-width: 767px) {
    .form-content-col {
        padding: 60px 20px;
    }
}

.form-content-col h2 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.form-content-col .discount-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.form-content-col .discount-badge {
    background: #EBF2E0;
    color: #45546ce6;
    padding: 8px 15px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-content-col .original-price {
    font-size: 1.4rem;
    font-weight: 400;
}

.form-content-col .form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: white;
}

.form-content-col .form-control {
    background: white !important;
    color: #333 !important;
    border: none !important;
    padding: 18px !important;
    border-radius: 5px !important;
    margin-bottom: 15px;
}

.form-content-col .form-control:focus {
    box-shadow: 0 0 0 3px #45546ce6;
}

.form-content-col .btn-green {
    float: right;
    margin-top: 10px;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 2px;
}

/* Video & Quote Section */
.video-quote-section {
    background: white;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #45546ce6;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
    padding-left: 5px;
    /* Visual centering of play icon */
}

.dentist-tag {
    position: absolute;
    bottom: 25px;
    background: white;
    padding: 8px 15px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dentist-tag span {
    display: block;
    font-size: 0.8rem;
    color: #0b3d59;
    font-weight: 700;
    text-transform: capitalize;
}

.dentist-left {
    left: 20px;
}

.dentist-right {
    right: 20px;
}

.green-quote-box {
    background: #45546ce6;
    color: white;
    padding: 70px 45px;
    border-radius: 10px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -4rem !important;
}

.green-quote-box i.quote-icon {
    font-size: 6rem;
    position: absolute;
    top: -30px;
    left: 20px;
    color: rgba(255, 255, 255, 0.2);
}

.green-quote-box p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
}

.green-quote-box .author {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
}

/* Consult Section */
.consult-section {
    padding: 120px 0;
    background: white;
}

.consult-list {
    list-style: none;
    padding: 0;
}

.consult-list li {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
}

.consult-list li i {
    color: #45546ce6;
    margin-right: 20px;
    font-size: 1.6rem;
}

.consult-images-collage {
    display: flex;
    gap: 20px;
}

.collage-stacked {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-main-vertical {
    flex: 1;
}

.consult-images-collage img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.collage-stacked img {
    height: 260px;
}

.collage-main-vertical img {
    height: 540px;
}

@media (max-width: 991px) {
    .consult-images-collage {
        margin-top: 50px;
    }

    .collage-stacked img,
    .collage-main-vertical img {
        height: auto;
    }
}

@media (max-width: 575px) {
    .consult-images-collage {
        flex-direction: column;
    }
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.process-number {
    background: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 25px;
}

.process-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}


/* Patient Stories Section */
.patient-stories-section {
    background: white;
}

.patient-stories-section h2 {
    font-size: 3rem;
    font-weight: 700;
}

.patient-stories-section .lead {
    font-size: 1.35rem;
    color: #666;
}

.story-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: left;
    background: #f0f6f7;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

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

.story-thumbnail {
    position: relative;
    overflow: hidden;
}

.story-thumbnail img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 1.5rem;
}

.story-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 25px;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

/* Video Modal Overrides */
#videoModal .modal-dialog {
    max-width: 900px;
}

#videoModal .btn-close {
    opacity: 1;
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonial-card {
    background: var(--review-bg);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-images {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .top-header .col-6 {
        width: 100%;
        text-align: center !important;
        margin-bottom: 10px;
    }

    .logo {
        margin-bottom: 5px;
    }

    .top-header .btn-green {
        font-size: 0.9rem;
        padding: 8px 15px;
        width: auto;
        display: inline-block;
    }

    .phone-link {
        display: block;
        margin: 5px 0;
        font-size: 1rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 25px;
    }
}

@media (max-width: 400px) {
    .top-header .btn-green {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }
}

/* Pricing & Consult Section */
.pricing-consult-section {
    overflow: hidden;
}

.pricing-left-col {
    background: url('../images/landing-page/dentists.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 120px 80px;
    z-index: 1;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.pricing-left-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.limited-badge-offer {
    background: #FF0000;
    color: white;
    padding: 6px 15px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    border-radius: 2px;
}

.include-item-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    height: 100%;
}

.include-item-box i {
    color: #45546ce6;
    font-size: 2.5rem;
    margin-right: 20px;
}

.pricing-right-col {
    background: #E5E5E5;
    padding: 100px 70px;
    display: flex;
    align-items: center;
}

.pricing-right-content {
    width: 100%;
}

.price-item-row {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
    transition: transform 0.3s ease;
}

.price-item-row:last-child {
    margin-bottom: 0;
}

.price-img-box {
    flex-shrink: 0;
    width: 140px;
}

.price-img-box img {
    max-width: 100%;
    height: auto;
}

.price-info-content {
    flex-grow: 1;
}

.price-info-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0b3d59;
}

.price-info-content p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.prices-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.old-price-tag {
    text-decoration: line-through;
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
}

.new-price-tag {
    color: #FF0000;
    font-size: 2.2rem;
    font-weight: 800;
}

.neodent-logo {
    margin-top: 60px;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #0b3d59;
}

@media (max-width: 1200px) {
    .pricing-left-col {
        padding: 80px 40px;
    }

    .pricing-right-col {
        padding: 80px 40px;
    }
}

@media (max-width: 991px) {
    .pricing-left-col {
        min-height: auto;
    }
}

/* Same Day Implants Section */
.same-day-section {
    background: #7a1a5b;
    /* Vibrant purple-pink */
    padding: 100px 0 40px;
    position: relative;
    overflow: visible;
    margin: 0;
}

.schematic-top {
    text-align: center;
    margin-bottom: -80px;
    position: relative;
    z-index: 10;
}

.schematic-top img {
    max-width: 380px;
    height: auto;
}

.white-content-box {
    background: white;
    padding: 100px 80px 80px;
    border-radius: 5px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
}

.white-content-box h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.white-content-box p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .white-content-box {
        padding: 80px 40px 60px;
    }

    .white-content-box h2 {
        font-size: 2.5rem;
    }
}

.schematic-placeholder {
    width: 250px;
    height: 250px;
    background: #EED7B5;
    /* Gold-ish */
    border-radius: 50%;
    margin: 0 auto;
    border: 8px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #6B1D5F;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
}

/* Full Jaw Implants Section */
.full-jaw-section {
    background: url('../images/landing-page/hero.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.full-jaw-card {
    background: white;
    padding: 60px 45px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.full-jaw-card h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.pricing-jaw {
    margin-bottom: 25px;
}

.pricing-jaw .old {
    text-decoration: line-through;
    color: #333;
    font-size: 2rem;
    font-weight: 500;
}

.pricing-jaw .new {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #000;
}

.full-jaw-card p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 35px;
}

.full-jaw-card .btn-green {
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .full-jaw-section {
        min-height: auto;
        padding: 50px 0;
    }

    .full-jaw-card {
        padding: 40px 30px;
    }

    .full-jaw-card h2 {
        font-size: 2.5rem;
    }

    .pricing-jaw .new {
        font-size: 3rem;
    }
}
/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: white;
}

.cta-banner {
    background: #0B3D59;
    padding: 85px 40px;
    border-radius: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 45px rgba(11, 61, 89, 0.15);
}

.cta-banner h2 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-banner p {
    font-size: 1.6rem;
    margin-bottom: 45px;
    font-weight: 400;
}

.cta-banner .btn-green {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1px solid white;
}

@media (max-width: 991px) {
    .cta-banner {
        padding: 60px 20px;
        border-radius: 25px;
    }
    .cta-banner h2 {
        font-size: 2.5rem;
    }
    .cta-banner p {
        font-size: 1.2rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: url('../images/landing-page/dentists.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
}

.why-choose-card {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.why-choose-card h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-choose-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px;
}

.why-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #E6F7F0;
    color: #45546ce6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.why-list span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b3d59;
}

.why-choose-card .btn-green {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .why-choose-us-section {
        min-height: auto;
        padding: 50px 0;
    }
    .why-choose-card {
        padding: 40px 25px;
    }
    .why-choose-card h2 {
        font-size: 2.8rem;
    }
    .why-list span {
        font-size: 1.1rem;
    }
}

/* Reviews Grid Section */
.reviews-grid-section {
    background: #0B3148; /* Slightly darker navy */
    padding: 120px 0;
    overflow: hidden;
}

.reviews-masonry {
    display: flex;
    gap: 30px;
}

.review-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    color: white;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.2rem;
}

.user-name {
    font-weight: 700;
    font-size: 1.2rem;
    flex-grow: 1;
}

.review-stars {
    color: white;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-mini-card p {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.85;
}

.reviews-cta-content h2 {
    font-size: 4.5rem;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .reviews-masonry {
        flex-direction: column;
    }
    .reviews-cta-content {
        margin-top: 60px;
    }
    .reviews-cta-content h2 {
        font-size: 3rem;
    }
}

/* Before & After Section */
.before-after-section {
    padding: 100px 0;
    background: white;
}

.before-after-section .section-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
}

.before-after-section .section-subtitle {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
    color: #333;
}

.ba-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.ba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ba-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .before-after-section .section-title {
        font-size: 2.8rem;
    }
    .before-after-section .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Our Fees Section */
.fees-section {
    padding: 100px 0;
    background: white;
}

.fees-box {
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    background: white;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.fees-left {
    padding: 80px 60px;
}

.fees-left h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #000;
}

.fees-left p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}

.fees-right {
    background: #0B3D59;
    color: white;
    padding: 15px 15px;
    border-radius: 35px;
    height: calc(100% - 20px);
}

.fees-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fees-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 0;
}

.fees-list li:last-child {
    border-bottom: none;
}

.fees-list .item-name {
    font-size: 1.85rem;
    font-weight: 700;
}

.fees-list .item-price {
    font-size: 1.2rem;
    text-align: right;
}

.fees-list .item-price del {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1.6rem;
    margin-right: 12px;
}

.fees-list .item-price strong {
    font-size: 2.2rem;
    font-weight: 800;
}

@media (max-width: 991px) {
    .fees-left {
        padding: 50px 30px;
        text-align: center;
    }
    .fees-right {
        margin: 10px;
        padding: 40px 20px;
    }
    .fees-list .item-name {
        font-size: 1.2rem;
    }
    .fees-list .item-price strong {
        font-size: 1.5rem;
    }
}

/* Surgeon Section */
.surgeon-section {
    background: #f0f6f7;
    padding: 120px 0;
}

.surgeon-name {
    font-size: 4rem;
    font-weight: 800;
    color: #000;
}

.surgeon-titles {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 15px;
}

.surgeon-profile-box {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.surgeon-image-collage {
    background: #cadde2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion h2 {
 background: none !important;
}
.surgeon-image-collage img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.surgeon-badge {
    background: #45546ce6;
    color: white;
    padding: 35px 40px;
}

.surgeon-badge h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.surgeon-badge p {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.surgeon-badge span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.surgeon-bio p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 35px;
}

.bio-list {
    list-style: none;
    padding: 0;
}

.bio-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
}

.bio-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 800;
    color: #000;
}

@media (max-width: 991px) {
    .surgeon-name {
        font-size: 2.5rem;
    }
    .surgeon-titles {
        font-size: 1.1rem;
    }
    .surgeon-badge h3 {
        font-size: 1.8rem;
    }
}

/* Logo Section */
.logos-section {
    background: #f0f6f7;
    padding: 100px 0 60px;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.logo-item img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) opacity(0.7); /* Professional dark grey logos */
}

/* Training (World's Best) Section */
.training-section {
    background: #f0f6f7;
    padding-bottom: 0;
}

.training-white-box {
    background: #fff;
    padding: 100px 50px 80px;
    border-radius: 40px 40px 0 0;
    text-align: center;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
}

.training-white-box h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 25px;
}

.training-white-box p {
    font-size: 1.6rem;
    color: #333;
    opacity: 0.9;
}
/* FAQ Accordion – replace chevron with + / - */
.accordion-button::after {
    content: "+";
    font-family: inherit;
    background-image: none !important;
    font-size: 1.5rem;
    font-weight: bold;
    transform: none !important;
    transition: all 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none !important;
}
@media (max-width: 991px) {
    .logo-grid {
        justify-content: center;
    }
    .training-white-box h2 {
        font-size: 2.5rem;
    }
    .training-white-box p {
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button {
    background: #f0f6f7 !important;
    color: #000 !important;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 25px 30px;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #45546ce6 !important;
    color: white !important;
}

.accordion-button::after {
    display: none; /* Hide default arrow */
}

/* Custom Plus/Minus on right */
.accordion-button::before {
    content: "+";
    position: absolute;
    right: 30px;
    width: 28px;
    height: 28px;
    background: #576171;
    color: #cadde2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 400;
}

.accordion-button:not(.collapsed)::before {
    content: "-"; /* Using square icon for active */
    background: white;
}

.accordion-body {
    padding: 40px 30px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 991px) {
    .faq-title {
        font-size: 4rem !important;
    }
    .accordion-button {
        font-size: 1.1rem;
        padding: 20px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: white;
}

.final-cta-box {
    background: #0B3D59;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.15);
}

.map-container {
    height: 100%;
    min-height: 550px;
    position: relative;
    background: #e5e3df;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-address-card {
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
}

.map-address-card p {
    margin: 0;
    color: #444;
    font-size: 1.35rem;
    font-weight: 600;
}

.final-cta-content {
    padding: 80px 70px;
}

.final-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
}

.final-cta-content p.lead-text {
    font-size: 1.5rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

.cta-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.cta-bullets li {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.cta-bullets li i.check-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #45546ce6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45546ce6;
    margin-right: 20px;
    font-size: 1rem;
    font-style: normal;
}

.btn-white-call {
    background: white;
    color: #45546ce6;
    padding: 18px 35px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
margin-top: 1rem;
}

.btn-white-call:hover {
    background: #f8f8f8;
    color: #45546ce6;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .final-cta-content {
        padding: 50px 30px;
        text-align: center;
    }
    .final-cta-content h2 {
        font-size: 2.8rem;
    }
    .cta-bullets li {
        justify-content: center;
        font-size: 1.1rem;
    }
    .map-container {
        min-height: 400px;
    }
    .map-address-card p {
        font-size: 1rem;
    }
}

/* Footer */
.site-footer {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.footer-copy {
    font-size: 1.1rem;
    color: #333;
    letter-spacing: 0.3px;
}

.footer-cookies {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.site-footer a {
    color: #45546ce6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #45546ce6;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-copy {
        font-size: 0.9rem;
    }
    .footer-cookies {
        font-size: 0.85rem;
    }
}
