/* --- CORE SETUP --- */
:root {
    --cursor-size: 20px;
    --cursor-hover-size: 80px;
}

html.lenis {
    height: auto;
}

body {
    background-color: #2d0312; /* Darker, richer base */
    color: #FFF0F5;
    cursor: none; 
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    font-feature-settings: "cv11", "ss01";
}

/* --- CUSTOM CURSOR --- */
@media (hover: hover) and (pointer: fine) {
    #cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: var(--cursor-size);
        height: var(--cursor-size);
        border: 1px solid rgba(212, 175, 55, 0.6); /* Gold tint */
        background: rgba(232, 62, 122, 0.1);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
                    height 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
                    background 0.3s, border 0.3s;
        mix-blend-mode: exclusion;
        backdrop-filter: blur(2px);
    }
    #cursor.hovered {
        width: var(--cursor-hover-size);
        height: var(--cursor-hover-size);
        background: rgba(255, 255, 255, 0.9);
        border-color: transparent;
        mix-blend-mode: normal;
    }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #2d0312; }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(to bottom, #751334, #D4AF37); 
    border-radius: 4px; 
    border: 2px solid #2d0312;
}

/* --- UTILITIES --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(212, 175, 55, 0.3); /* Gold border on hover */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: transparent;
}

.text-stroke-gold {
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    color: transparent;
}

/* --- FORM STYLES --- */
.form-floating-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    color: rgba(253, 226, 232, 0.4);
    font-size: 0.9rem;
    font-family: 'Manrope', sans-serif;
    background-color: transparent;
    padding: 0 4px;
}

.form-input:focus ~ .form-floating-label,
.form-input:not(:placeholder-shown) ~ .form-floating-label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: #D4AF37; /* Gold focus */
    background-color: #430519;
    border-radius: 4px;
}

.form-input {
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* --- ACCORDION (FAQ) --- */
.accordion-content {
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    max-height: 0;
    overflow: hidden;
}
.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #E83E7A;
}

/* --- LEDGER TABS --- */
.ledger-tab.active {
    background-color: #E83E7A;
    color: white;
    border-color: #E83E7A;
    box-shadow: 0 0 20px rgba(232, 62, 122, 0.4);
}

/* --- ANIMATIONS --- */
.animate-wall-up { animation: wallScrollUp 80s linear infinite; }
.animate-wall-down { animation: wallScrollDown 80s linear infinite; }
@keyframes wallScrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes wallScrollDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

/* Mobile Menu */
#mobile-menu {
    transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
}
#mobile-menu.open { transform: translateY(0%); }
#mobile-menu.closed { transform: translateY(-100%); }

/* Service Card Styles */
.service-card {
    height: 480px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card:hover .card-details {
    transform: translateY(0);
    opacity: 1;
}
.service-card:hover .card-bg {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet { 
    background: #F4719D; 
    opacity: 0.3; 
    width: 30px; 
    height: 4px; 
    border-radius: 2px; 
    transition: all 0.3s; 
}
.swiper-pagination-bullet-active { 
    background: #D4AF37; 
    opacity: 1; 
    width: 45px; 
}

/* Price Comparison Styles */
.price-comparison {
    position: relative;
    overflow: hidden;
}

.price-badge {
    animation: shimmer 2s infinite linear;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Loading Animation */
@keyframes shimmer-loading {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #2d0312 25%, #430519 50%, #2d0312 75%);
    background-size: 1000px 100%;
    animation: shimmer-loading 2s infinite linear;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        height: 420px;
    }
    
    .wall-col {
        display: none;
    }
    
    .wall-col:nth-child(1),
    .wall-col:nth-child(2) {
        display: flex;
    }
}

/* Print Styles */
@media print {
    #cursor,
    #whatsapp-button,
    #preloader,
    nav,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}