/* ==========================================================================
   1. GLOBAL SYSTEM SETUP & PHYSICS
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden; 
    position: relative;
    background-color: #ffffff;
}

body::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #fef08a, #fffbeb, #facc15, #ffffff);
    background-size: 300% 300%;
    animation: organicFluid 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes organicFluid {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 50% 0%; }
}

/* ==========================================================================
   2. SINGLE PIECE GLASS CONTAINER
   ========================================================================== */
.glass-base {
    position: relative;
    margin: 24px auto; 
    width: calc(100% - 40px);
    max-width: 1200px;
    min-height: calc(100vh - 48px);
    border-radius: 28px; 
    
    background: rgba(255, 255, 255, 0.28); 
    backdrop-filter: blur(40px) saturate(130%); 
    -webkit-backdrop-filter: blur(40px) saturate(130%);
    
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 30px 70px rgba(160, 130, 10, 0.18), 
        0 10px 20px rgba(0, 0, 0, 0.02),       
        inset 0 1px 2px rgba(255, 255, 255, 0.7); 
    
    padding: 2rem 2rem 3rem;
    z-index: 5;
    overflow: hidden;
}

/* ==========================================================================
   3. SITE HEADER STRUCTURE
   ========================================================================== */
.site-header {
    width: 100%;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-logo, .header-socials a, .floating-portrait-socials a {
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    cursor: pointer;
    
    background: linear-gradient(
        -75deg, 
        rgba(0, 0, 0, 1) 45%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(0, 0, 0, 1) 55%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sequentialShimmer 10s ease-in-out infinite;
}

.site-logo {
    font-size: 1.35rem;
    font-weight: 800; 
    letter-spacing: -0.8px; 
    transition: transform 0.25s ease;
}

.site-logo:hover { transform: translateY(-1px); }

.top-nav {
    display: flex;
    justify-content: center;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 1.2rem; 
}

.header-socials a {
    font-size: 1.15rem;
    animation-delay: var(--d); 
    transition: transform 0.2s ease;
}

.header-socials a:hover { transform: translateY(-2px); }

@keyframes sequentialShimmer {
    0% { background-position: 0% center; }
    12%, 100% { background-position: -300% center; }
}

/* ==========================================================================
   4. NAVIGATION LINKS, LIQUID GLARE & DETACHED FLOATING MENU
   ========================================================================== */
.nav-links {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.nav-links a {
    position: relative;
    z-index: 3;
    text-decoration: none;
    color: #4b5563; 
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: #000000; }

.liquid-glare {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.floating-nav-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, -40px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.floating-nav-container.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.floating-nav-container .nav-links {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    box-shadow: 0 20px 40px rgba(160, 130, 10, 0.15), 0 1px 3px rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    padding: 0.4rem;
}

.floating-portrait-socials {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    box-shadow: 0 20px 40px rgba(160, 130, 10, 0.15), 0 1px 3px rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.floating-portrait-socials a {
    font-size: 1.25rem;
    animation-delay: var(--d);
    transition: transform 0.2s ease;
}

.floating-portrait-socials a:hover { transform: translateY(-2px); }

/* ==========================================================================
   5. HERO ARCHITECTURE (FORCED VERTICAL STACK FOR BUTTER)
   ========================================================================== */
.hero-section {
    padding: 1.5rem 0 3rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero-tag {
    background: rgba(234, 204, 21, 0.2);
    border: 1px solid rgba(234, 204, 21, 0.4);
    color: #856404;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 1.2rem 0 1rem;
    letter-spacing: -1.5px;
    display: flex;
    flex-direction: column; 
    align-items: center;    
}

.hero-title .title-top {
    color: #0f172a;
}

.hero-title .title-butter {
    color: #ca8a04;
    display: block;        
}

.hero-lead {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 660px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover { background: #222222; transform: translateY(-2px); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); }

/* ==========================================================================
   6. SHOWCASE MENU SECTION
   ========================================================================== */
.packages-section {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-header {
    text-align: center;
    margin: 0 auto 2.2rem;
    max-width: 760px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #64748b;
    margin-top: 0.6rem;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.15rem;
    max-width: 1050px;
    margin: 0 auto;
}

.pack-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(160, 130, 10, 0.08);
}

.pack-card.featured {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #facc15;
}

.pack-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pack-badge.golden { background: #facc15; color: #000; }

.pack-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.pack-price { font-size: 2.3rem; font-weight: 800; color: #000000; margin-bottom: 0.75rem; }

.pack-desc { font-size: 0.95rem; color: #475569; line-height: 1.5; margin-bottom: 1.4rem; }

.pack-features { list-style: none; margin-bottom: 1.8rem; margin-top: auto; }

.pack-features li {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pack-features i { color: #ca8a04; }

.pack-btn {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pack-btn:hover { background: rgba(0, 0, 0, 0.04); }
.pack-btn.primary { background: #000000; color: #ffffff; border: none; }
.pack-btn.primary:hover { background: #222222; }

/* ==========================================================================
   7. ABOUT COMPONENT SECTION
   ========================================================================== */
.about-section {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 1rem;
}

.about-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2.35rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin: 0.75rem 0 1rem 0;
    line-height: 1.2;
}

.about-text p {
    font-size: 0.99rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 650px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.3rem 1.2rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.01);
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ca8a04;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-lbl {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 600;
}

/* ==========================================================================
   7.5 SEO CONTENT & FAQ SECTION
   ========================================================================== */
.services-section,
.blog-section {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.services-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 1050px;
    margin: 0 auto;
}

.service-card,
.article-card,
.faq-item {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.02);
}

.service-card:hover,
.article-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.6);
}

.service-card h3,
.article-card h3,
.faq-item h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.service-card p,
.article-card p,
.faq-item p {
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.55;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.service-card li {
    display: flex;
    gap: 0.5rem;
    color: #334155;
    font-size: 0.92rem;
    align-items: flex-start;
}

.service-card li i {
    color: #ca8a04;
    margin-top: 0.18rem;
}

.article-tag {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #856404;
    background: rgba(234, 204, 21, 0.2);
    border: 1px solid rgba(234, 204, 21, 0.35);
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-list {
    max-width: 1050px;
    margin: 1.5rem auto 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
    padding: 1.5rem 0 0.5rem;
}

.footer-cta {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 1.5rem;
}

.footer-cta h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.7rem;
}

.footer-cta p {
    color: #475569;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

/* ==========================================================================
   8. RESPONSIVE ENGINE & BREAKPOINTS
   ========================================================================== */
@media (orientation: portrait) {
    .header-socials { display: none !important; }
    .floating-portrait-socials { display: flex; }
}

@media (max-width: 880px) {
    .site-header {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .site-logo {
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #000000;
        animation: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .hero-title { font-size: clamp(2rem, 6vw, 2.6rem); }
}

@media (max-width: 540px) {
    .glass-base {
        padding: 1.1rem 1rem 5.5rem 1rem;
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin: 16px auto;
        border-radius: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        border-radius: 16px;
    }

    .nav-links a { font-size: 0.85rem; padding: 0.5rem 0.5rem; }

    .liquid-glare { display: none !important; }

    .nav-links a.active {
        background: rgba(255, 255, 255, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 1);
    }

    .floating-nav-container { top: 12px; width: calc(100% - 24px); }

    .floating-portrait-socials {
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 0.6rem 1rem;
        gap: 1rem;
    }

    .hero-section { padding: 0.75rem 0 2rem; }
    .hero-lead { font-size: 0.95rem; margin-bottom: 1.6rem; }
    .about-text h2 { font-size: 1.75rem; }
    .hero-title { font-size: 2.05rem; line-height: 1.2; }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .btn { width: 100%; text-align: center; }
    .section-header { margin-bottom: 1.8rem; }
    .pack-card { padding: 1.5rem 1.2rem; }
    .footer-cta { padding: 1.2rem; }
}
