:root {
    --bg-cream: #fdfaf7;
    --soft-pink: #fbf0ee;
    --accent-pink: #f3d6d2;
    --gold-primary: #cba258;
    --gold-dark: #b0873a;
    --text-dark: #3a3230;
    --text-muted: #7d7270;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(203, 162, 88, 0.08);
    --shadow-card: 0 4px 15px rgba(220, 180, 175, 0.15);
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
}

.bg-light {
    background-color: #fcf4f2;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 2.4rem;
    margin-top: 10px;
}

.badge {
    background: var(--soft-pink);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--accent-pink);
    display: inline-block;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 15px auto 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    background: rgba(253, 250, 247, 0.96);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-pink);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(203, 162, 88, 0.2);
}

.logo-text {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    gap: 6px;
}

.logo-text .script-font {
    font-style: italic;
    font-weight: 700;
}

.logo-text .gold-text {
    color: var(--gold-primary);
    font-weight: 600;
}

.navbar nav {
    display: flex;
    align-items: center;
}

.navbar nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 18px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: var(--gold-primary);
}

.navbar nav .nav-btn {
    background: var(--gold-primary);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 25px;
}

.navbar nav .nav-btn:hover {
    background: var(--gold-dark);
}

.hero-section {
    background: linear-gradient(135deg, rgba(251, 240, 238, 0.85) 0%, rgba(253, 250, 247, 0.95) 100%), 
                radial-gradient(circle at top right, #f7dfdb, transparent 60%);
    padding: 90px 20px 80px;
    text-align: center;
    border-bottom: 1px solid var(--accent-pink);
}

.hero-logo-wrap {
    margin-bottom: 20px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-card);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .sub-title {
    color: var(--gold-dark);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(203, 162, 88, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 162, 88, 0.4);
}

.btn-outline {
    background: var(--white);
    color: var(--gold-dark);
    border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

.w-100 {
    width: 100%;
    justify-content: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.step-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--accent-pink);
}

.step-number {
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: var(--gold-primary);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--accent-pink);
    border-radius: var(--radius);
    padding: 35px 25px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid var(--gold-primary);
    background: #fffefb;
}

.pkg-header {
    text-align: center;
    margin-bottom: 20px;
}

.pkg-badge {
    background: var(--soft-pink);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.pkg-badge.gold-bg {
    background: var(--gold-primary);
    color: var(--white);
}

.pkg-header h3 {
    font-size: 1.6rem;
    margin-top: 10px;
}

.pkg-person {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.pkg-price {
    font-size: 2.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: -0.5px;
}

.pkg-price span {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.pkg-list {
    list-style: none;
    margin-bottom: 25px;
}

.pkg-list li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-list li i {
    color: var(--gold-primary);
}

.menu-section {
    background-color: #faf4f1;
}

.menu-subnote {
    color: var(--text-muted);
    margin-top: 5px;
    font-size: 0.95rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--accent-pink);
    color: var(--text-dark);
    padding: 9px 20px;
    border-radius: 25px;
    font-size: 0.88rem;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f0e6e4;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    box-shadow: 0 8px 22px rgba(203, 162, 88, 0.18);
    transform: translateY(-3px);
}

.menu-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #eee;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 38, 37, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-size: 1.8rem;
}

.menu-item:hover .menu-img-wrap img {
    transform: scale(1.06);
}

.menu-item:hover .img-overlay {
    opacity: 1;
}

.menu-details {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    border-top: 1px solid #f7edea;
}

.menu-item-info h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.menu-item-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 200px;
}

.price-box {
    background: #fff8f5;
    border: 1.5px solid var(--gold-primary);
    padding: 6px 12px;
    border-radius: 12px;
    text-align: right;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(203, 162, 88, 0.12);
    margin-left: 10px;
}

.price-val {
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gold-dark);
    display: block;
    line-height: 1.1;
}

.price-unit {
    font-size: 0.72rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    font-weight: 500;
}

.seo-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.seo-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--accent-pink);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.seo-card i {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.seo-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.seo-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content-wrap {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomModal 0.3s ease;
}

@keyframes zoomModal {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-content-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-content-wrap h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.modal-content-wrap p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.highlight-banner {
    background: linear-gradient(135deg, #fff7f4 0%, #fbedeb 100%);
    border: 2px dashed var(--gold-primary);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.gold-badge {
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.banner-text h3 {
    font-size: 2rem;
    margin: 8px 0;
}

.banner-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 8px;
}

.banner-text small {
    display: block;
    color: #a85850;
    font-size: 0.88rem;
}

.contact-section {
    background: var(--white);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--bg-cream);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--accent-pink);
    box-shadow: var(--shadow-card);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    width: 25px;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--accent-pink);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(203, 162, 88, 0.15);
}

.form-kapora-note {
    font-size: 0.82rem;
    color: #a85850;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

footer {
    background: #2b2625;
    color: #d1c8c5;
    padding: 30px 0;
    font-size: 0.9rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-content a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #ffffff;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 175px;
    right: 36px;
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(203, 162, 88, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.float-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.float-whatsapp {
    background-color: #25D366;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .navbar nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar nav a {
        margin: 0 6px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .highlight-banner {
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .footer-content {
        flex-direction: column;
        justify-content: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    #scrollTopBtn {
        right: 22px;
        bottom: 150px;
    }
}