/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Design Tokens & Theme Variables */
:root {
    --primary-color: #001A9C;       /* Vibrant Royal/Cobalt Blue */
    --primary-light: #002EA6;       /* Bright Royal Blue */
    --primary-dark: #000B30;        /* Deep Dark Navy */
    --primary-rgb: 0, 26, 156;
    --secondary-color: #F1C40F;     /* Vibrant Gold */
    --secondary-hover: #D4AC0D;     /* Darker Gold */
    --secondary-light: #F9E79F;     /* Light Gold */
    --text-dark: #0f172a;           /* Slate 900 */
    --text-muted: #64748b;          /* Slate 500 */
    --bg-light: #f8fafc;            /* Slate 50 */
    --bg-card: #ffffff;
    --accent-red: #ef4444;
    --accent-green: #10b981;        /* Emerald 500 */
    --border-radius-sm: 6px;
    --border-radius-md: 14px;
    --border-radius-lg: 24px;
    --box-shadow: 0 4px 20px rgba(0, 26, 156, 0.05);
    --box-shadow-hover: 0 20px 35px rgba(0, 26, 156, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Top Header styling */
.top-header {
    background: linear-gradient(90deg, #00073d 0%, #001fc2 50%, #00073d 100%) !important;
    border-bottom: 1.5px solid rgba(241, 196, 15, 0.3) !important;
    padding: 6px 0;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    color: #ffffff !important;
    z-index: 1001;
    position: relative;
}

.top-header a {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--secondary-color) !important;
}

/* Custom Navbar styling */
.premium-navbar {
    background:#ffffff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--secondary-color) !important;
    padding: 0px 0;
    z-index: 1000;
    position: sticky;
    top: 0;
    box-shadow: 0 10px 30px rgba(5, 14, 27, 0.3), 0 0 15px rgba(241, 196, 15, 0.15);
}

@media (min-width: 992px) {
    .premium-navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 1320px !important;
    }
    .premium-navbar .navbar-collapse {
        display: flex !important;
        flex-grow: 1 !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .premium-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .premium-navbar .navbar-action-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        margin-left: 0 !important;
        width: auto !important;
    }
}

.premium-navbar .navbar-toggler {
    border-color: rgba(0, 15, 107, 0.2) !important;
    padding: 6px 10px;
}

.premium-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000f6b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.premium-navbar .navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #FFFFFF !important;
    letter-spacing: 0.5px;
}

/* Beautiful Glowing Logo Backdrop Filter & Glow to stand out on dark navbar */
.premium-navbar .navbar-brand img {
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.95)) drop-shadow(0px 0px 3px rgba(255, 255, 255, 1));
    transition: var(--transition);
}

.premium-navbar .navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 6px var(--secondary-color));
}

    .premium-navbar .nav-link {
        color: #000f6b !important;
        font-weight: 600 !important;
        font-family: 'Outfit', sans-serif;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.8px;
        padding: 8px 16px !important;
        border-radius: 4px;
        transition: var(--transition);
        position: relative;
    }

.premium-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after {
    width: calc(100% - 32px);
}

.premium-navbar .nav-link:hover, 
.premium-navbar .nav-link.active {
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.02);
}

/* Luxury warning color overrides to match premium gold logo */
.text-warning {
    color: var(--secondary-color) !important;
}
.btn-warning {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-dark) !important;
}
.bg-warning {
    background-color: var(--secondary-color) !important;
    color: var(--primary-dark) !important;
}

/* Custom Premium Buttons */
.btn-premium {
    background: var(--primary-color);
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(5, 29, 56, 0.15);
}

.btn-premium:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(5, 29, 56, 0.25);
}

.btn-premium-gold {
    background: linear-gradient(135deg, #F1C40F 0%, #F5D033 50%, #E6B800 100%) !important;
    color: #000B30 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none !important;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4) !important;
}

.btn-premium-gold:hover {
    background: linear-gradient(135deg, #E6B800 0%, #F5D033 50%, #F1C40F 100%) !important;
    transform: translateY(-1.5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.55) !important;
}

/* Navbar Login button specifically matching the upload */
.premium-navbar .btn-outline-light {
    background: #000F6B !important;
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700 !important;
    padding: 8px 22px !important;
    border-radius: 4px !important;
    transition: var(--transition) !important;
}

.premium-navbar .btn-outline-light:hover {
    background: #FFFFFF !important;
    color: #000F6B !important;
    border-color: #FFFFFF !important;
    transform: translateY(-1px);
}

.btn-premium-outline {
    background: transparent;
    color: var(--secondary-color) !important;
    border: 1.5px solid var(--secondary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-premium-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-dark) !important;
}

/* Float Panel styling with premium glassmorphism and subtle gold glow */
.float-search-panel {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 11, 48, 0.1), 0 0 0 1px rgba(241, 196, 15, 0.12);
    border: none;
    padding: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.float-search-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F1C40F, #FFE89D, #B8860B);
}

.float-search-panel:hover {
    box-shadow: 0 30px 60px rgba(0, 11, 48, 0.18), 0 0 25px rgba(241, 196, 15, 0.25);
    transform: translateY(-4px);
}

/* Beautiful Premium Form Elements */
.form-control, .form-select {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    background-color: #f8fafc !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease-in-out !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3.5px rgba(212, 175, 55, 0.2) !important;
    outline: none !important;
    background-color: #ffffff !important;
}

.input-group-text {
    background-color: var(--primary-light) !important;
    color: var(--secondary-color) !important;
    border: 1.5px solid #e2e8f0 !important;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
    font-size: 0.9rem !important;
}

.input-group .form-control {
    border-radius: 0 8px 8px 0 !important;
}

/* Premium Luxury Carousel Slider styling */
.carousel-item {
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

/* Ken Burns background zoom animation */
.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
}

.carousel-item.active .carousel-bg {
    animation: kenburns 15s ease-out forwards;
}

@keyframes kenburns {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.12);
    }
}

/* Luxury gradient overlay to make text highly legible and warm */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 31 191) 0%, rgb(0 31 192 / 44%) 50%, rgb(0 30 190) 100%);
    z-index: 2;
}

/* Traditional wedding vector pattern */
.carousel-deco-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: radial-gradient(rgba(241, 196, 15, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 2;
    pointer-events: none;
}

/* Elegant Rotating Mandala Design */
.rotating-mandala-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

.rotating-mandala {
    animation: rotateMandala 80s linear infinite;
    filter: drop-shadow(0 0 25px rgba(241, 196, 15, 0.25));
    opacity: 0.18;
    transition: var(--transition);
}

@keyframes rotateMandala {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.carousel-caption-custom {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Beautiful Text Gradient */
.text-gold-gradient {
    background: linear-gradient(135deg, #FFE89D 0%, #F1C40F 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #f1d279) !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

/* Play button glow animation */
.play-btn-circle {
    transition: var(--transition);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.play-btn-circle:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color) !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.play-btn-circle:hover i {
    color: var(--primary-dark) !important;
}

/* Fine-tune carousel control buttons for premium look */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
    z-index: 10;
    opacity: 0.7;
    transition: var(--transition);
}

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

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(10, 30, 54, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    padding: 22px;
    background-size: 50%;
}

.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

/* Animations for active slide content */
.carousel-item.active .animate-fadeIn {
    animation: fadeIn 1s ease-out both;
}

.carousel-item.active .animate-slideDown {
    animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .animate-slideUp {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean UI styles to remove inline CSS */
.carousel-indicators-custom {
    z-index: 10;
}

.hero-carousel-item {
    padding: 70px 0 150px;
}

.hero-content-container {
    z-index: 5;
}

.hero-badge {
    font-family: 'Outfit';
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.45);
}

.hero-lead {
    max-width: 550px;
    font-size: 1.1rem;
    line-height: 1.55;
    letter-spacing: 0.2px;
}

.hero-btn-primary {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hero-play-link {
    font-weight: 500;
}

.hero-play-circle {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero-stats-row {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 24px;
}

.hero-stats-icon {
    font-size: 1.25rem;
}

.hero-stats-label {
    font-size: 0.75rem;
}

.search-container-offset {
    margin-top: -60px;
    position: relative;
    z-index: 15;
}

.search-panel-title {
    font-family: 'Outfit';
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 6px;
}

.text-size-sm {
    font-size: 0.8rem;
}

.text-size-xs {
    font-size: 0.75rem;
}

.section-heading-outfit {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
}

.link-view-all {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.trust-title-sm {
    font-size: 0.9rem;
}

.trust-text-xs {
    font-size: 0.8rem;
}


/* Category Grid & Cards */
.category-box {
    background: linear-gradient(90deg, #F1C40F 0%, #FFE89D 50%, #F1C40F 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    padding: 20px 10px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.category-box:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(223, 179, 60, 0.12);
    transform: translateY(-4px);
}

.category-box i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.category-box:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.category-box span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Premium Packages Box */
.package-card-custom {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.package-card-custom:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(223, 179, 60, 0.3);
}

.package-card-custom.popular {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(223, 179, 60, 0.08);
}

.package-card-custom.popular .popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--secondary-color), #f1d279);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(223, 179, 60, 0.25);
}

.package-card-custom .plan-price-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
}

/* Modern & Beautiful Pricing Section */
.premium-pricing-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(5, 29, 56, 0.04) 100%);
    padding: 10px 0;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.pricing-header {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Beautiful Pricing Cards */
.pricing-card-wrapper {
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 29, 56, 0.08);
    border-color: rgba(223, 179, 60, 0.4);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 20px 45px rgba(223, 179, 60, 0.12);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(223, 179, 60, 0.18);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #f1d279);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(223, 179, 60, 0.3);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(5, 29, 56, 0.04);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.pricing-card.featured .pricing-icon {
    background: rgba(223, 179, 60, 0.1);
    color: var(--secondary-color);
}

.pricing-card.featured:hover .pricing-icon {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.pricing-price {
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-price h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.pricing-price .duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li i {
    font-size: 0.95rem;
}

.pricing-features li.disabled {
    color: #94a3b8;
}

.pricing-features li.disabled i {
    color: #cbd5e1 !important;
}

.pricing-btn {
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Profile slider styling */
.profile-slider-wrapper {
    position: relative;
    padding: 0 35px;
}

.profile-slider-container {
    overflow: hidden;
    width: 100%;
}

.profile-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Beautiful Premium Profile Card */
.profile-compact-card {
    flex: 0 0 calc(20% - 16px);
    width: calc(20% - 16px);
    min-width: 230px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 11, 48, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
}

.profile-compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 26, 156, 0.08);
    border-color: rgba(241, 196, 15, 0.4);
}

.profile-img-container {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* Gradient overlay on image bottom */
.profile-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 11, 48, 0.5), transparent);
    pointer-events: none;
}

/* Wishlist button styles */
.btn-wishlist {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 5;
}

.btn-wishlist:hover {
    transform: scale(1.1) !important;
    background: #ffffff !important;
    color: #ef4444 !important;
}

.btn-wishlist.active {
    background: #ffffff !important;
    color: #ef4444 !important;
    animation: heartBeat 0.3s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/* Responsive Media Queries for Profile Slider Track Cards */
@media (max-width: 1200px) {
    .profile-compact-card {
        flex: 0 0 calc(25% - 15px);
        width: calc(25% - 15px);
    }
}
@media (max-width: 992px) {
    .profile-compact-card {
        flex: 0 0 calc(33.333% - 14px);
        width: calc(33.333% - 14px);
    }
}
@media (max-width: 768px) {
    .profile-compact-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        min-width: unset;
    }
}
@media (max-width: 576px) {
    .profile-compact-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: unset;
    }
}


.profile-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    z-index: 10;
    transition: var(--transition);
}

.profile-slider-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.08);
}

.profile-slider-btn.btn-prev {
    left: -5px;
}

.profile-slider-btn.btn-next {
    right: -5px;
}

.verified-icon {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-left: 4px;
}


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
    border: 2px solid #ffffff;
    z-index: 2;
}

.testimonial-slides-wrapper {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: var(--transition);
}

.testimonial-dot.active {
    width: 22px;
    border-radius: 5px;
    background-color: var(--secondary-color);
}

/* Flourish Divider */
.flourish-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0 25px;
}

.flourish-divider::before,
.flourish-divider::after {
    content: '';
    height: 1.5px;
    width: 70px;
    background: linear-gradient(to right, transparent, var(--secondary-color));
}

.flourish-divider::after {
    background: linear-gradient(to left, transparent, var(--secondary-color));
}

.flourish-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Footer styling */
.premium-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
    border-top: 4px solid var(--secondary-color);
}

/* Trust Badges styles */
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    background: #ffffff;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 10px 25px rgba(0, 8, 65, 0.02);
}

.trust-badge-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 8, 65, 0.08);
    border-color: rgba(241, 196, 15, 0.45);
}

.trust-badge-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.12) 0%, rgba(241, 196, 15, 0.03) 100%);
    color: #D4AC0D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    border: 1.5px solid rgba(241, 196, 15, 0.3);
    transition: var(--transition);
}

.trust-badge-item:hover .trust-badge-icon {
    background: linear-gradient(135deg, #F1C40F 0%, #D4AC0D 100%);
    color: #000B30;
    border-color: var(--secondary-color);
    transform: rotate(360deg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .category-box {
        height: 100px;
    }
    .profile-img-container {
        height: 200px;
    }
    .cta-card-premium {
        height: auto;
        min-height: 200px;
        margin-bottom: 10px;
    }
    .testimonial-slides-wrapper {
        min-height: 260px;
    }
}

/* ==========================================
   Dashboard Specific Premium Styling
   ========================================== */
.badge-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: 1px solid var(--secondary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.progress-bar-custom {
    background-color: #cbd5e1;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    background: linear-gradient(90deg, var(--secondary-color), #f1d279);
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 42, 67, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.match-score-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.75rem;
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.25);
    border: none;
}

/* Dashboard Navigation Tabs styling */
#dashboardTabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    background-color: #fafbfd;
    border: 1.5px solid #f1f5f9;
    transition: var(--transition);
    font-size: 0.9rem;
}

#dashboardTabs .nav-link:hover {
    color: var(--secondary-color);
    background-color: #ffffff;
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

#dashboardTabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    border-color: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(16, 42, 67, 0.15);
}

/* Fix alert styling */
.bg-warning-light {
    background-color: rgba(245, 158, 11, 0.06);
    border-left: 4px solid #f59e0b !important;
}

.border-left {
    border-left-style: solid;
}

/* ==========================================
   Search Page & Advanced Filter Styles
   ========================================== */
.search-banner-premium {
    border-bottom: 3px solid var(--secondary-color);
}

.filter-sidebar-card {
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    background: #ffffff;
    position: sticky;
    top: 90px;
}

.filter-sidebar-card .form-label {
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.filter-sidebar-card .form-control,
.filter-sidebar-card .form-select {
    font-size: 0.85rem;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.filter-sidebar-card .form-control:focus,
.filter-sidebar-card .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background-color: #ffffff;
}

.hover-gold {
    transition: var(--transition);
}
.hover-gold:hover {
    color: var(--secondary-color) !important;
}

/* Premium Profile Card Design */
.premium-profile-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: var(--transition);
}

.premium-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 42, 67, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
}

.premium-profile-card:hover .profile-card-image {
    transform: scale(1.03);
}

.profile-card-image {
    overflow: hidden;
    transition: var(--transition);
}

.profile-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(9, 28, 44, 0.75), transparent);
    z-index: 1;
}

/* Tag overlays */
.premium-badge-tag {
    background: linear-gradient(135deg, var(--secondary-color), #f7e19d);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
}

.match-badge-tag {
    background: linear-gradient(135deg, #ef4444, #f43f5e);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
}

/* Overlay Wishlist toggler */
.btn-wishlist-overlay {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
    z-index: 2;
}

.btn-wishlist-overlay:hover,
.btn-wishlist-overlay.active {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.1);
}

.verified-check-icon {
    font-size: 0.9rem;
}

.w-15 {
    width: 18px;
    display: inline-block;
    text-align: center;
}

/* ==========================================
   Hero Section & Search Console Redesign Styles
   ========================================== */

/* Left-side Text Enhancements */
.hero-carousel-item .col-lg-7 {
    padding-right: 4%;
}

.hero-carousel-item h1 {
    font-size: 3.5rem !important;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Floating Profile Cards Container (Right Column) */
.hero-profile-showcase {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Primary floating profile card */
.profile-preview-card {
    position: absolute;
    width: 290px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(241, 196, 15, 0.1);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-preview-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(241, 196, 15, 0.6);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(241, 196, 15, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Background floating badge decoration */
.floating-match-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #F1C40F, #D4AC0D);
    color: #000B30;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.4);
    animation: floatBadge 5s ease-in-out infinite alternate;
    z-index: 10;
}

/* Secondary mini-cards floating in background */
.mini-preview-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    z-index: 3;
    pointer-events: none;
}

.mini-card-left {
    left: -10px;
    top: 50px;
    animation: floatMiniLeft 7s ease-in-out infinite;
}

.mini-card-right {
    right: -10px;
    bottom: 50px;
    animation: floatMiniRight 8s ease-in-out infinite;
}

.mini-card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--secondary-color);
    object-fit: cover;
}

.mini-card-info h6 {
    font-size: 0.8rem;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.mini-card-info span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

/* Inside Preview Card components */
.preview-card-img-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 12px;
}

.preview-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.profile-preview-card:hover .preview-card-img {
    transform: scale(1.08);
}

.preview-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 11, 48, 0.9), transparent);
}

.preview-badge-bottom {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(16, 185, 129, 0.9);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.preview-card-details h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.preview-card-details p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    line-height: 1.4;
}

.preview-card-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.preview-card-meta span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

/* Floating Animations */
@keyframes floatCard {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatBadge {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5px, -5px) scale(1.05); }
}

@keyframes floatMiniLeft {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-8px) translateX(4px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes floatMiniRight {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(8px) translateX(-4px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Glassmorphic Search Input wrappers */
.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #F1C40F;
    z-index: 10;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input-wrapper .form-select,
.search-input-wrapper .form-control {
    padding-left: 36px !important;
}

.search-input-wrapper:focus-within i {
    color: var(--primary-light);
    transform: translateY(-50%) scale(1.1);
}

.age-range-container {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 2px 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2px;
}

.age-range-container:focus-within {
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(212, 175, 55, 0.2);
}

.age-range-container .form-control {
    border: none !important;
    background: transparent !important;
    padding: 8px 6px !important;
}

.age-range-container .form-control:focus {
    box-shadow: none !important;
}

.search-label-custom {
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
    color: var(--primary-color) !important;
}

.float-search-panel {
    border: 1.5px solid rgba(241, 196, 15, 0.25) !important;
}

/* Vertical Hero Search Card Overlay Styles */
.hero-section-wrapper {
    position: relative;
    width: 100%;
}

.hero-search-overlay {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.hero-vertical-search-card {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1.5px solid rgba(241, 196, 15, 0.35) !important;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 8, 65, 0.15), 0 0 30px rgba(241, 196, 15, 0.1);
}

.mobile-search-card {
    background: #ffffff;
    margin-top: 15px;
    border: 1px solid #e2e8f0;
}

/* Infinite Scrolling Marquee Ticker Styles */
.marquee-ticker-container {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, #F1C40F 0%, #FFE89D 50%, #F1C40F 100%);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid #D4AC0D;
    padding: 10px 0;
    z-index: 10;
    position: relative;
    width: 100%;
}

.marquee-ticker-inner {
    display: inline-flex;
    animation: marqueeLoop 30s linear infinite;
    gap: 50px;
    padding-left: 50px;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #000B30;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-item span {
    font-size: 1.05rem;
}

@keyframes marqueeLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Redesigned Premium CTA Cards */
.cta-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 255px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    z-index: 1;
    transition: var(--transition);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 11, 48, 0.05);
}

.cta-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 11, 48, 0.85) 0%, rgba(0, 26, 156, 0.6) 100%);
    z-index: -1;
    transition: var(--transition);
}

.cta-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 26, 156, 0.2);
    border-color: rgba(241, 196, 15, 0.5);
}

.cta-card-premium h4 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #ffffff !important;
}

.cta-card-premium p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 380px;
    margin-bottom: 22px;
}

/* Beautiful Testimonial Grid Cards - Three Testimonials side-by-side */
.testimonial-grid-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--border-radius-md);
    padding: 35px 24px 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 11, 48, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.testimonial-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 26, 156, 0.06);
    border-color: rgba(241, 196, 15, 0.3);
}

.quote-icon-top {
    font-size: 1.8rem;
    color: rgba(241, 196, 15, 0.2);
    margin-bottom: 10px;
}

.testimonial-grid-card .avatar-wrapper {
    width: 90px;
    height: 90px;
    position: relative;
    margin-bottom: 15px;
}

.testimonial-grid-card .avatar-fallback {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.testimonial-grid-card .avatar-wrapper img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color) !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-grid-card .heart-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: var(--accent-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

.story-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    flex-grow: 1;
}

.couple-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.wedding-date {
    font-size: 11px;
    color: var(--text-muted);
}

/* Beautiful Footer Overrides */
.premium-footer {
    /*background: linear-gradient(180deg, #000B30 0%, #00030f 100%) !important;*/
    background: radial-gradient(circle at center, #00105C 0%, #00072C 100%);
    border-top: 3.5px solid var(--secondary-color) !important;
    padding: 40px 0 30px 0 !important;
    color: #ffffff !important;
}

.premium-footer h5 {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 1.2px;
    border-bottom: 1.5px solid rgba(241, 196, 15, 0.25);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.premium-footer a {
    color: rgba(255, 255, 255, 0.72) !important;
    transition: var(--transition) !important;
    text-decoration: none;
    font-size: 13.5px;
}

.premium-footer a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.premium-footer p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 13.5px;
}

.footer-map-container {
    border: 2px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.footer-map-container:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

/* Testimonial Swiper Styles */
.testimonial-swiper {
    width: 100%;
    padding: 10px 0 40px 0 !important;
}

.testimonial-prev, .testimonial-next {
    color: var(--primary-color) !important;
    background: #ffffff;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 11, 48, 0.08);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: scale(1.05);
}

.testimonial-prev:after, .testimonial-next:after {
    font-size: 16px !important;
    font-weight: 800;
}

.testimonial-prev {
    left: 0px !important;
}

.testimonial-next {
    right: 0px !important;
}

.testimonial-pagination {
    bottom: 0px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    width: 24px;
    border-radius: 4px;
}
.text-justify{
    text-align:justify!important;
}

/* Premium Mobile Navbar Drawer Enhancements */
@media (max-width: 991px) {
    .premium-navbar {
        padding: 10px 0 !important;
    }
    .navbar-collapse {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 11, 48, 0.08);
        padding: 20px 15px;
        margin-top: 10px;
        border: 1px solid rgba(0, 15, 107, 0.08);
        animation: slideDownCollapse 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .premium-navbar .nav-item {
        width: 100%;
        margin-bottom: 8px;
    }
    .premium-navbar .nav-link {
        padding: 12px 16px !important;
        border-radius: 10px;
        background: #f8fafc;
        border: 1px solid transparent;
        color: #000f6b !important;
        transition: all 0.3s ease;
    }
    .premium-navbar .nav-link:hover, 
    .premium-navbar .nav-link.active {
        background: rgba(0, 26, 156, 0.05) !important;
        color: var(--secondary-color) !important;
        border-color: rgba(0, 26, 156, 0.1);
        transform: translateX(4px);
    }
    .premium-navbar .nav-link::after {
        display: none !important; /* Hide desktop line animation */
    }
    /* Align mobile action buttons stack */
    .navbar-action-buttons {
        border-top: 1px solid #f1f5f9;
        padding-top: 15px;
        margin-top: 10px;
    }
    .navbar-action-buttons .btn {
        width: 100% !important;
        text-align: center;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        height: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-action-buttons .dropdown {
        width: 100%;
    }
    .navbar-action-buttons .dropdown button {
        width: 100% !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-weight: 600 !important;
    }
        .navbar-action-buttons .dropdown-menu {
            position: static !important;
            float: none;
            width: 100%;
            margin-top: 8px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            box-shadow: none;
            padding: 8px;
          
            border-radius: 10px;
        }
    .navbar-action-buttons .dropdown-menu li {
        width: 100%;
    }
    .navbar-action-buttons .dropdown-menu .dropdown-item {
        border-radius: 6px;
        padding: 10px 16px;
    }
}

@keyframes slideDownCollapse {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width:769px){
    .hero-carousel-item h1 {
        font-size: 35px !important;
        line-height: 1.15;
        letter-spacing: -0.5px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    .hero-carousel-item {
        padding: 30px 0 60px;
    }

}

/* Luxury Success Stories Section Styling */
.success-stories-section {
    background-color: #030514;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 100 100'%3E%3Cg stroke='%23e5c158' stroke-width='0.45' fill='none' stroke-opacity='0.25'%3E%3Cpath d='M50 0 C50 20 30 30 30 50 C30 70 50 80 50 100'/%3E%3Cpath d='M50 0 C50 20 70 30 70 50 C70 70 50 80 50 100'/%3E%3Cpath d='M0 50 C20 50 30 30 50 30 C70 30 80 50 100 50'/%3E%3Cpath d='M0 50 C20 50 30 70 50 70 C70 70 80 50 100 50'/%3E%3Ccircle cx='50' cy='50' r='15' stroke-dasharray='2 1'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cpath d='M50 30 A20 20 0 0 0 30 50 A20 20 0 0 0 50 70 A20 20 0 0 0 70 50 A20 20 0 0 0 50 30 Z' stroke-width='0.2'/%3E%3Cpath d='M10 10 C30 10 40 30 50 50 C40 70 30 90 10 90'/%3E%3Cpath d='M90 10 C70 10 60 30 50 50 C60 70 70 90 90 90'/%3E%3Ccircle cx='50' cy='50' r='2' fill='%23e5c158' fill-opacity='0.4'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at center, #0a0f30 0%, #02030a 100%);
    background-repeat: repeat, no-repeat;
    background-size: 150px 150px, cover;
    background-position: center, center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-top: 2px solid rgba(241, 196, 15, 0.4);
    border-bottom: 2px solid rgba(241, 196, 15, 0.4);
}

.gold-wall-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 600px;
    opacity: 0.38;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition);
}

.decor-left {
    left: -80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23F1C40F' stroke-width='0.55' stroke-opacity='0.45'%3E%3Cpath d='M10 90 C-10 90 -20 70 -10 50 C2 30 25 15 30 -5 C30 15 25 35 40 50 C55 65 48 82 35 88 C28 90 20 90 10 90 Z'/%3E%3Ccircle cx='10' cy='55' r='5'/%3E%3Ccircle cx='20' cy='65' r='3'/%3E%3Cpath d='M0 70 C5 60 20 60 25 70'/%3E%3Ccircle cx='20' cy='45' r='12' stroke-dasharray='2 2'/%3E%3Ccircle cx='20' cy='45' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-position: left center;
}

.decor-right {
    right: -80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23F1C40F' stroke-width='0.55' stroke-opacity='0.45'%3E%3Cpath d='M90 90 C110 90 120 70 110 50 C98 30 75 15 70 -5 C70 15 75 35 60 50 C45 65 52 82 65 88 C72 90 80 90 90 90 Z'/%3E%3Ccircle cx='90' cy='55' r='5'/%3E%3Ccircle cx='80' cy='65' r='3'/%3E%3Cpath d='M100 70 C95 60 80 60 75 70'/%3E%3Ccircle cx='80' cy='45' r='12' stroke-dasharray='2 2'/%3E%3Ccircle cx='80' cy='45' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-position: right center;
}

.testimonial-luxury-card {
    background: rgba(13, 17, 39, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(241, 196, 15, 0.25);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-luxury-card:hover {
    border-color: rgba(241, 196, 15, 0.6);
    box-shadow: 0 30px 70px rgba(241, 196, 15, 0.15);
    transform: translateY(-5px);
}

.luxury-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 3px solid rgba(241, 196, 15, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: #111;
}

.luxury-couple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-luxury-card:hover .luxury-couple-img {
    transform: scale(1.08);
}

.heart-badge-luxury {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid rgba(241, 196, 15, 0.8);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 2;
    animation: pulse-heart 2s infinite;
}

@keyframes pulse-heart {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.luxury-story-content {
    padding: 10px 10px 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.luxury-quote-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #F9E79F, #F1C40F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 10px;
}

.luxury-story-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
    font-weight: 400;
}

.luxury-couple-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.luxury-couple-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #F1C40F;
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.luxury-wedding-date {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Custom Swiper Controls for Luxury Section */
.testimonial-swiper {
    position: relative;
    padding-bottom: 50px !important;
}

.testimonial-prev, .testimonial-next {
    color: #F1C40F !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(241, 196, 15, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: #F1C40F;
    color: #030514 !important;
    border-color: #F1C40F;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.4);
}

.testimonial-prev:after, .testimonial-next:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #F1C40F !important;
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(241, 196, 15, 0.5);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .luxury-story-content {
        padding: 25px 0 0 0;
    }
    .testimonial-luxury-card {
        padding: 20px;
    }
    .luxury-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    .luxury-story-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .success-stories-section {
        padding: 50px 0;
    }
    .gold-wall-decor {
        width: 150px;
        opacity: 0.1;
    }
    .decor-left { left: -40px; }
    .decor-right { right: -40px; }
}

/* Quick Contact Section Styling */
.quick-contact-section {
  /*  background: radial-gradient(circle at center, #00105C 0%, #00072C 100%);
    border-top: 1.5px solid rgba(241, 196, 15, 0.35);
    border-bottom: 1.5px solid rgba(241, 196, 15, 0.35);*/
    overflow: hidden;
}

.btn-luxury-call {
    background: linear-gradient(135deg, #F1C40F 0%, #D4AC0D 100%);
    color: #00072C !important;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
    transition: all 0.3s ease;
}

.btn-luxury-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.5);
    background: transparent;
    border-color: #F1C40F;
    color: #F1C40F !important;
}

.btn-luxury-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-luxury-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: transparent;
    border-color: #25D366;
    color: #25D366 !important;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.animate-shake {
    animation: shake 2.5s infinite;
}
@media (max-width:769px){
    .para{
        display:none!important;
    }
}
