/* ================= ROOT & GENERAL ================= */
:root {
    --primary-color: #e91e63;
    --primary-hover: #d81b60;
    --secondary-color: #000;
    --accent-color: #ff6b9d;
    --topbar-bg: #f8bbd0;
    --light-bg: #ffffff;
    --light-gray: #f5f5f5;
    --text-muted: #555;
    --text-dark: #333;
    --border-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container-fluid {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= TOP HEADER ================= */
.top-header {
    background: linear-gradient(90deg, #f8bbd0 0%, #fce4ec 100%);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-header-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.top-header-info li,
.top-header-info a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header-info a:hover {
    color: var(--primary-color);
}

.top-header-info i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

.top-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(233, 30, 99, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 14px;
}

.top-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* ================= MAIN NAVBAR ================= */
.main-navbar {
    background: linear-gradient(90deg, #ffffff 0%, #f5f5f5 100%);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
    padding: 12px 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(233, 30, 99, 0.15);
}

.main-navbar.scrolled {
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
    padding: 10px 0;
}

.clinic-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clinic-logo {
    max-height: 55px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .clinic-logo {
    transform: scale(1.05);
}

.clinic-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.clinic-info p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.navbar-nav .nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 10px 16px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* ================= DROPDOWN MENU ================= */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: dropdownFade 0.25s ease;
    min-width: 220px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    height: 80vh;
    overflow-y: auto;
    --webkit-scrollbar: none;
    scrollbar-width: none;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    border-left: 4px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.08) 0%, transparent 100%);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 28px;
    padding-left: 26px;
}

/* ================= APPOINTMENT BUTTON ================= */
.btn-appointment {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 11px 26px !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-appointment:hover {
    background-color: var(--primary-hover) !important;
    box-shadow: 0 10px 26px rgba(233, 30, 99, 0.45);
    transform: translateY(-2px);
}

/* ================= HERO SECTION ================= */
.hero-section {
    background: linear-gradient(135deg, #f8bbd0 0%, #fce4ec 50%, #fff1f5 100%);
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    right: -100px;
    top: -50px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 50%;
    left: -60px;
    bottom: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary-custom {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(233, 30, 99, 0.45);
}

.btn-secondary-custom {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-secondary-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.service-card-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card a:hover {
    color: var(--primary-hover);
}

/* ================= FEATURES / USP SECTION ================= */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8bbd0 0%, #fce4ec 100%);
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8bbd0, #fce4ec);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================= DOCTOR PROFILE SECTION ================= */
.doctor-profile {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.doctor-image {
    text-align: center;
    margin-bottom: 30px;
}

.doctor-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.doctor-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.doctor-info .title {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.doctor-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.qualifications-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.qualifications-list li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.qualifications-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 30, 99, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
}

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 0 40px 0;
    margin-top: 80px;
    border-top: 3px solid var(--primary-color);
}

.footer-column {
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-column p,
.footer-column li {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 99, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

/* ================= FORMS ================= */
.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
}

/* ================= UTILITY CLASSES ================= */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary-color);
}

/* ================= SCROLL TO TOP BUTTON ================= */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
    transition: all 0.3s ease;
    font-size: 20px;
}

.scroll-top-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(233, 30, 99, 0.45);
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappBounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ================= GLOBAL TRANSITIONS ================= */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a {
    transition: all 0.3s ease !important;
}

button,
.btn-primary-custom,
.btn-secondary-custom {
    transition: all 0.3s ease !important;
}

/* ================= CAROUSEL BANNER ================= */
.carousel-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(135deg, #f8bbd0 0%, #fce4ec 100%);
}

.carousel-slides {
    display: block;
    height: 100%;
    position: relative;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide-content {
    text-align: center;
    z-index: 2;
    color: #fff;
    position: relative;
    animation: slideInContent 0.8s ease-out;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-slide p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #fff;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
    backdrop-filter: blur(4px);
}

.carousel-arrows:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 991px) {
    .carousel-banner {
        height: 450px;
    }

    .carousel-slide h1 {
        font-size: 32px;
    }

    .carousel-slide p {
        font-size: 15px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .top-header {
        display: none;
    }

    .main-navbar {
        padding: 10px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: #f5f5f5;
        border-radius: 8px;
    }

    .dropdown-menu {
        box-shadow: none;
        background-color: #f5f5f5;
        height: 50vh;
        overflow-y: auto;
    }

    .btn-appointment {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .carousel-banner {
        height: 350px;
    }

    .carousel-slide h1 {
        font-size: 24px;
    }

    .carousel-slide p {
        font-size: 13px;
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 28px;
    }

    .clinic-logo-container {
        gap: 8px;
    }

    .clinic-logo {
        max-height: 45px;
    }

    .clinic-info h4 {
        font-size: 14px;
    }

    .clinic-info p {
        font-size: 11px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .services-section,
    .features-section,
    .testimonials-section,
    .doctor-profile {
        padding: 50px 0;
    }

    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .clinic-logo-container {
        gap: 6px;
    }

    .clinic-logo {
        max-height: 40px;
    }

    .clinic-info h4 {
        font-size: 13px;
    }

    .clinic-info p {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 150px;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

/* FAQ & CONTACT SECTION STYLING */
.accordion-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 18px 20px;
    border: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #fff5f7;
    color: #e91e63;
}

.accordion-button:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.15);
}

.accordion-body {
    padding: 20px;
    color: #555;
    line-height: 1.8;
    background-color: #fafafa;
    font-size: 14px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-25 {
    margin-bottom: 25px;
}

/* ================= ENHANCED NAVBAR TOGGLER ================= */
.navbar-toggler {
    position: relative;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(233, 30, 99, 0.02));
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.08));
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.18);
    transform: scale(1.08);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.navbar-toggler .navbar-toggler-icon {
    width: 22px;
    height: 20px;
    position: relative;
    display: inline-block;
    background-image: none;
}

/* Custom hamburger menu lines */
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    left: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar-toggler .navbar-toggler-icon::before {
    top: 2px;
    box-shadow: 0 8px 0 var(--primary-color);
}

.navbar-toggler .navbar-toggler-icon::after {
    bottom: 2px;
}

/* Animated hamburger on toggle */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    top: 9px;
    transform: rotate(45deg);
    box-shadow: none;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    bottom: 9px;
    transform: rotate(-45deg);
}

/* Smooth collapse/expand animation */
.navbar-collapse {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Mobile menu styling enhancement */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.95) 100%);
        border-radius: 0 0 12px 12px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(233, 30, 99, 0.12);
        margin-top: 8px;
        padding: 20px 0;
        animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav .nav-link {
        padding: 10px 24px !important;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(233, 30, 99, 0.08);
        border-left-color: var(--primary-color);
        padding-left: 30px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        background: rgba(233, 30, 99, 0.04);
        border-left: 4px solid var(--primary-color);
        margin: 8px 0;
        height: auto;
        max-height: 400px;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .dropdown-item {
        padding: 10px 24px;
        border-left: none;
    }

    .dropdown-item:hover {
        padding-left: 24px;
        background: rgba(233, 30, 99, 0.12);
    }

    .btn-appointment {
        margin: 12px 24px 0 24px;
        width: calc(100% - 48px);
    }
}

/* ================= ENHANCED CONTACT SECTION ================= */
.contact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 187, 208, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    right: -100px;
    top: -100px;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    left: -80px;
    bottom: -80px;
    z-index: 0;
}

.contact-section .row {
    position: relative;
    z-index: 1;
}

/* Contact Cards */
.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 16px;
    padding: 32px 28px;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e91e63 0%, #ff6b9d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.18);
    border-color: rgba(233, 30, 99, 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.35);
}

.contact-card h3 {
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.contact-link a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s ease;
}

.contact-link a:hover::after {
    width: 100%;
}

.contact-link a:hover {
    transform: translateX(3px);
}

.contact-link {
    margin-bottom: 8px;
    color: #555;
}

.contact-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Map Container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 22px;
    height: 350px;
    transition: all 0.4s ease;
    border: 2px solid rgba(233, 30, 99, 0.1);
}

.map-container:hover {
    box-shadow: 0 18px 50px rgba(233, 30, 99, 0.2);
    transform: translateY(-6px);
}

.address-badge {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(233, 30, 99, 0.04) 100%);
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.address-badge:hover {
    border-color: rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.12) 0%, rgba(233, 30, 99, 0.06) 100%);
    transform: translateX(5px);
}

.address-badge i {
    color: #e91e63;
    font-size: 18px;
    flex-shrink: 0;
}

.address-badge span {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

/* Appointment Form Card */
.appointment-form-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(248, 187, 208, 0.1) 100%);
    border-radius: 18px;
    padding: 36px 32px;
    border: 2px solid rgba(233, 30, 99, 0.15);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.12);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.appointment-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.appointment-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.18);
    border-color: rgba(233, 30, 99, 0.25);
}

.appointment-form-card:hover::before {
    opacity: 1;
}

.form-header {
    margin-bottom: 28px;
    text-align: center;
}

.form-header h3 {
    color: #e91e63;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header h3 i {
    font-size: 24px;
}

.form-header p {
    color: #777;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

.appointment-form-card .form-group {
    margin-bottom: 18px;
}

.appointment-form-card label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.3px;
}

.appointment-form-card .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #333;
}

.appointment-form-card .form-control:focus {
    background: #fff;
    border-color: #e91e63;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
    outline: none;
}

.appointment-form-card .form-control::placeholder {
    color: #999;
}

.appointment-form-card textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit-enhanced {
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(233, 30, 99, 0.4);
}

.btn-submit-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit-enhanced:active {
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.2s;
}

.map-container {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.appointment-form-card {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-card {
        padding: 24px 20px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .map-container {
        height: 280px;
    }

    .appointment-form-card {
        padding: 28px 24px;
    }

    .form-header h3 {
        font-size: 18px;
    }

    .btn-submit-enhanced {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ================= PREMIUM BREADCRUMB SECTION ================= */
.breadcrumb-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(248, 187, 208, 0.08) 100%);
    padding: 18px 0;
    border-bottom: 2px solid rgba(233, 30, 99, 0.12);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 187, 208, 0.88) 100%);
    z-index: 1;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    right: -150px;
    top: -150px;
    z-index: 0;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.breadcrumb-content {
    flex: 1;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    animation: fadeInRight 0.6s ease forwards;
    opacity: 0;
}

.breadcrumb-item:nth-child(1) {
    animation-delay: 0.1s;
}

.breadcrumb-item:nth-child(3) {
    animation-delay: 0.2s;
}

.breadcrumb-item:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 6px 8px;
    border-radius: 6px;
}

.breadcrumb-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #ff6b9d);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.breadcrumb-link:hover {
    color: #d81b60;
    background: rgba(233, 30, 99, 0.08);
    transform: translateX(2px);
}

.breadcrumb-link:hover::before {
    width: calc(100% - 16px);
}

.breadcrumb-text {
    color: #999;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    padding: 6px 8px;
}

.breadcrumb-separator {
    color: #ddd;
    font-size: 12px;
    margin: 0 4px;
    animation: fadeInRight 0.6s ease forwards;
    opacity: 0;
}

.breadcrumb-item:nth-child(2) {
    animation-delay: 0.15s;
}

.breadcrumb-item:nth-child(4) {
    animation-delay: 0.25s;
}

/* Call Me Button */
.call-me-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    animation: slideInLeft 0.6s ease 0.2s forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.call-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.call-me-btn:hover .call-icon {
    transform: scale(1.2) rotate(-15deg);
}

.call-me-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(233, 30, 99, 0.35);
}

.call-me-btn:active {
    transform: translateY(-2px);
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .breadcrumb-list {
        gap: 6px;
        font-size: 12px;
    }

    .breadcrumb-link {
        padding: 5px 6px;
        font-size: 12px;
    }

    .breadcrumb-text {
        padding: 5px 6px;
        font-size: 12px;
    }

    .breadcrumb-separator {
        font-size: 10px;
        margin: 0 2px;
    }

    .call-me-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .breadcrumb-section {
        padding: 14px 0;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        gap: 4px;
    }

    .breadcrumb-link,
    .breadcrumb-text {
        font-size: 11px;
        padding: 4px 4px;
    }

    .breadcrumb-separator {
        font-size: 9px;
        margin: 0 1px;
    }

    .call-text {
        display: none;
    }

    .call-me-btn {
        padding: 10px 14px;
        border-radius: 50%;
        width: auto;
    }
}

/* ================= ENHANCED BREADCRUMB HERO SECTION ================= */
.breadcrumb-hero-section {
    position: relative;
    overflow: hidden;
}

.breadcrumb-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.breadcrumb-hero-section h1 {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease-out forwards;
    margin-bottom: 10px;
}

.breadcrumb-hero-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    font-weight: 500;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-nav {
    margin-top: 0;
}

.breadcrumb-nav .breadcrumb-list {
    justify-content: center;
}

.breadcrumb-nav .breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.breadcrumb-nav .breadcrumb-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.breadcrumb-nav .breadcrumb-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 1;
}

.breadcrumb-nav .breadcrumb-item:nth-child(1) {
    animation-delay: 0.3s;
}

.breadcrumb-nav .breadcrumb-item:nth-child(3) {
    animation-delay: 0.4s;
}

.breadcrumb-nav .breadcrumb-item:nth-child(5) {
    animation-delay: 0.5s;
}

.breadcrumb-call-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.breadcrumb-call-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

@media (max-width: 992px) {
    .breadcrumb-hero-section {
        padding: 60px 0 !important;
        min-height: 300px !important;
    }

    .breadcrumb-hero-section h1 {
        font-size: 36px;
    }

    .breadcrumb-hero-section p {
        font-size: 16px;
    }

    .breadcrumb-call-btn {
        position: static !important;
        transform: none !important;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .breadcrumb-hero-section {
        padding: 50px 0 !important;
        min-height: 260px !important;
    }

    .breadcrumb-hero-section h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .breadcrumb-hero-section p {
        font-size: 14px;
    }

    .breadcrumb-nav .breadcrumb-list {
        gap: 10px !important;
    }

    .breadcrumb-nav .breadcrumb-link,
    .breadcrumb-nav .breadcrumb-text {
        font-size: 12px;
        padding: 6px 8px;
    }

    .breadcrumb-call-btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }

    .breadcrumb-call-btn i {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .breadcrumb-hero-section {
        padding: 40px 0 !important;
        min-height: 240px !important;
    }

    .breadcrumb-hero-section h1 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .breadcrumb-hero-section p {
        font-size: 12px;
    }

    .breadcrumb-nav .breadcrumb-list {
        flex-direction: column;
        gap: 8px !important;
    }

    .breadcrumb-nav .breadcrumb-item {
        justify-content: center;
    }

    .breadcrumb-nav .breadcrumb-separator {
        display: none;
    }

    .breadcrumb-call-btn {
        width: 100% !important;
        justify-content: center;
        padding: 12px 16px !important;
    }
}

.image-overlay-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.icon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(248, 187, 208, 0.6),
            rgba(252, 228, 236, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-overlay i {
    font-size: 70px;
    color: #e91e63;
    opacity: 0.8;
}

.icon-overlay p {
    margin-top: 12px;
    color: #333;
    font-weight: 600;
}