body {
    background-color: #fefcfa;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    padding: 1.2rem;
    background: #f8f8f6;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 140px;

    max-width: 1400px;
    margin: 0 auto;

    background: #fdfdfc;
    border-radius: 30px;
    overflow: hidden;

    min-height: 500px;
}

/* ============================= */
/* LEFT CONTENT */
/* ============================= */

.hero-right {
    width: 48%;
    padding: 4rem;
}

.hero-subtext {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1BA39C;

    margin-bottom: 1rem;
}

.hero-heading {
    font-size: 3.8rem;
    line-height: 1.1;

    color: #122b45;
    margin-bottom: 1.5rem;
    font-family: 'Times New Roman', serif;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;

    color: #5f6770;

    max-width: 520px;
    margin-bottom: 2rem;
}

/* ============================= */
/* BUTTONS */
/* ============================= */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.8rem 1.6rem;
    margin-right: 1rem;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s ease;
}

/* First button */
.hero-button:first-of-type {
    background: #1BA39C;
    color: white;
}

.hero-button:first-of-type:hover {
    background: #1ba39cd4;
}

/* Second button */
.hero-button:last-of-type {
    border: 2px solid #1BA39C;
    color: #2d3945;
    background: white;
}

.hero-button:last-of-type:hover {
    background: #f3f7f2d1;
}

/* ============================= */
/* HERO VIDEO */
/* ============================= */
/* Video */
.clinic-video {
    display: flex;
    justify-content: center;
}

.clinic-video video {
    width: 100%;
    max-width: 400px;
    height: auto;

    border-radius: 25px;
    display: block;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 992px) {

    .hero-container {
        flex-direction: column;
    }

    .hero-right,
    .hero-image {
        width: 100%;
    }

    .hero-right {
        padding: 2rem;
    }

    .hero-heading {
        font-size: 2.8rem;
    }

    .clinic-video video {
        height: 420px;
    }

    .hero-button {
        width: 100%;
        margin-bottom: 1rem;
    }
}



/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about {
    padding: 2rem 2rem;
    background: #f8f8f6;
}

.about-container {
    display: flex;
    align-items: stretch;

    max-width: 1400px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

/* ============================= */
/* IMAGE SIDE */
/* ============================= */

.about-right {
    width: 34%;
}

.about-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

/* ============================= */
/* TEXT SIDE */
/* ============================= */

.about-left {
    width: 62%;
    padding: 2rem 4rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-size: 3rem;
    color: #122b45;

    margin-bottom: 1.5rem;

    font-family: 'Times New Roman', serif;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;

    color: #4d5863;

    margin-bottom: 1.2rem;

    max-width: 700px;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.about-left a {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-top: 1rem;

    text-decoration: none;

    background: #1BA39C;
    color: white;

    padding: 1rem 1.8rem;

    border-radius: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}

.about-left a:hover {
    background: #1ba39cd4;
    transform: translateY(-2px);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 900px) {

    .about-container {
        flex-direction: column;
    }

    .about-right,
    .about-left {
        width: 100%;
    }

    .about-image {
        height: 300px;
    }

    .about-left {
        padding: 2rem;
    }

    .about-heading {
        font-size: 2.4rem;
    }
}


/* ============================= */
/* WHY CHOOSE US */
/* ============================= */
.why-us {
    padding: 2rem 2rem;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 8px;

    padding: 3rem 2rem;

    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

/* ============================= */
/* HEADING */
/* ============================= */
.why-heading {
    text-align: center;

    font-size: 2.8rem;
    color: #122b45;

    margin-bottom: 3rem;

    font-family: 'Times New Roman', serif;
}

/* ============================= */
/* GRID */
/* ============================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

/* ============================= */
/* CARD */
/* ============================= */
.why-card {
    text-align: center;
}

.why-card i {
    font-size: 2.4rem;
    color: #1BA39C;

    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    line-height: 1.5;

    color: #243447;

    margin-bottom: 0.8rem;

    font-family: 'Times New Roman', serif;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.8;

    color: #5d6670;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 1100px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-heading {
        font-size: 2.3rem;
    }
}


/* ============================= */
/* FEES SECTION */
/* ============================= */
.fees-section {
    padding: 2rem 2rem;
}

.fees-container {
    max-width: 1300px;
    margin: 0 auto;
}

.fees-header,
.specialist-header {
    margin-bottom: 35px;
}

.fees-header h2,
.specialist-header h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #122b45;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
}

.fees-header p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    max-width: 600px;
    text-align: center;
    justify-self: center;
}

/* TOP FEE CARDS */
.fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 35px;
}

.fee-card,
.specialist-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(20,54,90,0.08);
}

.fee-card h3,
.specialist-card h3 {
    font-size: 1.5rem;
    color: #14365a;
    margin-bottom: 14px;
    font-family: 'Times New Roman', Times, serif;
}

.fee-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.fee-meta strong {
    font-size: 2.5rem;
    color: #1BA39C;
    font-family: 'Times New Roman', Times, serif;
}

.fee-meta span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

.fee-card hr,
.specialist-card hr {
    border: none;
    height: 1px;
    background: rgba(20,54,90,0.15);
    margin: 22px 0;
}

.fee-card p,
.specialist-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.fee-card ul,
.specialist-card ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.fee-card li,
.specialist-card li {
    margin-bottom: 11px;
    line-height: 1.6;
    color: #333;
}

.fee-card li::before,
.specialist-card li::before {
    content: "✓";
    color: #1BA39C;
    font-weight: 700;
    margin-right: 10px;
}

.fee-card,
.specialist-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.fee-card:hover,
.specialist-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.12);

    border-color: rgba(23,111,97,0.25);
}

.fee-card,
.specialist-card {
    position: relative;
    overflow: hidden;
}

.fee-card::before,
.specialist-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #1BA39C;

    transition: width 0.35s ease;
}

.fee-card:hover::before,
.specialist-card:hover::before {
    width: 100%;
}

/* SPECIALIST BOX */
.specialist-box {
    border-radius: 28px;
    padding: 42px;
    margin-top: 45px;
}

.specialist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.surgery-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.surgery-price span {
    color: #1BA39C;
    font-weight: 600;
}

.surgery-price strong {
    color: #1BA39C;
    font-size: 2.4rem;
    font-family: 'Times New Roman', Times, serif;
}

/* MOBILE */

@media (max-width: 1000px) {
    .fees-grid,
    .specialist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .fees-section {
        padding: 70px 6%;
    }

    .fee-card,
    .specialist-card,
    .specialist-box {
        padding: 26px;
    }

    .fee-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .fees-btn {
        width: 100%;
        text-align: center;
    }
}


/* ============================= */
/* TESTIMONIALS */
/* ============================= */
.testimonials {
    padding: 1rem 2rem;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 8px;

    padding: 3rem 2rem;

    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.testimonials-heading {
    text-align: center;

    font-size: 2.8rem;
    color: #122b45;

    margin-bottom: 3rem;

    font-family: 'Times New Roman', serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;

    border: 1px solid #ececec;
    border-radius: 12px;

    padding: 2rem;

    text-align: center;

    box-shadow: 0 2px 10px rgba(0,0,0,0.04);

    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card i {
    font-size: 2rem;
    color: #1BA39C;

    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.9;

    color: #4d5863;

    margin-bottom: 1.5rem;
}

.testimonial-name {
    color: #243447;

    font-size: 1rem;
    font-weight: 600;

    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #d4a937;

    font-size: 1.2rem;

    letter-spacing: 4px;
}

.no-testimonials {
    text-align: center;
    color: #666;
}

@media (max-width: 900px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-heading {
        font-size: 2.3rem;
    }
}