/* ==========================================================================
   Enrich Style - Premium Women's Luxury Design System
   Theme: Dark Feminine Elegance | Rose Gold & Champagne Accents
   ========================================================================== */

/* ------------------------------------------
   BASE
   ------------------------------------------ */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: #F1E8E8;
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--accent-rose);
    color: #fff;
}

/* ------------------------------------------
   TYPOGRAPHY
   ------------------------------------------ */
.luxury-text {
    font-family: var(--font-luxury);
    letter-spacing: 1px;
}
.luxury-title {
    font-family: var(--font-luxury);
    color: #fff;
    letter-spacing: 0.5px;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--accent-rose), #F5D0C5, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--accent-rose);
}
.hover-gold:hover {
    color: var(--accent-rose) !important;
}
.border-gold {
    border-color: rgba(212, 160, 176, 0.3) !important;
}

/* ------------------------------------------
   PRELOADER
   ------------------------------------------ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}
.preloader-logo {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
}
.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-rose), var(--accent-gold));
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* ------------------------------------------
   CURSOR FOLLOWER
   ------------------------------------------ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-rose);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}
.cursor-dot.hovered {
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 176, 0.2);
    border: 2px solid var(--accent-rose);
}

/* ------------------------------------------
   SCROLLBAR
   ------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary-bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-rose), var(--accent-gold));
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-rose); }

/* ------------------------------------------
   GLASSMORPHISM CARDS
   ------------------------------------------ */
.glass-card {
    background: rgba(30, 16, 20, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 160, 176, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
    position: relative;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 176, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(212, 160, 176, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 160, 176, 0.06);
}
.glass-card .card-img-top {
    transition: transform 0.6s ease;
}
.glass-card:hover .card-img-top {
    transform: scale(1.05);
}

/* ------------------------------------------
   BUTTONS (Feminine Premium)
   ------------------------------------------ */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-gold) 100%);
    color: #fff !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}
.btn-gold:hover::before {
    left: 100%;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 160, 176, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-rose) !important;
    border: 2px solid var(--accent-rose);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline-gold:hover {
    background: var(--accent-rose);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 160, 176, 0.3);
}

.btn-gold-pulse {
    animation: goldPulse 2.5s infinite;
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 160, 176, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(212, 160, 176, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 160, 176, 0); }
}

/* ------------------------------------------
   NAVIGATION (Women's Luxury Design)
   ------------------------------------------ */
.navbar-custom {
    background: rgba(10, 8, 9, 0.75) !important;
    border-bottom: 1px solid rgba(212, 160, 176, 0.06) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
    padding: 22px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar-custom.scrolled {
    padding: 8px 0;
    background: rgba(8, 5, 6, 0.98) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 160, 176, 0.03);
    border-bottom: 1px solid rgba(212, 160, 176, 0.15) !important;
}
.navbar-custom .navbar-brand {
    position: relative;
}
.navbar-custom .navbar-brand::after {
    content: '✦';
    position: absolute;
    top: -8px;
    right: -18px;
    font-size: 0.5rem;
    color: var(--accent-rose);
    animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}
.navbar-custom .navbar-nav .nav-link {
    color: #E8D5D5 !important;
    font-weight: 400;
    margin: 0 16px;
    font-size: 0.78rem;
    position: relative;
    padding: 6px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.navbar-custom .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-rose), var(--accent-gold), transparent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}
.navbar-custom .navbar-nav .nav-link:hover::before,
.navbar-custom .navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}
.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active,
.navbar-custom .navbar-nav .nav-link.show {
    color: var(--accent-rose) !important;
    text-shadow: 0 0 20px rgba(212, 160, 176, 0.15);
}
.navbar-brand img {
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .navbar-nav:hover .nav-link { opacity: 0.4; }
    .navbar-nav:hover .nav-link:hover { opacity: 1; }
    .navbar-nav .dropdown:hover .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    .dropdown-menu-custom {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

.dropdown-menu-custom {
    background: rgba(18, 10, 12, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 160, 176, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212, 160, 176, 0.03) !important;
    padding: 10px 0 !important;
    margin-top: 12px !important;
}
.dropdown-menu-custom .dropdown-item {
    color: #D4C0C0 !important;
    font-size: 0.78rem;
    font-weight: 400;
    padding: 10px 24px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}
.dropdown-menu-custom .dropdown-item::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 6px;
    width: 0;
    height: 1px;
    background: var(--accent-rose);
    transition: width 0.3s ease;
}
.dropdown-menu-custom .dropdown-item:hover::after {
    width: calc(100% - 32px);
}
.dropdown-menu-custom .dropdown-item:hover {
    color: var(--accent-rose) !important;
    background: rgba(212, 160, 176, 0.06) !important;
    padding-left: 30px !important;
}

@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        background: rgba(12, 8, 10, 0.99) !important;
        border: 1px solid rgba(212, 160, 176, 0.12) !important;
        border-radius: 16px !important;
        padding: 20px !important;
        margin-top: 15px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(20px) !important;
    }
    .navbar-custom .navbar-nav .nav-link {
        margin: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        padding-bottom: 10px !important;
    }
    .navbar-custom .navbar-nav .nav-link::before { display: none !important; }
    .navbar-toggler {
        border-color: var(--accent-rose) !important;
    }
    .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='rgba(212, 160, 176, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

/* ------------------------------------------
   HERO / SLIDER (Unique Women's Design)
   ------------------------------------------ */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 8, 9, 0.92) 0%, rgba(10, 8, 9, 0.25) 50%, rgba(212, 160, 176, 0.08) 100%);
    z-index: 2;
}
.hero-section .swiper-slide {
    transform: scale(1);
    transition: transform 10s ease;
}
.hero-section .swiper-slide-active {
    transform: scale(1.08);
}

/* Decorative diamond shape on hero */
.hero-diamond {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 160, 176, 0.08);
    transform: rotate(45deg);
    top: -80px;
    right: -80px;
    z-index: 1;
    pointer-events: none;
    animation: diamondRotate 30s linear infinite;
}
.hero-diamond-2 {
    width: 500px;
    height: 500px;
    top: auto;
    bottom: -150px;
    left: -150px;
    border-color: rgba(212, 160, 176, 0.04);
    animation-duration: 40s;
    animation-direction: reverse;
}
@keyframes diamondRotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

/* Hero text reveal animation */
.hero-title-line {
    display: block;
    overflow: hidden;
}
.hero-title-line span {
    display: block;
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(100%);
    opacity: 0;
}
.hero-title-line:nth-child(1) span { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) span { animation-delay: 0.6s; }
@keyframes heroTextReveal {
    to { transform: translateY(0); opacity: 1; }
}

/* Hero decorative line */
.hero-deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-rose), var(--accent-gold));
    margin: 20px 0;
    animation: decoLineGrow 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes decoLineGrow {
    from { width: 0; }
    to { width: 60px; }
}

/* Floating rose petals (CSS only) */
.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, var(--accent-rose), transparent);
    border-radius: 50% 0 50% 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    animation: petalFall 12s linear infinite;
}
.petal:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.petal:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 12s; width: 8px; height: 8px; }
.petal:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 16s; }
.petal:nth-child(4) { left: 70%; animation-delay: 6s; animation-duration: 11s; width: 10px; height: 10px; }
.petal:nth-child(5) { left: 85%; animation-delay: 8s; animation-duration: 13s; }
@keyframes petalFall {
    0% { top: -20px; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { top: 100vh; opacity: 0; transform: rotate(720deg); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceDown 2s infinite;
}
.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-rose), transparent);
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------
   SECTION DIVIDERS
   ------------------------------------------ */
.section-divider {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-rose), transparent);
}
.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-rose), transparent);
}

/* ------------------------------------------
   MARQUEE
   ------------------------------------------ */
.marquee-section {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(212, 160, 176, 0.08);
    border-bottom: 1px solid rgba(212, 160, 176, 0.08);
    background: rgba(0,0,0,0.2);
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    color: rgba(255,255,255,0.12);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}
.marquee-track .highlight {
    color: var(--accent-rose);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ------------------------------------------
   NOISE TEXTURE
   ------------------------------------------ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.012;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ------------------------------------------
   STATS
   ------------------------------------------ */
.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-rose), #F5D0C5, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item .stat-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ------------------------------------------
   BACK TO TOP
   ------------------------------------------ */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(212, 160, 176, 0.3);
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 160, 176, 0.5);
}

/* ------------------------------------------
   FLOATING CONTACT
   ------------------------------------------ */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9995;
}
.btn-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}
.btn-float:hover {
    transform: scale(1.1) translateY(-3px);
    color: #fff;
}
.btn-float .tooltip-text {
    position: absolute;
    right: 65px;
    background: rgba(10, 8, 9, 0.95);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 160, 176, 0.2);
}
.btn-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}
.btn-call {
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
    color: #fff;
}
.btn-whatsapp { background: #25D366; }

/* ------------------------------------------
   PAGE TRANSITION
   ------------------------------------------ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    z-index: 99998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* ------------------------------------------
   IMAGE REVEAL
   ------------------------------------------ */
.reveal-img {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-img.revealed {
    clip-path: inset(0 0 0 0);
}

/* ------------------------------------------
   PARALLAX SHAPES
   ------------------------------------------ */
.parallax-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.parallax-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-rose), transparent 70%);
    top: -100px;
    right: -100px;
    opacity: 0.06;
    filter: blur(60px);
}
.parallax-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold), transparent 70%);
    bottom: -80px;
    left: -80px;
    opacity: 0.05;
    filter: blur(50px);
}

/* ------------------------------------------
   ICON BOXES
   ------------------------------------------ */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(212, 160, 176, 0.08);
    border: 1px solid rgba(212, 160, 176, 0.12);
    font-size: 1.5rem;
    color: var(--accent-rose);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.icon-box:hover {
    background: rgba(212, 160, 176, 0.15);
    transform: scale(1.05);
}

/* ------------------------------------------
   STUDENT SIDEBAR
   ------------------------------------------ */
.student-sidebar .list-group-item.active-gold {
    background-color: rgba(212, 160, 176, 0.1) !important;
    border-left: 3px solid var(--accent-rose) !important;
    color: var(--accent-rose) !important;
    font-weight: 600;
}
.student-sidebar .list-group-item {
    transition: all 0.3s ease;
}
.student-sidebar .list-group-item:hover {
    background-color: rgba(255,255,255,0.02);
    padding-left: 20px !important;
}

/* ------------------------------------------
   PLACEHOLDER
   ------------------------------------------ */
.placeholder-image {
    background: linear-gradient(135deg, #1E1215 0%, #120A0C 100%);
    width: 100%;
    border: 1px solid rgba(212, 160, 176, 0.08);
}

/* ------------------------------------------
   SECTION TITLE
   ------------------------------------------ */
.section-title-wrapper {
    position: relative;
    margin-bottom: 60px;
}
.section-title-wrapper .subtitle {
    color: var(--accent-rose);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-title-wrapper .title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-rose), transparent);
    margin: 16px auto 0;
}

/* ------------------------------------------
   SWIPER CUSTOM
   ------------------------------------------ */
.swiper-button-next, .swiper-button-prev {
    color: var(--accent-rose) !important;
    background: rgba(10, 8, 9, 0.6);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 160, 176, 0.15);
    transition: all 0.3s ease;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(212, 160, 176, 0.2);
    transform: scale(1.1);
    border-color: var(--accent-rose);
}
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.2) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
}
.swiper-pagination-bullet-active {
    background: var(--accent-rose) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* ------------------------------------------
   FORM
   ------------------------------------------ */
.form-control {
    border-radius: 12px !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease;
    background-color: rgba(18, 10, 12, 0.6) !important;
    border-color: rgba(212, 160, 176, 0.2) !important;
    color: #F1E8E8 !important;
}
.form-control:focus {
    border-color: var(--accent-rose) !important;
    box-shadow: 0 0 0 3px rgba(212, 160, 176, 0.12) !important;
}
.form-select {
    background-color: rgba(18, 10, 12, 0.6) !important;
    border-color: rgba(212, 160, 176, 0.2) !important;
    color: #F1E8E8 !important;
}
.form-select:focus {
    border-color: var(--accent-rose) !important;
    box-shadow: 0 0 0 3px rgba(212, 160, 176, 0.12) !important;
}

/* ------------------------------------------
   DASHBOARD
   ------------------------------------------ */
.dashboard-card {
    border-radius: 16px;
    border: 1px solid rgba(212, 160, 176, 0.08);
    background: rgba(30, 16, 20, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.dashboard-card:hover {
    border-color: rgba(212, 160, 176, 0.2);
    transform: translateY(-2px);
}

/* ------------------------------------------
   CREATIVE IMAGE SLIDER
   ------------------------------------------ */
.creative-swiper {
    overflow: visible !important;
}
.creative-swiper .swiper-slide {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0.3;
    transform: scale(0.85) rotateY(15deg);
    filter: brightness(0.5);
}
.creative-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    filter: brightness(1);
}
.creative-swiper .swiper-slide-next,
.creative-swiper .swiper-slide-prev {
    opacity: 0.7;
    transform: scale(0.92) rotateY(5deg);
    filter: brightness(0.7);
}
.creative-slide-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 160, 176, 0.15);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.creative-swiper .swiper-slide-active .creative-slide-inner {
    border-color: rgba(212, 160, 176, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 160, 176, 0.08);
}
.creative-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.creative-swiper .swiper-slide-active .creative-slide-img {
    transform: scale(1.05);
}
.creative-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(10, 8, 9, 0.95) 0%, transparent 100%);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.creative-swiper .swiper-slide-active .creative-slide-overlay {
    transform: translateY(0);
    opacity: 1;
}
.creative-slide-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-luxury);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    opacity: 0.3;
}
.creative-slide-content {
    position: relative;
    z-index: 3;
}
.creative-next,
.creative-prev {
    width: 56px !important;
    height: 56px !important;
    background: rgba(10, 8, 9, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 160, 176, 0.2);
    transition: all 0.3s ease;
}
.creative-next::after,
.creative-prev::after {
    font-size: 1.4rem !important;
    color: var(--accent-rose);
}
.creative-next:hover,
.creative-prev:hover {
    background: rgba(212, 160, 176, 0.2) !important;
    border-color: var(--accent-rose);
    transform: scale(1.1);
}
.creative-next {
    right: 30px !important;
}
.creative-prev {
    left: 30px !important;
}
.creative-pagination {
    bottom: 10px !important;
}
.creative-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.creative-pagination .swiper-pagination-bullet-active {
    background: transparent !important;
    border-color: var(--accent-rose);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .creative-swiper .swiper-slide {
        width: 280px !important;
        height: 360px !important;
    }
    .creative-next,
    .creative-prev { display: none; }
}

/* ------------------------------------------
   RESPONSIVE
   ------------------------------------------ */
@media (max-width: 768px) {
    .stat-item .stat-number { font-size: 2.5rem; }
    .btn-gold, .btn-outline-gold { padding: 10px 22px; font-size: 0.85rem; }
    .cursor-dot { display: none; }
    .hero-diamond { display: none; }
}

/* ------------------------------------------
   UTILITY
   ------------------------------------------ */
.uppercase { text-transform: uppercase; }
.letter-spacing { letter-spacing: 2px; }
.tracking-widest { letter-spacing: 3px; }
.max-w-xl { max-width: 600px; }
.max-w-md { max-width: 500px; }
.leading-relaxed { line-height: 1.8; }
