:root {
    /* Luxative Color Palette - Updated to Match Brand */
    --luxative-gold: #C9A875;
    /* Muted elegant tan/gold from brand */
    --luxative-brown: #8B5A3C;
    --luxative-green: #2D5A3E;
    --luxative-light-gold: #E5D4B8;
    /* Lighter tan */
    --luxative-dark-brown: #5C3A28;
    --luxative-dark-green: #1A3326;
    --luxative-navy: #0A2540;
    /* Dark navy blue from brand */

    /* Neutral Colors */
    --light-bg: #FAF8F3;
    --dark-bg: #0A2540;
    /* Navy blue instead of dark brown */
    --text-light: #FFFFFF;
    --text-dark: #2C2520;
    --overlay: rgba(10, 37, 64, 0.7);
    /* Navy overlay */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(10, 37, 64, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-luxative {
    background: linear-gradient(135deg, #0A2540 0%, #145080 50%, #1A5A8F 100%);
    color: var(--text-light);
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.4), 0 0 20px rgba(201, 168, 117, 0.2);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

/* Luxury shimmer effect */
.btn-luxative::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-luxative:hover::before {
    left: 100%;
}

.btn-luxative:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(10, 37, 64, 0.5), 0 0 30px rgba(201, 168, 117, 0.4);
    color: var(--text-light);
}

.btn-outline-luxative {
    background: transparent;
    border: 2px solid var(--luxative-gold);
    color: var(--luxative-gold);
    padding: 13px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline-luxative::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxative-gold);
    transition: left 0.4s;
    z-index: -1;
}

.btn-outline-luxative:hover::before {
    left: 0;
}

.btn-outline-luxative:hover {
    color: var(--luxative-navy);
    border-color: var(--luxative-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 117, 0.3);
}

/* Navbar */
.navbar-luxative {
    background: rgba(10, 37, 64, 0.95);
    /* Navy blue from brand */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-luxative.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--luxative-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--luxative-gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A2540 0%, #0D3A5C 50%, #145080 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23C9A875" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.4;
    pointer-events: none;
}

/* Add stars/sparkle effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(201, 168, 117, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(201, 168, 117, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(201, 168, 117, 0.4), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(201, 168, 117, 0.3), transparent);
    background-size: 200% 200%;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.5;
        background-position: 0% 0%;
    }

    50% {
        opacity: 1;
        background-position: 100% 100%;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 30px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.hero-tagline {
    color: var(--luxative-light-gold);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(201, 168, 117, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Pricelist Section */
.pricelist-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--luxative-navy);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--luxative-gold), transparent);
    bottom: -15px;
    left: 20%;
    box-shadow: 0 2px 10px rgba(201, 168, 117, 0.5);
}

/* Accordion Styles */
.accordion-luxative {
    margin-bottom: 20px;
}

.accordion-luxative .accordion-item {
    border: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 117, 0.2);
}

.accordion-luxative .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.25), 0 0 20px rgba(201, 168, 117, 0.15);
}

.accordion-luxative .accordion-button {
    background: linear-gradient(135deg, #0A2540 0%, #145080 100%);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.3rem;
    padding: 25px 35px;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Luxury shimmer effect on accordion header */
.accordion-luxative .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 117, 0.3), transparent);
    transition: left 0.5s;
}

.accordion-luxative .accordion-button:hover::before {
    left: 100%;
}

.accordion-luxative .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0D3A5C 0%, #1A5A8F 100%);
    color: var(--text-light);
    box-shadow: inset 0 -3px 0 0 var(--luxative-gold);
}

.accordion-luxative .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-luxative .accordion-body {
    padding: 35px;
    background: linear-gradient(to bottom, #ffffff 0%, #faf9f7 100%);
}

/* Service Card */
.service-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fdfcfa 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.12);
    border-left: 4px solid var(--luxative-gold);
    border-top: 1px solid rgba(201, 168, 117, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Luxury corner accent */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(201, 168, 117, 0.1), transparent);
    pointer-events: none;
}

.service-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.2), -5px 0 20px rgba(201, 168, 117, 0.15);
    border-left-width: 6px;
}

.service-card .service-name {
    color: var(--luxative-navy);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-card .service-price {
    color: var(--luxative-gold);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(201, 168, 117, 0.2);
}

.service-card .service-features {
    list-style: none;
    padding: 0;
}

.service-card .service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.service-card .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxative-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer h5 {
    color: var(--luxative-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer p {
    color: var(--luxative-light-gold);
}

.footer .text-muted {
    color: var(--luxative-light-gold) !important;
}

.footer ul li {
    color: var(--text-light);
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--luxative-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--luxative-light-gold);
}

/* Form Styles */
.form-luxative {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-luxative .form-label {
    color: var(--luxative-brown);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-luxative .form-control,
.form-luxative .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-luxative .form-control:focus,
.form-luxative .form-select:focus {
    border-color: var(--luxative-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 117, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .btn-luxative {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loader {
    border: 5px solid var(--luxative-light-gold);
    border-top: 5px solid var(--luxative-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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