:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-dark: #1f2937;
    --text-muted: #000;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-fill-mode: both;
}

.fade-up {
    animation: fadeInUp 0.7s ease-out forwards;
}

.fade-down {
    animation: fadeInDown 0.7s ease-out forwards;
}

.fade-left {
    animation: fadeInLeft 0.7s ease-out forwards;
}

.fade-right {
    animation: fadeInRight 0.7s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.rotate-in {
    animation: rotateIn 0.7s ease-out forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ===== HEADER ===== */
.page-header {
    text-align: center;
    padding: 50px 20px 30px;
}

.page-header h1 {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* ===== CATEGORY CARDS ===== */
.category-section {
    background: #fdf9f7;
    padding: 15px 0 50px 0;
}

.category-card {
    text-align: center;
    margin-bottom: 0px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border:solid 1px rgb(227, 227, 227); */
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 8px 0px rgba(209, 209, 209, 0.25);
}

.category-card .category-label{
    text-align: center;
    margin-bottom: 0px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border:solid 1px rgb(227, 227, 227); */
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 8px 0px rgba(209, 209, 209, 0.25);
}

.category-card:hover {
    transform: translateY(-8px);
}

/* .category-card:hover .category-img-wrapper {
    box-shadow: var(--card-shadow-hover);
} */

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-img-wrapper {
    position: relative;
    width: 100%;
    /* aspect-ratio: 4/3;
    border-radius: 12px;
    box-shadow: var(--card-shadow); */
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 160px;
    border-radius: 10px 10px 0 0;
}
.foryou-category{
    max-height: 140px !important;
}
.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    min-height: 100px;
}

.category-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    padding: 10px;
}

.category-card:hover .category-label {
    color: var(--primary-color);
}

/* ===== BRIDE SECTION ===== */
.bride-section {
    margin: 20px 0 10px 0;
}

.bride-section-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.bride-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border: solid 1px #e3e3e3 !important; */
}

.bride-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-radius: 10px 10px 0 0;
}

.bride-card:hover .bride-img {
    transform: scale(1.06);
    border-radius: 10px 10px 0 0;
}

.bride-img-wrapper {
    width: 100%;
    /* aspect-ratio: 1/1; */
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.bride-img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px 10px 0 0;
}
.bride-img:hover{
    border-radius: 10px 10px 0 0;
}

.bride-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 5px;
    text-align: center;
    line-height: 1.3;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    background: #ffffff;
    border-radius: 0 0 10px 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-border-radius: 0 0 10px 10px !important;
    -moz-border-radius: 0 0 10px 10px !important;
    -ms-border-radius: 0 0 10px 10px !important;
    -o-border-radius: 0 0 10px 10px !important;
    border: solid 1px #DDD;
}

/* ===== BIZRATO SECTION ===== */
.bizrato-section {
    padding: 15px 0;
}

.bizrato-content h3 {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.bizrato-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.bizrato-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.bizrato-tag {
    background: #f1f5f9;
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bizrato-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.bizrato-cta-card {
    background: #d8e2ff;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #e0f2fe;
    transition: all 0.4s ease;
}

.bizrato-cta-card:hover {
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.bizrato-cta-card h4 {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.bizrato-cta-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn-add-business {
    background: linear-gradient(120deg, rgb(36, 154, 252) 0%, rgb(7, 92, 243) 100%) !important;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-business:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: #fff;
}

.btn-add-business i {
    margin-right: 6px;
}

/* ===== ESSENTIAL SECTION ===== */
.essential-section {
    padding: 50px 0 0;
}

.essential-section h1 {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.essential-section h2 {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.essential-section h4 {
    font-weight: 500;
    font-size: 15px;
    /* color: #ff6c00; */
    margin-bottom: 7px;
    margin-top: 10px;
}

.essential-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.essential-subsection {
    /* margin-bottom: 20px; */
}

.essential-subsection h3 {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.essential-subsection p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 400;
    padding-left: 0;
    margin-bottom: 10px;
}

.essential-subsection ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.essential-subsection ul li {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 0;
    margin-bottom: 10px;
}

.essential-subsection ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.essential-subsection ul li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 15px;
    vertical-align: middle;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===== COUNTER ANIMATION ===== */
.counter-value {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.box-ready{
    border: solid 1px #f1f1f1;
    padding: 1.8rem;
    border-radius: 15px;
}


/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.faq-section{
    border-top: solid 1px #efefef;
    border-bottom: solid 1px #efefef;
    padding: 2rem 0 1.4rem 0;
    margin-top: 1.4rem;
}
.faq-section h2{
    margin-bottom: 0;
}
.faq-section h3{
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 7px;
}
.faq-section .essential-subsection{
    margin-bottom: 1.4rem;
}
.accordion-item{
    background: #f2f4f9 !important;
    border: none !important;
    border-bottom: solid 1px #DDD !important;
    border-radius: 0px !important;
    padding: 0 !important;
}
.accordion-button{
    background: #f2f4f9 !important;
    padding: 1.2rem 0rem !important;
    font-size: 17px !important;
    font-weight: 600;
}
.accordion-body {
    padding: 0.8rem 0 0.8rem 0 !important;
    font-size: 16px;
    line-height: 1.6;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    background: #f2f4f9 !important;
}
.wedding-banner-bg{
    background: url('../../images/wedding-bg.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 2.5rem 0;
}

.wedding-banner-bg{
    background: url('../../images/fitness-bg2.jpg') center center !important;
    padding: 2.5rem 0;
    background-size: cover !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .page-header h1 {
        font-size: 1.6rem;
    }

    .category-img-wrapper {
        aspect-ratio: 16/12;
    }

    .bride-section {
        padding: 25px 15px;
    }

    .bride-section-title {
        font-size: 1.1rem;
    }

    .bizrato-content h3 {
        font-size: 1.05rem;
    }

    .essential-section h2 {
        font-size: 1.15rem;
    }

    .essential-subsection h3 {
        font-size: 1rem;
    }

    .wedding-banner-bg{
        background:#fff4e4 !important;
        background-size: cover;
        background-position: center;
        padding: 2.5rem 0;
    }
}

@media (max-width: 575px) {
    .category-label {
        font-size: 0.85rem;
    }
    .category-section {
        padding: 10px 0 20px 0;
    }
    .bride-label {
        font-size: 0.9rem;
        min-height: 52px;
    }

    .bizrato-tags {
        gap: 6px;
    }

    .bizrato-tag {
        padding: 5px 12px;
        font-size: 0.72rem;
    }
}