:root {
    --primary-color: #0B5A8F;
    --secondary-color: #6BA539;
    --dark-color: #083E63;
    --light-color: #EAF4FB;
    --white-color: #FFFFFF;
    --text-color: #333333;
}


body {
    color: var(--text-color);
    background: #fff;
}

h1,
h2 {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.highlight {
    color: var(--secondary-color);
}


.top-header {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.top-left a {
    color: var(--white-color);
    margin-right: 12px;
}

.top-left a:hover {
    color: var(--secondary-color);
}

.top-right span {
    margin-left: 15px;
    font-weight: 600;
}

.custom-navbar {
    background: var(--white-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 16px;
    margin: 0 10px;
    color: var(--text-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* BUTTON */
.appoint-btn {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

.appoint-btn:hover {
    background: var(--primary-color);
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    font-size: 22px;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* MOBILE */
@media (max-width: 991px) {

    .top-header {
        text-align: center;
        font-size: 13px;
    }

    .top-right span {
        display: block;
        margin: 5px 0;
    }

    .navbar-nav {
        margin-top: 10px;
        align-items: flex-start;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .appoint-btn {
        display: none;
    }
}


/********************** HERO SECTION *********************/

.hero-banner {
    padding: 0px 0;
    background: linear-gradient(135deg, rgb(11 90 143), rgb(11 90 143));
    border-radius: 30px;
    margin: 40px 20px;
}

.hero-badge {
    background: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    background: var(--secondary-color);
}

.hero-btn :hover {
    background: var(--dark-color);
}

.hero-doctor-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.rating-box {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.google-rating {
    top: 120px;
    right: 40px;
}

.surgery-rating {
    bottom: 50px;
    right: 70px;
}

.rating-box img {
    width: 30px;
}

.rating-box i {
    font-size: 22px;
    color: var(--primary);
}


@media(max-width:991px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-banner {
        padding: 60px 20px;
        padding-bottom: 0;
    }

    .rating-box {
        position: relative;
        margin-top: 15px;
    }

}



/******** Counter Section ********/

.counter-section {
    padding: 40px 0;
    background: #ffffff;
}

.counter-card {
    /* background: rgba(0, 165, 143, 0.08); */
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.counter-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-icon {
    font-size: 36px;
    color: #ffffff;
}

.counter-number {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.counter-content p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}


@media(max-width:768px) {

    .counter-section {
        padding: 40px 0;
    }

    .counter-card {
        padding: 20px;
    }

    .counter-number {
        font-size: 26px;
    }

    .counter-icon {
        font-size: 28px;
    }

    .counter-flex {
        gap: 12px;
    }

    .counter-content p {
        font-size: 14px;
    }

}



/************* ABOUT DOCTOR ************/

.about-doctor-section {
    padding: 90px 0;
    background: #f9fbfc;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 30px;
    color:#fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.about-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-doctor-img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about-bg-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgb(11 90 143);
    border-radius: 20px;
    top: -20px;
    left: -20px;
    z-index: 1;
}

@media(max-width:991px) {

    .about-title {
        font-size: 32px;
    }

    .about-doctor-img {
        max-width: 320px;
        margin-bottom: 30px;
    }

    .about-doctor-section {
        padding: 60px 20px;
    }

}



/******** UROLOGY TREATMENTS ********/
.treatment-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-desc {
    max-width: 800px;
    margin: auto;
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

.treatment-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: .3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.treatment-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
}

.treatment-title {
    font-size: 17px;
    font-weight: 700;
    color: #1D2A4D;
    margin: 0;
    line-height: 1.3;
}

.treatment-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.treatment-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #bfe6df;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

.all-specialities-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.all-specialities-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .treatment-card {
        padding: 18px;
    }

    .treatment-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .treatment-title {
        font-size: 15px;
    }

}


.video-section {
    padding: 80px 0;
    background: #f9fbfc;
}

.video-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.video-desc {
    color: #666;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.video-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

.video-btn:hover{
    background: var(--primary-color);
}

@media(max-width:768px) {
    .video-title {
        font-size: 30px;
    }

    .video-text {
        font-size: 16px;
    }

}




/* ===============================
   SUCCESS STORIES SECTION
================================ */


.success-stories {
    padding: 100px 0;
    background: #ffff;
    text-align: center;
}

.stories-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stories-subtitle {
    color: #555;
    margin-bottom: 70px;
    font-size: 16px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background: #fff;
    padding: 40px 35px 30px;
    border-radius: 25px;
    border: 1px solid #f3c4cf;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(179, 8, 56, 0.08);
}

.stars {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 25px;
}

.story-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.story-footer {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.avatar {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
}

.avatar.initials {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.story-footer h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.story-footer span {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 992px) {

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .success-stories {
        padding: 60px 20px;
    }

    .stories-title {
        font-size: 28px;
    }

    .story-card {
        padding: 30px 25px;
    }

}


/* ===============================
   SPINE VIDEO SECTION
================================ */

.spine-video-section {
    background: var(--dark-color);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.spine-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.spine-video-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.spine-video-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 70px;
}

.spine-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.spine-video-card {
    text-align: left;
}

.spine-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 20px;
}

.spine-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.spine-video-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

.spine-video-btn-wrap {
    margin-top: 60px;
}

.spine-video-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #25245c;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.spine-video-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .spine-video-grid {
        grid-template-columns: 1fr;
    }

    .spine-video-title {
        font-size: 28px;
    }

    .spine-video-card h3 {
        font-size: 16px;
    }
}





/* ===============================
   DOCTOR CHOOSE SECTION
================================ */

.doctor-choose-section {
    background: var(--dark-color);
    padding: 100px 0;
    color: #fff;
}

.doctor-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */

.doctor-content h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}

.doctor-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: justify;
}

.doctor-points,
.doctor-points ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.doctor-points li {
    list-style: none !important;
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #fff;
}

.doctor-points li::marker {
    content: "" !important;
}

.doctor-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--secondary-color);
}

.doctor-points li::after {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0px;
    width: 26px;
    height: 26px;
    background: #fff;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    color: #000;
}

.doctor-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.doctor-form-box input,
.doctor-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.doctor-form-box form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.doctor-form-box button {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.doctor-form-box button:hover {
    background: var(--primary-color);
}


@media (max-width: 992px) {

    .doctor-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .doctor-content h2 {
        font-size: 30px;
    }

    .doctor-form-box {
        padding: 30px;
    }
}



/* ===============================
   BLOG SECTION
================================ */

.blog-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 70px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.4;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.calendar-icon {
    font-size: 16px;
}

.blog-btn-wrap {
    margin-top: 50px;
}

.blog-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 16px;
    }
}




/* ===============================
   FAQ SECTION
================================ */

.faq-section {
    background: #ffffff;
    padding: 100px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image */

.faq-image img {
    width: 100%;
    border-radius: 35px;
    object-fit: cover;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--primary-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}


.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
}

.faq-item.active .faq-icon::before {
    content: "−";
}

.faq-item.active .faq-icon {
    font-size: 20px;
}

@media (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }
}


/* =========================
   MAIN FOOTER
========================= */

.main-footer {
    background: var(--dark-color);
    color: #ffffff;
}

.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.footer-top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo img {
    width: 250px;
    filter: brightness(0) invert(1);
}

.footer-heading h3 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #fff;
    color: #25245c;
}

.arrow-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #25245c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col p {
    font-size: 14px;
    color: #dcdcdc;
    margin-bottom: 12px;
}

.footer-col p a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-col p a:hover {
    color: #fff;
}

.footer-col i {
    margin-right: 10px;
    color: #fdfdfd;
    font-size: 18px;
}
.footer-map {
    margin-top: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.footer-bottom-flex a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom-flex a:hover {
    color: #fff;
    text-decoration: underline;
}
hr {
    width: 120px;
    opacity: 0.5;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .footer-top-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .footer-heading h3 {
        font-size: 20px;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-map iframe {
        height: 200px;
    }
}




/* ================= Mdal Form ================= */

.consultation-modal .modal-dialog {
    max-width: 500px;
}

.consultation-modal .modal-content {
    border-radius: 26px;
    padding: 35px 32px;
    border: none;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORCE ONE COLUMN LAYOUT */
.modal-form-fix .row {
    display: block !important;
}

.modal-form-fix [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-form-fix input,
.modal-form-fix select,
.modal-form-fix textarea {
    width: 100% !important;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px !important;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.modal-form-fix input:focus,
.modal-form-fix select:focus {
    border-color: #3d6de0;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61,109,224,0.1);
}

.modal-form-fix select {
    height: 52px;
}

.modal-form-fix button,
.modal-form-fix input[type="submit"] {
    width: 100%;
    border: none;
    height: 52px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    background: var(--secondary-color);
    color: #fff;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.modal-form-fix button:hover,
.modal-form-fix input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61,109,224,0.3);
    background: var(--primary-color);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .consultation-modal .modal-content {
        padding: 25px 20px;
    }
}



