/* ==================== CSS Variables ==================== */
:root {
    /* Color Theme - Pink, Maroon, White */
    --primary-pink: #E91E63;
    --primary-maroon: #880E4F;
    --light-pink: #FCE4EC;
    --white: #FFFFFF;
    --dark-text: #212529;
    --gray-text: #6c757d;
    --light-gray: #f8f9fa;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-maroon) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(136, 14, 79, 0.85), rgba(233, 30, 99, 0.85));
    --gradient-light: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(136, 14, 79, 0.1) 100%);

    /* Spacing */
    --section-padding: 4rem 0;
    --section-padding-large: 5rem 0;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* ==================== Typography ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.35rem;
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.75;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==================== Navigation ==================== */
.navbar {
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    background: var(--white) !important;
    z-index: 1050;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .brand-tagline {
    font-size: 0.8rem;
    color: var(--gray-text);
    font-weight: 400;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text) !important;
    padding: 0.5rem 0.8rem !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.nav-link.active {
    color: var(--primary-pink) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    right: 0.8rem;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Mobile menu button styling */
.mobile-menu-btn {
    padding: 0.4rem 0.6rem;
    z-index: 1060;
}

.mobile-menu-btn .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}

/* ==================== Hero Carousel ==================== */
.hero-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-item {
    height: 400px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 55%), #0000007d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption-custom {
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.carousel-caption-custom h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-caption-custom p {
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 0.9;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 0.5rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Default Hero */
.default-hero {
    height: 400px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.default-hero::before {
    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.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,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>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.default-hero .container {
    position: relative;
    z-index: 1;
}

.default-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.default-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    animation: fadeInUp 1.2s ease;
}

/* ==================== Popup Banner ==================== */
.popup-banner {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    margin: auto;
    padding: 1rem;
}

.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 10px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-popup:hover {
    color: var(--primary-pink);
    transform: scale(1.1);
}

/* ==================== Buttons ==================== */
.btn {
    padding: 0.7rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--primary-maroon);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary-maroon);
}

/* ==================== Sections ==================== */
.section {
    padding: var(--section-padding);
}

.section-large {
    padding: var(--section-padding-large);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
}

.section-title p {
    color: var(--gray-text);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* Welcome title single line */
.welcome-title-single h2 {
    white-space: nowrap;
}

.welcome-title-single::after {
    margin-left: 0;
    margin-right: auto;
}

.bg-light-pink {
    background-color: var(--light-pink);
}

.bg-gradient-light {
    background: var(--gradient-light);
}

/* ==================== Impact Stats Section ==================== */
.impact-stats {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    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)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,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>');
    background-size: cover;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==================== Cards ==================== */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
}

.card-text {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Icon Cards */
.icon-card {
    text-align: center;
    padding: 2rem 1.2rem;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.icon-card:hover::before {
    transform: scaleX(1);
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.2);
}

.icon-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
}

.icon-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--dark-text);
}

.icon-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 0;
}

/* ==================== Event Preview Cards ==================== */
.event-preview-card {
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.event-preview-card:hover {
    border-color: var(--primary-pink);
}

.event-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.event-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

/* ==================== Social Media Cards ==================== */
.social-media-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    height: 100%;
}

.social-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.social-media-header {
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.social-media-header i {
    font-size: 1.5rem;
}

.social-media-body {
    padding: 1.5rem;
}

.social-media-body p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ==================== Image Content Section ==================== */
.image-content-section {
    padding: 4rem 0;
}

.image-content-section img {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: auto;
}

.content-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ==================== Testimonials ==================== */
.testimonials-before-footer {
    background: var(--gradient-light);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    font-size: 4rem;
    color: var(--light-pink);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h6 {
    margin-bottom: 0.1rem;
    color: var(--dark-text);
    font-weight: 600;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    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)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,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>');
    background-size: cover;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ==================== Page Header ==================== */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    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)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,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>');
    background-size: cover;
    background-position: bottom;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.95;
}

/* ==================== Media Page ==================== */
.nav-tabs {
    border-bottom: 3px solid var(--light-pink);
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    color: var(--gray-text);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-pink);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-pink);
    background: transparent;
    border-color: transparent transparent var(--primary-pink) transparent;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 4/3;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 1.5rem 1.2rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.video-item {
    margin-bottom: 1.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-text);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* ==================== Modal ==================== */
.modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid var(--light-pink);
    padding: 1.2rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--light-pink);
    padding: 1.2rem 1.5rem;
}

/* ==================== Footer ==================== */
.footer {
    background: #1a1a1a !important;
    padding: 3rem 0 1.5rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-pink) !important;
    padding-left: 8px;
}

.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-pink);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ed3499;
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* ==================== Form Styles ==================== */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

/* ==================== No Content State ==================== */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-text);
}

.no-content i {
    font-size: 4rem;
    color: var(--light-pink);
    margin-bottom: 1rem;
}

.no-content p {
    font-size: 1.1rem;
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* ==================== Responsive Design ==================== */

/* Tablet */
@media (max-width: 991px) {
    .navbar {
        padding: 0.3rem 0;
    }

    .navbar-nav {
        padding: 1rem 0;
        background: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 1rem !important;
        font-size: 15px;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: var(--light-pink);
        border-radius: 8px;
    }

    .brand-logo {
        max-height: 60px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-carousel,
    .carousel-item,
    .default-hero {
        height: 300px;
    }

    .carousel-caption-custom h2,
    .default-hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .welcome-title-single h2 {
        white-space: normal;
        font-size: 1.8rem;
    }

    .section-large {
        padding: 3.5rem 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .section {
        padding: 2.5rem 0;
    }

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

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .hero-carousel,
    .carousel-item,
    .default-hero {
        height: 220px;
    }

    .carousel-caption-custom h2,
    .default-hero h1 {
        font-size: 1.5rem;
    }

    .carousel-caption-custom p,
    .default-hero p {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

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

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .card-body {
        padding: 1.2rem;
    }

    .card-img-top {
        height: 160px;
    }

    .icon-card {
        padding: 1.5rem 1rem;
    }

    .icon-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 0.3rem;
        left: 1rem;
    }

    .welcome-title-single h2 {
        white-space: normal;
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .lead {
        font-size: 1rem;
    }

    .popup-content {
        max-width: 90%;
        padding: 0.5rem;
    }

    .close-popup {
        top: -35px;
        font-size: 35px;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .social-media-header {
        padding: 1rem;
        font-size: 1rem;
    }

    .social-media-body {
        padding: 1rem;
    }

    .nav-tabs .nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .form-control,
    .form-select {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-carousel,
    .carousel-item,
    .default-hero {
        height: 180px;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    .brand-logo {
        max-height: 50px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}

/* ==================== Utility Classes ==================== */
.text-primary-pink {
    color: var(--primary-pink) !important;
}

.text-primary-maroon {
    color: var(--primary-maroon) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.shadow-custom {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.shadow-lg-custom {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
