:root {
    --blush: #FFD1DC;
    --blush-dark: #FFB7C5;
    --cream: #FFFDD0;
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --white: #FFFFFF;
    --dark: #2C2C2C;
    --gray: #7A7A7A;
    --glass: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent {
    color: var(--gold);
    font-style: italic;
}

img {
    max-width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links {
    text-decoration: none;
    color: var(--dark);
    margin: 0 20px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links:hover {
    color: var(--gold);
}

.nav-cta-desktop {
    background: var(--gold);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta-desktop:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 209, 220, 0.4), rgba(255, 255, 255, 0.4)),
        url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=2087&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--dark);
    color: white;
    margin-right: 15px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
}

.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-full {
    display: block;
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid.no-image {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--blush);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-badge .years {
    display: block;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    line-height: 1;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.features-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--gold);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    padding: 10px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--blush);
}

.sticky-item {
    text-decoration: none;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 600;
    transition: var(--transition);
}

.sticky-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.sticky-item:active i,
.sticky-item:active {
    color: var(--gold);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-category {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--blush);
    transition: var(--transition);
    text-align: center;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 209, 220, 0.4);
    border-color: var(--gold);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--blush);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* Home Services Section */
.home-services {
    padding: 80px 0;
}

.home-services-card {
    background: var(--dark);
    color: white;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    align-items: center;
}

.card-content {
    padding: 60px;
}

.card-content .section-title {
    color: white;
}

.home-features {
    list-style: none;
    margin: 30px 0;
}

.home-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-features i {
    color: var(--gold);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

.card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--blush);
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.quote {
    font-size: 2rem;
    color: var(--blush);
    margin-bottom: 20px;
}

.client-info h4 {
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
}

.contact-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-map {
    height: 400px;
    background: #f4f4f4;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blush);
}

.map-placeholder {
    text-align: center;
    color: var(--gray);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    background: var(--dark);
    color: white;
}

footer .logo {
    color: white;
    margin-bottom: 20px;
    display: block;
}

footer p {
    font-size: 0.85rem;
    color: var(--gray);
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .home-services-card {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 300px;
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-category {
        padding: 30px 20px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.sparkle {
    position: absolute;
    background: var(--gold);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
}