/* 
   HEALit Homoeopathic Speciality Clinic
   Custom Premium Design System - "Emerald Healing" Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0b5e43;          /* Emerald Green */
    --primary-hover: #084732;
    --primary-light: #e8f5e9;    /* Very soft green background */
    --primary-rgb: 11, 94, 67;
    --accent: #cca43b;           /* Muted Gold Accent */
    --accent-hover: #b08d2f;
    --accent-light: #fdfaf2;
    --dark: #121b16;             /* Forest Black */
    --gray-dark: #374151;
    --gray-medium: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    
    /* Layout & Shadow tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lift: 0 20px 40px rgba(11, 94, 67, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Utility Layouts */
section {
    padding: 90px 0;
    position: relative;
}

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

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

/* Glow-Mesh Gradients */
.mesh-gradient-bg {
    position: relative;
    overflow-x: hidden;
}

.mesh-gradient-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(11, 94, 67, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mesh-gradient-bg::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(204, 164, 59, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mesh-gradient-bg > div {
    position: relative;
    z-index: 1;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 94, 67, 0.25);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 94, 67, 0.15);
}

/* Navbar Redesign */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11, 94, 67, 0.08);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.navbar-custom.navbar-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar-custom.navbar-scrolled .navbar-brand img {
    height: 42px;
}

.nav-link-custom {
    color: var(--dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-cta-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(11, 94, 67, 0.15);
    text-decoration: none;
}

.nav-cta-btn:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(11, 94, 67, 0.25);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(11, 94, 67, 0.92) 0%, rgba(18, 27, 22, 0.95) 100%), 
                url('../images/slide-one.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(204, 164, 59, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 650px;
}

.hero-stats {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* About Section */
.section-title-wrapper {
    margin-bottom: 50px;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-title.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-img-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.about-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--accent);
    max-width: 200px;
}

.about-experience-badge h4 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.85rem;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark);
}

.highlight-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 0;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}

.highlight-list li i {
    color: var(--primary);
    background-color: var(--primary-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background-color: var(--gray-light);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(18, 27, 22, 0.7) 0%, transparent 60%);
}

.service-body {
    padding: 30px 24px;
}

.service-icon-box {
    width: 55px;
    height: 55px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -55px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(11, 94, 67, 0.15);
    transition: var(--transition-smooth);
}

.service-icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary);
    transform: scale(1.1);
}

.service-card:hover .service-icon-box i {
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-text {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* Testimonials Carousel */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--gray-light);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    margin: 15px auto;
    max-width: 800px;
    border-left: 5px solid var(--primary);
}

.testimonial-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(11, 94, 67, 0.06);
}

.rating-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.client-info p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carousel-indicators-custom [data-bs-target] {
    background-color: var(--primary) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 6px !important;
    border: none !important;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.carousel-indicators-custom .active {
    opacity: 1;
    width: 28px !important;
    border-radius: 5px !important;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--primary-light);
}

.accordion-custom {
    max-width: 850px;
    margin: 0 auto;
}

.accordion-item-custom {
    background-color: var(--white) !important;
    border: none !important;
    border-radius: var(--border-radius-md) !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item-custom:hover {
    box-shadow: var(--shadow-medium);
}

.accordion-button-custom {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark) !important;
    background-color: var(--white) !important;
    padding: 22px 28px !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: var(--transition-smooth);
}

.accordion-button-custom:not(.collapsed) {
    color: var(--primary) !important;
}

.accordion-button-custom::after {
    display: none; /* remove default bootstrap chevron */
}

.accordion-chevron {
    font-size: 0.95rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-button-custom:not(.collapsed) .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-body-custom {
    padding: 0 28px 24px !important;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* Contact & Query Section */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    height: 100%;
}

.contact-info-card h3, .contact-info-card h4 {
    color: var(--white);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--accent);
}

.info-content h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p, .info-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-content a:hover {
    color: var(--accent);
}

.social-links-grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.query-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-light);
    height: 100%;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-floating-custom .form-control {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-light);
    background-color: var(--gray-light);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition-smooth);
}

.form-floating-custom .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(11, 94, 67, 0.08);
}

.form-floating-custom label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 8px;
    display: block;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 30px;
}

/* Gallery Masonry Layout */
.gallery-filter-tabs {
    border: none;
    background-color: var(--gray-light);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    margin: 0 auto 40px;
}

.gallery-filter-tabs .filter-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--gray-medium);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.gallery-filter-tabs .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(11, 94, 67, 0.2);
}

/* Masonry Columns */
.gallery-grid {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

@media(max-width: 1199px) {
    .gallery-grid {
        column-count: 3;
    }
}
@media(max-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}
@media(max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 94, 67, 0.85) 0%, rgba(18, 27, 22, 0.4) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-smooth);
    color: var(--white);
}

.gallery-hover-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.gallery-hover-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 27, 22, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lift);
}

.lightbox-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media(max-width: 1024px) {
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-nav-btn {
        background-color: rgba(18, 27, 22, 0.5);
    }
}

/* Booking Modal Redesign */
.modal-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content-custom {
    border-radius: var(--border-radius-lg);
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.modal-header-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 25px 30px;
    border: none;
    position: relative;
}

.modal-header-custom h5 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
}

.modal-header-custom .btn-close {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.8;
    filter: invert(1);
    transition: var(--transition-smooth);
    padding: 10px;
}

.modal-header-custom .btn-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.booking-tabs {
    border: none;
    background-color: var(--gray-light);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 30px;
    display: flex;
}

.booking-tabs .nav-item {
    flex: 1;
}

.booking-tabs .nav-link {
    border: none;
    width: 100%;
    padding: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    color: var(--gray-medium);
    background: transparent;
    transition: var(--transition-smooth);
}

.booking-tabs .nav-link.active {
    background-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(11, 94, 67, 0.2);
}

/* Honeypot field (highly hidden) */
.hp-field {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Custom inline status alert inside modal/page */
.form-status-alert {
    display: none;
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.95rem;
    align-items: center;
    gap: 12px;
}

.form-status-alert.alert-success {
    display: flex;
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-status-alert.alert-danger {
    display: flex;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Footer Section */
.footer-custom {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
    border-top: 3px solid var(--accent);
}

.footer-custom h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-custom h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(15deg);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.scroll-top-floating {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 6px 18px rgba(11, 94, 67, 0.2);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top-floating.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-floating:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(11, 94, 67, 0.3);
}

/* Admin Dashboard Styling */
.admin-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 40px;
    border-top: 5px solid var(--primary);
}

.admin-sidebar-tabs {
    border: none;
    border-right: 1px solid var(--gray-light);
}

.admin-sidebar-tabs .nav-link {
    border: none;
    text-align: left;
    padding: 15px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--gray-medium);
    border-radius: var(--border-radius-sm);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.admin-sidebar-tabs .nav-link:hover {
    background-color: var(--gray-light);
    color: var(--primary);
}

.admin-sidebar-tabs .nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary) !important;
}

.admin-form-group {
    background-color: var(--gray-light);
    padding: 24px;
    border-radius: var(--border-radius-md);
    margin-bottom: 24px;
}

.admin-form-group h4 {
    font-size: 1.15rem;
    margin-bottom: 18px;
    border-bottom: 1.5px solid rgba(11, 94, 67, 0.1);
    padding-bottom: 10px;
    color: var(--primary);
}

.admin-uploader-box {
    border: 2.5px dashed var(--primary);
    background-color: var(--primary-light);
    border-radius: var(--border-radius-md);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-uploader-box:hover, .admin-uploader-box.drag-over {
    background-color: rgba(11, 94, 67, 0.12);
    transform: scale(0.99);
}

.admin-uploader-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.admin-gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.admin-gallery-preview-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 100px;
    box-shadow: var(--shadow-soft);
}

.admin-gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-gallery-delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    background-color: rgba(220, 53, 69, 0.9);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-gallery-delete-btn:hover {
    background-color: #dc3545;
    transform: scale(1.1);
}

.export-control-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin-top: 30px;
}

.export-control-card h4 {
    color: var(--white);
    margin-bottom: 12px;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        border-radius: var(--border-radius-md);
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-link-custom::after {
        display: none;
    }
    
    .nav-cta-btn {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-img-container {
        margin-bottom: 40px;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .admin-sidebar-tabs {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .admin-sidebar-tabs .nav-link {
        margin-bottom: 0;
        padding: 10px 18px;
    }
}
