/* @import 'bootstrap/dist/css/bootstrap.css'; */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;600;700&display=swap');

/* New Color Theme Variables */
:root {
    --primary-dark: #23292E;
    --primary-light: #DDDED9;
    --accent-primary: #E4bC62;
    --accent-secondary: #DFB3AE;
    --pink-gradient: linear-gradient(90deg, #E48C62 0%, #DFB3AE 100%);
}

html, body {
    overflow-x: hidden;
    background: var(--primary-light);
    font-family: 'Fira Sans', Arial, sans-serif;
}

body, h1, h2, h3, h4, h5, h6, .btn, .form-label, .form-select, .carousel-caption, .lead, .fw-bold, .fw-semibold {
    font-family: 'Fira Sans', Arial, sans-serif !important;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background-color: var(--primary-light);
}

/* Feature Cards */
.feature-card {
    background: var(--primary-light);
    box-shadow: 0 8px 32px rgba(35, 41, 46, 0.10);
    border-radius: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
    align-items: center;
    border: 1px solid var(--accent-secondary);
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(35, 41, 46, 0.15) !important;
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-purple {
    background: var(--primary-dark);
}

.feature-pink {
    background: var(--accent-primary);
}

.feature-blue {
    background: var(--accent-secondary);
}

.feature-title {
    font-family: 'Fira Sans', Arial, sans-serif;
    color: var(--primary-dark);
    font-weight: 600;
}

.feature-desc {
    color: #666;
    font-size: 1.05rem;
    font-family: 'Fira Sans', Arial, sans-serif;
}

.feature-arrow {
    width: 64px;
    height: 36px;
    background: var(--primary-dark);
    border: none;
    border-radius: 0;
    transition: background 0.2s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    padding: 0;
}

.feature-pink.feature-arrow {
    background: var(--accent-primary);
}

.feature-blue.feature-arrow {
    background: var(--accent-secondary);
}

.feature-card:hover .feature-arrow {
    animation: rotateArrow 0.4s linear 0s 1;
}

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

.feature-card:hover .feature-icon {
    transform: translateY(-10px) scale(1.08);
}

/* About Section */
.about-gradient-text {
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-section-label {
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Fira Sans', Arial, sans-serif;
}

.about-heading-point {
    color: var(--primary-dark);
}

.about-desc {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 1.1rem;
    color: #444;
}

.about-list {
    list-style: none;
    padding-left: 0;
    font-family: 'Fira Sans', Arial, sans-serif;
}

.about-list li {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3em;
}

.about-highlight {
    font-weight: 600;
    color: var(--primary-dark);
}

.about-img-frame {
    width: 370px;
    height: 370px;
}

.about-dots-svg {
    position: absolute;
    top: 20px;
    left: -50px;
    z-index: 3;
}

.about-blob-svg {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 8px 32px rgba(228, 140, 98, 0.15));
}

.about-img-main {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 70px;
    left: 70px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(228, 140, 98, 0.15);
    border: 8px solid var(--primary-light);
}

/* Profiles Section */
.profiles-section {
    background: linear-gradient(60deg, var(--primary-dark) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
}

.profiles-heading {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.7rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.profiles-subheading {
    font-family: 'Fira Sans', Arial, sans-serif;
    color: var(--primary-light);
    letter-spacing: 0.18em;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-img-box {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 8px 32px rgba(35, 41, 46, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--accent-secondary);
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(35, 41, 46, 0.18);
    display: block;
}

.profile-watermark {
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 0.95rem;
    color: var(--primary-light);
    font-family: 'Fira Sans', Arial, sans-serif;
    opacity: 0.85;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 2px 8px rgba(35, 41, 46, 0.18);
}

/* Happy Stories Section */
.happy-story-section {
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.happy-story-heading {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.7rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.happy-story-subheading {
    font-family: 'Fira Sans', Arial, sans-serif;
    color: var(--accent-primary);
    letter-spacing: 0.18em;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.happy-card {
    background: var(--primary-light);
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(35, 41, 46, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s;
    border: 1px solid var(--accent-secondary);
}

.happy-card:hover {
    box-shadow: 0 12px 40px rgba(35, 41, 46, 0.15);
}

.happy-card-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.happy-card-body {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.happy-card-date {
    color: var(--accent-primary);
    font-size: 1rem;
    font-family: 'Fira Sans', Arial, sans-serif;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.happy-card-date-icon {
    margin-right: 6px;
    display: inline-flex;
    vertical-align: middle;
}

.happy-card-title {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 1.45rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.btn-happy-view {
    background: var(--accent-primary);
    color: var(--primary-dark);
    font-family: 'Fira Sans', Arial, sans-serif;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(228, 140, 98, 0.2);
}

.btn-happy-view:hover {
    background: var(--accent-secondary);
    color: var(--primary-dark);
}

.happy-squiggle {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
}

.happy-squiggle-1 {
    top: 40px;
    left: 8vw;
}

.happy-squiggle-2 {
    top: 30px;
    right: 18vw;
}

.happy-squiggle-3 {
    left: 7vw;
    top: 320px;
}

/* Footer */
.footer-custom {
    background: linear-gradient(120deg, var(--primary-dark) 0%, #1a1f23 100%);
    padding-bottom: 2rem;
    color: var(--primary-light);
}

.footer-logo {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 2.7rem;
    color: var(--primary-light);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-custom nav a {
    color: var(--primary-light) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.footer-custom nav a:hover {
    color: var(--accent-primary) !important;
    text-decoration: underline;
}

.footer-custom small {
    color: var(--primary-light);
    font-size: 1rem;
}

.btn-social {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    font-size: 1.4rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--accent-secondary);
}

.btn-social:hover {
    background: var(--accent-primary);
}

/* Matrimony Note */
.matrimony-note-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    color: var(--primary-light);
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 16px;
    padding: 1.1rem 2.5rem;
    margin: 16px auto 0 auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(35, 41, 46, 0.18);
    letter-spacing: 0.01em;
    position: relative;
    z-index: 10;
}

.matrimony-note-wrapper {
    background: rgba(223, 179, 174, 0.1);
    padding: 2.5rem 1rem;
}

.matrimony-note {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent-primary);
    line-height: 1.7;
}

.main-bg {
    background: linear-gradient(120deg, var(--primary-dark) 0%, #1a1f23 100%);
    padding-top: 32px;
}

/* Navigation */
.custom-navbar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-primary) 100%) !important;
    border: none !important;
    box-shadow: none !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.custom-navbar-brand {
    color: var(--primary-light) !important;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.custom-navbar-brand:hover {
    color: var(--primary-light) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.custom-navbar .nav-link {
    color: var(--primary-light) !important;
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
    transition: color 0.2s;
}

.custom-navbar .nav-link.active, 
.custom-navbar .nav-link:hover, 
.custom-navbar .nav-link:focus {
    color: var(--accent-secondary) !important;
    text-decoration: underline;
}

.custom-navbar .dropdown-menu {
    background: var(--primary-light);
    border-radius: 0.5rem;
    min-width: 180px;
    box-shadow: 0 4px 24px rgba(35, 41, 46, 0.15);
    border: 1px solid var(--accent-secondary);
}

.custom-navbar .dropdown-item {
    color: var(--primary-dark);
    font-weight: 500;
    transition: all 0.2s;
}

.custom-navbar .dropdown-item:hover,
.custom-navbar .dropdown-item:focus {
    background: var(--accent-primary);
    color: var(--primary-dark);
}

.custom-navbar .dropdown-item:active {
    background: var(--accent-secondary);
    color: var(--primary-dark);
}

.custom-hover-dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Buttons */
.btn-pink {
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
}

.btn-pink:hover {
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(228, 140, 98, 0.4);
    transform: translateY(-2px);
}

.scroll-to-top-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(35, 41, 46, 0.15);
    background: var(--accent-primary);
    border: 2px solid var(--primary-light);
}

.scroll-to-top-btn:hover {
    background: var(--accent-secondary);
}

/* Testimonials */
.testimonial-section {
    background: var(--primary-light);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonial-subheading {
    letter-spacing: 0.25em;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Fira Sans', Arial, sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.testimonial-heading {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: var(--primary-light);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(35, 41, 46, 0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 270px;
    border: 1px solid var(--accent-secondary);
}

.testimonial-quote {
    margin-bottom: 1.2rem;
}

.testimonial-quote .material-icons {
    font-size: 2.5rem;
    color: var(--accent-primary);
}

.testimonial-text {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-date {
    color: #555;
    font-size: 1.05rem;
}

.testimonial-carousel-nav {
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 4px;
    display: inline-block;
    transition: background 0.2s;
}

.testimonial-dot.active {
    background: var(--accent-primary);
}

/* Carousel Sections */
.wallpaper-carousel-section {
    height: 340px;
    min-height: 0;
}

.carousel-bg-img {
    object-fit: cover;
    filter: brightness(0.6);
    height: 340px !important;
    min-height: 0;
}

.carousel-caption-bg {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.carousel-title {
    color: var(--primary-light);
    text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

/* Search Bar */
.search-bar-overlay-custom {
    bottom: -48px;
    left: 0;
    z-index: 2;
}

.search-bar-box-custom {
    max-width: 1400px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    box-shadow: 0 8px 32px rgba(35, 41, 46, 0.15);
    transform: translateY(50%);
}

.search-btn-custom {
    border-radius: 12px;
    font-size: 1.2rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: none;
}

.search-btn-custom:hover {
    background: var(--accent-secondary);
    color: var(--primary-dark);
}

/* Gradients */
.gradient-bg-custom {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(35, 41, 46, 0.18);
}

/* Alert Styles */
.alert-warning {
    background-color: rgba(228, 140, 98, 0.1);
    border-color: var(--accent-primary);
    color: var(--primary-dark);
}

.alert-warning .fw-bold {
    color: var(--primary-dark);
}

/* Form Controls */
.form-control, .form-select {
    border: 1px solid var(--accent-secondary);
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 0.2rem rgba(228, 140, 98, 0.25);
}

/* Badges */
.badge.bg-danger {
    background-color: var(--accent-primary) !important;
    color: var(--primary-dark);
}

/* Chat Widget */
#openChatBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: var(--accent-primary);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 0 4px 16px rgba(35, 41, 46, 0.15);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#openChatBtn:hover {
    background: var(--accent-secondary);
    transform: scale(1.1);
}

#floatingChatWidget {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 32px;
    width: 370px;
    max-width: 95vw;
    height: 540px;
    background: var(--primary-light);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(35, 41, 46, 0.18);
    z-index: 10000;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--accent-secondary);
}

#floatingChatWidget .chat-header {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-primary) 100%);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px 18px 0 0;
}

#floatingChatWidget .chat-header .chat-title {
    font-weight: 600;
    color: var(--primary-light);
    font-size: 1.2rem;
}

#floatingChatWidget .chat-header .btn {
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: none;
}

#chatWidgetBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#chatWidgetMessages {
    flex: 1;
    overflow-y: auto;
    background: rgba(35, 41, 46, 0.05);
    padding: 1rem;
}

#chatWidgetForm {
    display: flex;
    border-top: 1px solid var(--accent-secondary);
    background: var(--primary-light);
    padding: 0.75rem;
}

#chatWidgetInput {
    border-radius: 18px;
    border: 1px solid var(--accent-secondary);
    background: var(--primary-light);
    color: var(--primary-dark);
}

#chatWidgetForm button {
    border-radius: 18px;
    background: var(--accent-primary);
    color: var(--primary-dark);
    border: none;
}

#chatWidgetForm button:hover {
    background: var(--accent-secondary);
}

#floatingChatWidget .chat-bubble {
    padding: 10px 18px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 70%;
    display: inline-block;
    word-wrap: break-word;
}

#floatingChatWidget .chat-bubble.me {
    background: var(--accent-primary);
    color: var(--primary-dark);
    margin-left: auto;
}

#floatingChatWidget .chat-bubble.them {
    background: var(--accent-secondary);
    color: var(--primary-dark);
    margin-right: auto;
}

/* Notification Styles */
.notifications-dropdown {
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--primary-light);
    border: 1px solid var(--accent-secondary);
}

.notifications-dropdown .dropdown-header {
    font-weight: 600;
    padding: 0.5rem 1rem;
    background-color: rgba(35, 41, 46, 0.1);
    color: var(--primary-dark);
    border-bottom: 1px solid var(--accent-secondary);
}

.notification-item {
    border-bottom: 1px solid rgba(223, 179, 174, 0.3);
    transition: background-color 0.2s;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: rgba(35, 41, 46, 0.05) !important;
}

.notification-item .dropdown-item {
    white-space: normal;
    padding: 0.75rem 1rem;
    color: var(--primary-dark);
}

.notification-item .dropdown-item h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.notification-item .dropdown-item small {
    font-size: 0.75rem;
    color: #666;
}

.notification-item[data-unread="true"] {
    background-color: rgba(223, 179, 174, 0.1);
    border-left: 3px solid var(--accent-primary);
}

.notification-item.unread {
    background-color: rgba(223, 179, 174, 0.1);
}

/* Blinking animation for notification count */
.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

/* Toast Styles */
#toast-container {
    z-index: 1100;
}

.toast {
    min-width: 250px;
    background: var(--primary-light);
    border: 1px solid var(--accent-secondary);
}

.toast:not(.show) {
    display: none;
}

.toast-header {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    border-bottom: 1px solid var(--accent-secondary);
}

.toast-body {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.toast-container {
    z-index: 9999;
}

/* Help Desk Styles */
.help-desk-section {
    padding: 30px 0;
    position: relative;
}

.help-desk-section h3 {
    color: var(--primary-light);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    border-radius: 3px;
}

.help-desk-card {
    background: rgba(35, 41, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(223, 179, 174, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.help-desk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-secondary);
}

.help-desk-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-primary));
    color: var(--primary-light);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.help-desk-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(223, 179, 174, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.help-desk-card:hover .help-desk-header::after {
    transform: translateX(100%);
}

.help-desk-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-secondary);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.help-desk-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    color: var(--primary-light);
}

.badge-available, .badge-unavailable {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 600;
}

.badge-available {
    background-color: var(--accent-primary);
    color: var(--primary-dark);
    box-shadow: 0 0 10px rgba(228, 140, 98, 0.5);
}

.badge-unavailable {
    background-color: #6c757d;
    color: var(--primary-light);
}

.help-desk-body {
    padding: 20px;
    color: var(--primary-light);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-right: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-weight: 600;
    color: var(--accent-secondary);
}

.contact-number {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number:hover {
    color: var(--accent-primary);
}

.no-numbers {
    text-align: center;
    color: var(--accent-secondary);
    font-style: italic;
}

.unavailable-message {
    text-align: center;
    padding: 10px;
}

.unavailable-message i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.unavailable-message p {
    margin-bottom: 5px;
    color: var(--primary-light);
}

.business-hours {
    font-weight: 600;
    color: var(--accent-secondary);
}

/* Utility Classes */
.text-pink { color: var(--accent-primary) !important; }
.text-purple { color: var(--primary-dark) !important; }
.text-orange { color: var(--accent-secondary) !important; }

.bg-primary-dark { background-color: var(--primary-dark) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-accent-primary { background-color: var(--accent-primary) !important; }
.bg-accent-secondary { background-color: var(--accent-secondary) !important; }

.iframe-border-none { border: 0 !important; }

/* Animation Delays */
.fade-delay-02s { animation-delay: 0.2s !important; }
.fade-delay-04s { animation-delay: 0.4s !important; }
.fade-delay-06s { animation-delay: 0.6s !important; }
.fade-delay-08s { animation-delay: 0.8s !important; }
.fade-delay-1s { animation-delay: 1s !important; }

/* Responsive Design */
@media (max-width: 767px) {
    .profile-img-box {
        width: 120px;
        height: 120px;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .happy-card-img {
        height: 200px;
    }
    
    .profiles-heading,
    .happy-story-heading,
    .testimonial-heading {
        font-size: 2rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .happy-squiggle-1,
    .happy-squiggle-2,
    .happy-squiggle-3 {
        display: none;
    }
    
    .custom-navbar .nav-link {
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-img-frame {
        width: 300px;
        height: 300px;
    }
    
    .about-img-main {
        width: 200px;
        height: 200px;
        top: 50px;
        left: 50px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .matrimony-note-bar {
        padding: 0.8rem 1rem;
        font-size: 10px;
        margin: 10px auto 0 auto;
    }
    
    #floatingChatWidget {
        width: 95vw;
        right: 2.5vw;
    }
}

/* Print Styles */
@media print {
    .custom-navbar,
    .footer-custom,
    #openChatBtn,
    #floatingChatWidget,
    .scroll-to-top-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .feature-card,
    .happy-card,
    .testimonial-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}