/* assets/css/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Prompt', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.82) 100%),
        radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}
.hero-sub {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-sub::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 12px 30px rgba(0,0,0,0.45);
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 45px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 125%; }
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    background: none;
    border: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    animation: bounce-scroll 2s infinite;
}
.scroll-indicator i { font-size: 1.1rem; }
@keyframes bounce-scroll {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Sections General */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-content {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-content p { margin-bottom: 20px; }

/* Features/Menu Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 34px 30px 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    border-color: var(--primary);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background-color: var(--primary);
}
.feature-card::after {
    content: attr(data-index);
    position: absolute;
    top: 4px; right: 18px;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}
.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff;
    font-size: 1.4rem;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    position: relative;
}
.feature-desc {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    position: relative;
}
.feature-price {
    align-self: flex-start;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    position: relative;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 190px;
    grid-auto-flow: dense;
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

@media (max-width: 600px) {
    .gallery-item-large { grid-column: span 1; grid-row: span 1; }
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    justify-content: center;
}
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 600px;
    border-top: 4px solid var(--primary);
}
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}
.input-icon { position: relative; }
.input-icon > i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #b5b9bf;
    font-size: 1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}
.input-icon.input-icon-top > i {
    top: 19px;
    transform: none;
}
.input-icon:focus-within > i { color: var(--primary); }
.input-icon .form-control { padding-left: 46px; }
.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.form-trust-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 16px;
}
.alert-success, .alert-danger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: left;
}
.alert-success i, .alert-danger i { font-size: 1.3rem; flex-shrink: 0; }
.alert-success {
    background-color: #d4edda;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.fab:hover {
    transform: scale(1.1);
    color: white;
}
.fab-line { background-color: #00B900; }
.fab-phone { background-color: var(--secondary); }
.fab-facebook { background-color: #1877F2; }

/* Sticky Mobile Bar */
.mobile-sticky-bar {
    display: none;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 50px 20px 20px;
    text-align: center;
}
.social-links {
    margin-bottom: 20px;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-links a:hover { color: var(--primary); }

@media (max-width: 768px) {
    body { padding-bottom: 76px; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .btn-primary, .btn-hero-outline { width: 100%; justify-content: center; padding: 15px 30px; }
    .scroll-indicator { display: none; }
    .section { padding: 60px 20px; }
    .contact-form { padding: 28px 22px; }
    .fab-container { display: none; }

    .mobile-sticky-bar {
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 999;
        gap: 10px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
    }
    .msb-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.2rem;
        text-decoration: none;
        transition: transform 0.15s ease;
    }
    .msb-icon:active { transform: scale(0.92); }
    .msb-icon-phone { background-color: var(--secondary); }
    .msb-icon-line { background-color: #00B900; }
    .msb-icon-facebook { background-color: #1877F2; }
    .msb-cta {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 48px;
        background-color: var(--primary);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        border-radius: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.18);
        transition: transform 0.15s ease;
        white-space: nowrap;
    }
    .msb-cta:active { transform: scale(0.97); }
}
