/* ----- FULL WIDTH RESETS & GLOBAL (allowed inside this specific page context) ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
}

/* FULL WIDTH LAYOUT - each section spans 100vw relative to viewport */
.lp-full-section {
    width: 100%;
    position: relative;
}

/* inner content wrapper maintains max-width for readability but background is edge-to-edge */
.lp-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.lp-section {
    padding: 5rem 0;
}

/* alternate backgrounds already full width by nature */
.lp-bg-alt {
    background-color: #f5f5dc;
}

.lp-bg-soft {
    background-color: #ffffff;
}

.footer-link {
    display: flex;
    flex-wrap: wrap;
}

.footer-link li {
    width: 50%;
}

/* split layout */
.lp-split {
    display: flex;
    align-items: start;
    gap: 3rem;
    flex-wrap: wrap;
}

.lp-split__content {
    width: 48%;
}

.lp-split__media {
    position: sticky;
    width: 48%;
    top: 140px;
}

.lp-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: #0c193e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lp-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #2c2c2e;
    margin-bottom: 2rem;
    text-align: justify;
}

/* bullet cards */
.lp-bullet-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-bullet-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 20px;
    padding: 0.9rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.05);
    cursor: default;
}

.lp-bullet-card:hover {
    transform: translateX(8px);
    border-color: #c21048;
    box-shadow: 0 15px 25px -12px rgba(194, 16, 72, 0.12);
}

.lp-badge {
    width: 38px;
    height: 38px;
    background-color: #c21048;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    flex-shrink: 0;
}

.lp-bullet-text {
    font-weight: 500;
    color: #0c193e;
    font-size: 1rem;
}

/* abstract image styles */
.lp-media-abstract {
    position: relative;
    border-radius: 28px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-abstract-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle at 30% 40%, rgba(194, 16, 72, 0.08), rgba(73, 142, 34, 0.05), rgba(12, 25, 62, 0.02));
    filter: blur(40px);
    border-radius: 60% 40% 50% 50%;
    z-index: 0;
    animation: floatBlob 8s infinite alternate ease-in-out;
}

.lp-abstract-bg-two {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(73, 142, 34, 0.1), rgba(194, 16, 72, 0.02));
    filter: blur(50px);
    border-radius: 40% 60% 70% 30%;
    top: 20%;
    left: -10%;
    z-index: 0;
    animation: floatBlob2 10s infinite alternate;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(15px, -15px) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-10px, 10px) rotate(5deg);
    }
}

.lp-abstract-img {
    position: relative;
    z-index: 2;
    /* background: #ffffffcc; */
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: 0.5rem;
    /* box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2); */
    width: 100%;
    /* max-width: 480px; */
    margin: 0 auto;
}

/* The Dashed Outline Box */
.lp-abstract-img::before {
    content: '';
    position: absolute;
    top: -30px;
    /* Adjust distance to top */
    right: -30px;
    /* Adjust distance to right */
    width: 100%;
    height: 100%;
    border: 1px dashed #d1d1d1;
    border-radius: 32px;
    z-index: -1;
}

/* The Striped Pattern Box (Bottom Right) */
.lp-abstract-img::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    /* Creates the diagonal stripe pattern */
    /* background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        #f0f0f0 10px,
        #f0f0f0 11px
    ); */
    z-index: -2;
}

.lp-abstract-img img {
    width: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
}

/* --- Desktop/Base styles remain as you provided, then add these media queries below --- */
.bg-tab {
    background-color: #f5f5dc;

}

@media (max-width: 1024px) {

    .feedback-shell {
        grid-template-columns: 1fr;
    }

    .contact-container {
        width: 80%;
    }

    .lp-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .contact {
        padding: 10px 0px !important;
    }

    .contact-container {
        width: 90%;
    }

    .lp-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .lp-desc {
        text-align: center;
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Adjust the abstract image offsets so they don't break the container width */
    .lp-abstract-img::before {
        top: -15px;
        right: -15px;
    }

    .lp-abstract-img::after {
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
    }

    /* Stack the split layout if your HTML uses flex-direction: row-reverse */
    /* Ensure the parent container of your HTML snippet handles flex-wrap */
    .lp-split {
        flex-direction: column-reverse !important;
        /* Forces image on top or bottom as per preference */
        gap: 3rem;
    }

    .lp-split__media {
        position: relative;
        width: 100%;
        top: unset !important;
    }

    .lp-split__content {
        width: 100%;
    }
}

@media (max-width: 480px) {


    .feedback-contact-item {
        flex-direction: column;
    }

    .lp-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .lp-bullet-card {
        padding: 0.7rem 1rem;
        gap: 0.8rem;
    }

    .lp-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .lp-bullet-text {
        font-size: 0.9rem;
    }

    /* Prevent decorative blobs from taking up too much processing power/space on tiny screens */
    .lp-abstract-bg,
    .lp-abstract-bg-two {
        width: 100%;
        filter: blur(30px);
    }

    /* Reduce the offsets further for small phones to prevent horizontal scroll */
    .lp-abstract-img::before {
        top: -10px;
        right: -10px;
        border-radius: 24px;
    }

    .lp-abstract-img::after {
        display: none;
        /* Often better to hide complex patterns on very small screens for clarity */
    }

    .lp-bullet-card:hover {
        transform: translateX(5px);
        /* Subtle shift for mobile touch */
    }
}
@media (max-width: 400px) {
    .page-header-content {
        text-align: center;
    }
         .breadcrumb-item {
        font-size: 0.55rem;
    }
}
/* ENHANCED SURGERY CARDS */
.lp-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.lp-service-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem 1.2rem;
    text-align: center;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e7;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(194, 16, 72, 0.03), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.lp-service-card:hover::before {
    opacity: 1;
}

.lp-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 32px 48px -20px rgba(0, 0, 0, 0.25);
    border-color: #c2104866;
}

.lp-service-icon {
    font-size: 2.9rem;
    color: #498e22;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.lp-service-card:hover .lp-service-icon {
    transform: scale(1.08);
    color: #c21048;
}

.lp-service-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0c193e;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.lp-service-card:hover .lp-service-title {
    color: #c21048;
}

.lp-service-desc {
    font-size: 0.9rem;
    color: #4a4a4f;
    line-height: 1.4;
}

/* ENHANCED DOCTOR CARDS */
.lp-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.lp-doctor-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(229, 229, 231, 0.7);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lp-doc-img-wrapper {
    height: 320px;
    width: 100%;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

.lp-doc-actual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: #ffeceb;
}

/* Immersive Overlay Gradient */
.lp-doc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(12, 25, 62, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lp-doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 60px -20px rgba(12, 25, 62, 0.15);
    border-color: #c2104844;
}

.lp-doctor-card:hover .lp-doc-actual-img {
    transform: scale(1.08);
}

.lp-doctor-card:hover .lp-doc-overlay {
    opacity: 1;
}

.lp-doc-info {
    padding: 1.5rem;
    text-align: left;
    /* Modern left alignment */
    background: #fff;
    position: relative;
}

.lp-doc-name {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c193e;
    margin-bottom: 0.2rem;
}

.lp-doc-specialty {
    color: #c21048;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.lp-doc-schedule {
    font-size: 0.95rem;
    color: #6c6c70;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 12px;
}
.lp-doc-schedule-min-h {
    min-height: 100px;
}
/* Container */

.custom-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

/* Main Layout */
.essential-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-direction: column;
}

/* Left Side */

.essential-left {
    width: 100%;
}

.about-img-1 {
    border-radius: 20px;
    overflow: hidden;
}

.about-img-1 img {
    width: 100%;
    display: block;
}

/* Right Side */

.essential-right {
    width: 100%;
}

/* Heading */


.animated-heading {
    font-size: 42px;
    margin-bottom: 30px;
}

/* Info List */

.essential-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.essential-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.essential-info-item p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    width: fit-content;
}

.pricing-list p {
    font-size: 20px;
    font-weight: 500 !important;
}

/* Responsive */

@media(max-width: 991px) {

    .essential-wrapper {
        flex-direction: column;
    }

    .essential-left,
    .essential-right {
        width: 100%;
    }

    .essential-left {
        position: relative;
        top: 0;
    }

    .animated-heading {
        font-size: 32px;
    }
}

.lp-doc-schedule:nth-child(:last-child) {
    min-height: 100px;
}

.schedule-label {
    font-weight: 700;
    color: #498e22;
    /* Use your brand green */
}

/* Accent element for "Immersive" feel */
.lp-doctor-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: #c21048;
    transition: height 0.4s ease;
}

.header-button2 {
    width: 100%;
    padding: 14px;
    background-color: #fff;
    color: #498e22;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: "Playfair Display", serif;
    border: 1px solid #498e22;
}

.header-button2:hover {
    background-color: #498e22;
    color: #fff;
}


.lp-doctor-card:hover::after {
    height: 100%;
}

/* --- FAQ --- */
.fellowship-section {
    padding: 80px 20px 130px 20px;
    /* background-color: #ffeceb; */
    /* background-image:
                        linear-gradient(rgba(255, 236, 235, 0.92), rgba(255, 236, 235, 0.92)),
                        url('../assets/images/bgfp.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 100vh;
}

/* --- Header --- */
.fellowship-header {
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

.fellowship-tag {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #498e22;
    font-weight: 700;
    font-size: .85rem;
    background: rgba(73, 142, 34, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.fellowship-title {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: #0c193e;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.fellowship-title span {
    color: #c21048;
}

/* --- Accordion --- */
.fellowship-accordion {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.accordion-item {
    border-radius: 20px;
    cursor: pointer;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.accordion-item.active {
    grid-template-rows: auto 1fr;
}

/* --- Themes & Shadow Logic --- */
.card-primary {
    border: 2px solid #0c193e;
    box-shadow: 6px 6px 0 #0c193e;
    color: #0c193e;
}

.card-dark {
    background: rgba(12, 25, 62, 0.98);
    border: 2px solid #498e22;
    box-shadow: 6px 6px 0 #498e22;
    color: #ffffff;
}

.accordion-trigger {
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
}

.card-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.3;
}

/* --- Modern Button --- */
.icon-btn {
    width: 45px;
    height: 45px;
    border: 2px solid currentColor;
    background: white;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 currentColor;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.card-dark .icon-btn {
    background: #0c193e;
}

.icon-btn span {
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: currentColor;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.icon-btn span:nth-child(2) {
    transform: rotate(90deg);
}

.accordion-item.active .icon-btn {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 currentColor;
}

.accordion-item.active .icon-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.accordion-item.active .icon-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

/* --- Content --- */
.accordion-inner {
    overflow: hidden;
    padding: 0 40px;
}

.card-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-bottom: 25px;
    opacity: 0.9;
}

.card-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px 0 35px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card-dark .card-meta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 15px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
}

.card-dark .meta-item {
    background: rgba(255, 255, 255, 0.08);
}

.meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.6;
}

.meta-value {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.premium-label {
    background: #c21048;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 600px) {

    .lp-doc-schedule {
        min-height: fit-content !important;
    }

    .card-meta {
        grid-template-columns: 1fr;
    }

    .accordion-trigger {
        padding: 20px;
    }
}

/* responsiveness */
@media (max-width: 1100px) {
    .lp-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-split {
        flex-direction: column;
    }

    .lp-grid-cards {
        grid-template-columns: 1fr !important;
    }

    .lp-section {
        padding: 3rem 0;
    }

    .lp-title {
        font-size: 2rem;
        text-align: center;
    }

    .lp-wrapper {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .lp-doc-grid {
        grid-template-columns: 1fr;
    }
}

.lp-text-accent {
    color: #c21048;
}

/* optional extra polish: full width safe area */
.lp-container-full {
    width: 100%;
    /* overflow-x: hidden; */
}


.contact {
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #fafafa;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 10px 50px 10px;
}

.animated-heading2 {
    padding: 20px;
}

.contact-info-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card-top {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.info-card-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff80ab 0%, #f06292 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.info-card-top:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.12);
    border-color: #ffccd5;
}

.info-card-top.active {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.1);
}

.info-card-top:hover::before,
.info-card-top.active::before {
    transform: scaleX(1);
}

.info-icon-top {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    position: relative;
}

.info-card-top:hover .info-icon-top {
    transform: scale(1.1);
}

.info-icon-top i {
    font-size: 40px;
    color: #FF4081;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotateY(180deg);

}

.info-card-top:hover .info-icon-top i {
    color: #d81b60;
}

.info-card-top h3 {
    color: #f06292;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.info-card-top:hover h3 {
    color: #d81b60;
}

.info-card-top p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

.info-card-top a {
    color: #666666;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin: 5px 0;
    position: relative;
    padding-bottom: 2px;
    word-break: break-word;
}

.info-card-top a:hover {
    color: #f06292;
}

.info-card-top a:hover::after {
    width: 100%;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.form-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #fff5f8 100%);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out;
    transform-origin: left;
    border: 1px solid #ffccd5;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

/* GET IN TOUCH BADGE - KEPT GREY AS REQUESTED */
.section-badge {
    display: inline-block;
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s infinite;
    position: relative;
    z-index: 1;
    font-family: "Playfair Display", serif;
}

.form-title {
    color: #f06292;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #FFFFFF;
    color: #333333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.1);
    border-color: #f06292;
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    max-height: 300px;
}

.form-group .error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    align-items: center;
    animation: slideDown 0.3s ease;
    padding: 0;
    text-align: left;

}

.form-group .error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #c2104885;
    background: rgb(255 255 255 / 5%);
}

.form-group.success input,
.form-group.success textarea {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.05);
}

/* SUBMIT BUTTON - KEPT GREEN AS REQUESTED */
.submit-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #43a047 0%, #57a85a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Map Section */
.map-section {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    animation: slideInRight 0.8s ease-out;
    transform-origin: right;
    display: flex;
    flex-direction: column;
    border: 1px solid #ffccd5;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.02) 0%, rgba(240, 98, 146, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.map-header {
    background: linear-gradient(135deg, #FFFFFF 0%, #fff5f8 100%);
    padding: 20px 30px;
    border-bottom: 2px solid #ffccd5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.map-header h3 {
    color: #f06292;
    font-size: clamp(1.2rem, 3vw, 1.3rem);
    font-weight: 700;
}

.map-actions {
    display: flex;
    gap: 10px;
}

.map-header a,
.map-header button {
    color: #f06292;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 16px;
    border-radius: 6px;
    background: #fff5f8;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.map-header a:hover,
.map-header button:hover {
    background: #f06292;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 98, 146, 0.2);
}

.map-header a::after,
.map-header button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.map-header a:hover::after,
.map-header button:hover::after {
    transform: translateX(4px);
}

.map-container {
    height: 520px;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.5s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #fff5f8;
    border-top: 4px solid #f06292;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loading-overlay p {
    color: #f06292;
    font-weight: 600;
}

/* Success/Error Messages */
.success-message,
.error-message {
    display: none;
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.5s ease;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.success-message {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #FFFFFF;
}

.error-message {
    color: #FFFFFF;
    background-color: transparent;
    box-shadow: unset;
}

.success-message::before,
.error-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 15s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

.success-message.show,
.error-message.show {
    display: flex;
}

.message-icon {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    animation: iconPop 0.5s ease;
}

.success-message .message-icon {
    color: #4CAF50;
}

.error-message .message-icon {
    color: #FF5252;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(-30px, -30px) rotate(360deg);
    }
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(108, 117, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(108, 117, 125, 0);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1500px) {
.contact-container {
    max-width: 1300px;
}
}
@media (max-width: 1400px) {
    .contact-container {
        max-width: 1200px!important;
    }
}
@media (max-width: 1300px) {

        #fixed-menu {
        display: none !important;
    }

    .lp-split {
        gap: 1.7rem !important;
    }

}

@media (max-width: 1200px) {

    .footer-link li {
        width: 98%;
    }

    .contact-info-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .contact-info-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-section,
    .map-section {
        animation: slideInLeft 0.8s ease-out;
    }

    .map-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 40px 15px;
    }

    .info-card-top {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-section,
    .map-section {
        padding: 30px 20px;
    }

    .map-header {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .map-actions {
        flex-direction: column;
        width: 100%;
    }

    .map-header a,
    .map-header button {
        width: 100%;
        justify-content: center;
    }

    .map-container {
        height: 400px;
    }

    .submit-btn {
        padding: 14px 30px;
    }

    .footer-1 .footer-bottom .footer-widget-wrap .footer-widget {
        margin-bottom: 50px!important;
    }
    
}

@media (max-width: 576px) {
    .contact-container {
        padding: 30px 10px;
    }

    .form-section,
    .map-section {
        padding: 25px 15px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .section-badge {
        padding: 6px 18px;
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .map-container {
        height: 350px;
    }

    .info-card-top {
        padding: 25px 15px;
    }

    .info-icon-top {
        width: 60px;
        height: 60px;
    }

    .info-icon-top i {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .contact-container {
        padding: 20px 10px;
    }

    .form-section,
    .map-section {
        padding: 20px 15px;
    }

    .map-container {
        height: 300px;
    }

    .success-message,
    .error-message {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .breadcrumb-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .contact-container {
        padding: 20px !important;
    }

    .info-card-top,
    .form-section,
    .map-section {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }

    .form-section {
        background: white !important;
        color: black !important;
    }

    .form-title {
        color: black !important;
    }

    .map-container iframe {
        display: none;
    }

    .map-container::after {
        content: "Map: Juhu, Mumbai, Maharashtra 400049";
        display: block;
        padding: 20px;
        text-align: center;
        background: #f5f5f5;
        border-radius: 8px;
        margin-top: 20px;
    }

    .submit-btn,
    .map-header a,
    .map-header button {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.lp-bullet-card--accordion {
    display: block;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 250, 0.98));
    border: 1px solid rgba(194, 16, 72, 0.12);
    box-shadow: 0 18px 32px -24px rgba(12, 25, 62, 0.28);
    cursor: pointer;
}

.lp-bullet-card--accordion:hover {
    transform: translateX(8px) translateY(-2px);
    border-color: rgba(194, 16, 72, 0.28);
    box-shadow: 0 24px 38px -24px rgba(194, 16, 72, 0.28);
}

.lp-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    text-align: left;
    cursor: pointer;
}

.lp-accordion-text-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.lp-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
}

.lp-bullet-card--accordion:hover .lp-accordion-content,
.lp-bullet-card--accordion:focus-within .lp-accordion-content {
    grid-template-rows: 1fr;
}

.lp-accordion-content-inner {
    overflow: hidden;
    margin: 0 1.2rem;
    padding: 0 1rem 0 4.35rem;
    border-top: 0 solid rgba(194, 16, 72, 0.12);
    color: #4a4a4d;
    font-size: 0.96rem;
    line-height: 1.7;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(194, 16, 72, 0.03));
    border-radius: 16px;
    opacity: 0;
    transform: translateY(-8px);
    transition: padding 0.4s ease, margin 0.4s ease, opacity 0.25s ease, transform 0.35s ease, border-top-width 0.3s ease;
}

.lp-bullet-card--accordion:hover .lp-accordion-content-inner,
.lp-bullet-card--accordion:focus-within .lp-accordion-content-inner {
    margin: 0 1.2rem 1.2rem;
    padding: 1rem;
    border-top-width: 1px;
    opacity: 1;
    transform: translateY(0);
}

.surgery-criteria-list {
    list-style-type: disc;
    padding-left: 20px;
    font-family: "Poppins", sans-serif;
    ;
    color: #52607a;
    font-size: 0.98rem;
}

.surgery-criteria-list li::marker {
    color: #1d2b54;
}

.surgery-criteria-list li {
    margin-bottom: 8px;
    list-style: disc;
}

.grid-2 {
    grid-template-columns: repeat(3, 1fr);
}

.quote {
    font-size: 75px;
    opacity: 0.5;
    height: 10px;
    display: -webkit-inline-box;
    margin-right: 28px;
    position: relative;
    bottom: -15px;
}
