:root {
    --bg-color: #121212; /* Dark Mode Background */
    --card-bg: #1E1E1E; /* Dark Card */
    --primary: #0052CC; /* Tech Blue */
    --accent: #00E5FF; /* Neon Cyan */
    --text-dark: #FFFFFF;
    --text-light: #A0A0A0;
    --wa-color: #25D366;
    --card-border: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #0A0A0A;
    display: flex;
    justify-content: center;
}

h1, h2, h3, .logo, .badge-promo, .btn-outline {
    font-family: 'Space Grotesk', sans-serif;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
    position: relative;
    overflow-x: hidden;
}

header {
    background: var(--card-bg);
    padding: 18px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.logo i {
    color: var(--accent);
    margin-right: 8px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.subtitle {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero {
    position: relative;
    height: 350px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1) 15%, rgba(18, 18, 18, 0));
    padding: 40px 20px 25px 20px;
    color: var(--text-dark);
}

.badge-promo {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2) inset;
}

.hero-overlay h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.benefit-section {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
}

.benefit-card {
    text-align: center;
    width: 31%;
}

.benefit-card i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 11px;
    font-weight: 600;
}

.content-section {
    padding: 30px 20px 10px 20px;
}

.section-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

/* Profile */
.profile-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    border-radius: 8px;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.service-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    border-radius: 8px;
}

.service-info { flex: 1; }

.service-info h3 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.price {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-outline:active {
    background: var(--accent);
    color: var(--bg-color);
}

/* Gallery Scroll */
.gallery-scroll, .testi-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}
.gallery-scroll::-webkit-scrollbar, .testi-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-thumb, .testi-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px;}

.gallery-scroll img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
    opacity: 0.8;
}
.gallery-scroll img:hover { opacity: 1; }

/* Testimonials */
.testi-card {
    background: var(--card-bg);
    width: 260px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.stars {
    color: var(--accent);
    font-size: 12px;
    margin-bottom: 12px;
}

.testi-card p {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testi-card strong {
    font-size: 13px;
    color: var(--text-dark);
}

/* Info Card */
.info-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}
.map-container iframe { 
    display: block; 
    filter: invert(90%) hue-rotate(180deg) contrast(0.9); /* Dark Mode Map */
}
.address-box {
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-light);
}
.address-box i {
    color: var(--accent);
    font-size: 20px;
    margin-top: 2px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--card-border);
}
.faq-item summary {
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "\f078";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    color: var(--accent);
}
.faq-item[open] summary::after { content: "\f077"; }
.faq-content {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--card-bg);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px 60px 20px;
    margin-top: 20px;
    border-top: 1px solid var(--card-border);
}
.socials { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
.socials a {
    color: var(--text-light);
    font-size: 22px;
    text-decoration: none;
    transition: 0.2s;
}
.socials a:hover { color: var(--accent); }
footer p { font-size: 12px; }
.bottom-spacer { height: 10px; }

/* Sticky Button */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: var(--card-bg);
    padding: 12px 20px;
    border-top: 1px solid var(--card-border);
    z-index: 100;
}

.btn-whatsapp {
    width: 100%;
    background-color: var(--accent);
    color: var(--bg-color);
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.btn-whatsapp:active { transform: scale(0.98); }
