/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6b3fa0;
    --accent-pink: #e91e8c;
    --dark-purple: #2d1b4e;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --warm-cream: #f5eef8;
    --soft-beige: #ede4f3;
    --light-peach: #f8f0fc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, #6b3fa0 0%, #c2185b 35%, #e8a0bf 60%, #7eb8da 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Header and Navigation */
header {
    background: linear-gradient(90deg, #6b3fa0, #c2185b);
    border-top: 3px solid #e91e8c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f8c8e0;
}

.cta-button {
    background-color: var(--accent-pink);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c4147a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.carousel-slides {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}

.carousel-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    max-width: 650px;
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-carousel-primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-carousel-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.btn-carousel-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-carousel-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--white);
    color: var(--accent-pink);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #532e80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border-radius: 10px;
    color: var(--white);
}

.service-card:nth-child(odd) {
    background: rgba(107, 63, 160, 0.85);
}

.service-card:nth-child(even) {
    background: rgba(194, 24, 91, 0.85);
}

.service-card:nth-child(3n) {
    background: rgba(45, 27, 78, 0.85);
}

.service-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-card.reverse .service-content {
    order: 2;
}

.service-card.reverse .service-image {
    order: 1;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Banners */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Reviews Section */
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--warm-cream) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(194, 24, 91, 0.1);
    color: var(--text-dark);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.review-header strong {
    color: var(--accent-pink);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--warm-cream) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-pink);
}

/* Price Page */
.price-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-list {
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--warm-cream) 100%);
    padding: 3rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: var(--text-dark);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--white);
    font-size: 1.2rem;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.price-item span:last-child {
    font-weight: bold;
    color: var(--accent-pink);
    font-size: 1.4rem;
}

/* Payment Page */
.payment-container {
    max-width: 800px;
    margin: 0 auto;
}

.payment-method {
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--warm-cream) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.payment-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.payment-method .wallet-address {
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--soft-beige) 100%);
    padding: 1rem;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
    margin: 1rem 0;
}

.payment-method img {
    max-width: 200px;
    margin: 1rem auto;
}

/* Footer */
footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--accent-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Notice Modal */
#noticeOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease;
}

#noticeOverlay.notice-closing {
    animation: fadeOut 0.3s ease forwards;
}

.notice-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.notice-title {
    color: var(--accent-pink);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.notice-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-pink);
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.notice-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.notice-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.notice-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #6b3fa0, #c2185b);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    .hero-carousel {
        height: 85vh;
    }

    .carousel-content h1 {
        font-size: 2.8rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-card.reverse .service-content,
    .service-card.reverse .service-image {
        order: unset;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .price-list {
        padding: 1.5rem 1rem;
    }

    .price-item {
        padding: 1rem 0.5rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .price-item span:last-child {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    section[style*="padding: 6rem"] {
        padding: 4rem 1rem !important;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        padding: 0;
    }

    .review-card {
        padding: 1.5rem;
    }
}