/* =========================================================
   BETA DEVELOPERS - MAIN STYLESHEET
   Improved | Premium | Responsive
========================================================= */

/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #00ffcc;
    --primary-2: #0ff;
    --primary-dark: #00d9b3;
    --accent: #198754;
    --accent-dark: #146c43;
    --danger: #ff6b81;

    --bg-main: #0b0f14;
    --bg-card: #121821;
    --bg-soft: #161d27;
    --bg-header: rgba(11, 15, 20, 0.94);

    --white: #f8fafc;
    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --border: rgba(0, 255, 204, 0.2);

    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 14px 35px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 22px 55px rgba(0, 0, 0, 0.28);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --transition: all 0.3s ease;
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(0, 255, 204, 0.06), transparent 22%),
        linear-gradient(180deg, #0b0f14 0%, #0f1720 100%);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 85px 20px;
    position: relative;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.9rem);
}

h2 {
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    text-align: center;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.15rem;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 255, 204, 0.55), transparent);
    opacity: 0.7;
}

.hidden-field {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.section-intro {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

/* =========================
   HEADER
========================= */
.site-header {
    background: var(--bg-header);
    border-bottom: 1px solid rgba(0, 255, 204, 0.22);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.logo img {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    color: var(--white);
    position: relative;
    font-size: 0.96rem;
    border-radius: 8px;
    padding: 6px 2px;
}

.main-nav a:hover {
    color: var(--primary-2);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-btn,
.btn-primary,
.request-form form button {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    color: #081018;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    padding: 14px 32px;
    display: inline-block;
    box-shadow: var(--shadow-md);
}

.request-form form button {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 15px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}



.email-btn {
background: rgba(0, 255, 204, 0.1);
border: 1px solid rgba(0, 255, 204, 0.4);
color: #00ffcc;
backdrop-filter: blur(6px);
}

.desktop-contact {
    display: flex;
}

.mobile-contact {
    display: none;
}
.whatsapp-btn {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(135deg, #1ebe5d, #25D366);
    color: #081c12;

    border-radius: 999px;
    font-weight: 700;
    padding: 10px 16px;

    border: 1px solid rgba(37, 211, 102, 0.5);

    box-shadow:
        0 6px 18px rgba(37, 211, 102, 0.25),
        inset 0 0 12px rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(6px);

    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);

    box-shadow:
        0 12px 28px rgba(37, 211, 102, 0.4),
        0 0 18px rgba(37, 211, 102, 0.3);

    background: linear-gradient(135deg, #25D366, #2ee77a);
}
.whatsapp-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    opacity: 0;
    transition: 0.4s;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 82vh;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 20px 95px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/back_hero.png') no-repeat center center/cover;
    z-index: 0;

    opacity: 0.25; 

    transform: scale(1.05);

    /* 🔥 boost clarity */
    filter: contrast(1.15) brightness(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(4, 8, 15, 0.65), rgba(0, 255, 204, 0.05)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInHero 1s ease-out;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(0, 255, 204, 0.12);
}

.hero-content p,
.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px 18px;
    max-width: 760px;
    margin: 0 auto 30px;
    padding: 0;
    text-align: left;
}

.hero-points li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 204, 0.14);
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--white);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
}

#typed-text::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* =========================
   SERVICES / CARDS
========================= */
.services,
.about,
.locations,
.process,
.faq {
    text-align: center;
    background: transparent;
}

.service-grid {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.service-card {
    background: linear-gradient(180deg, rgba(18, 24, 33, 0.98), rgba(12, 17, 24, 0.98));
    padding: 26px 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.service-card:hover {
    border-color: rgba(0, 255, 255, 0.48);
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 255, 255, 0.09);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* =========================
   REQUEST FORM
========================= */
.request-form {
    background: transparent;
    text-align: center;
}

.request-form form {
    width: min(700px, 100%);
    margin: 26px auto 0;
    background: linear-gradient(180deg, rgba(18, 24, 33, 0.98), rgba(12, 17, 24, 0.98));
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.request-form form label {
    display: block;
    margin: 12px 0 7px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.request-form form input,
.request-form form textarea {
    display: block;
    width: 100%;
    margin: 0 0 14px;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 204, 0.24);
    background: #0d131b;
    color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: inherit;
    font-size: 0.96rem;
}

.request-form form input::placeholder,
.request-form form textarea::placeholder {
    color: #94a3b8;
}

.request-form form input:focus,
.request-form form textarea:focus {
    border-color: var(--primary-2);
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.12);
    outline: none;
    background: #0f1720;
}

.request-form form textarea {
    min-height: 140px;
    resize: vertical;
}

/* =========================
   FORM ALERTS
========================= */
.form-alert {
    max-width: 650px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.success-message {
    background: rgba(25, 135, 84, 0.14);
    color: #7dffb1;
    border: 1px solid rgba(125, 255, 177, 0.35);
}

.error-message {
    background: rgba(255, 107, 129, 0.12);
    color: #ff9bad;
    border: 1px solid rgba(255, 107, 129, 0.35);
}

/* =========================
   CONTENT SECTIONS
========================= */
.about h2,
.locations h2,
.process h2,
.faq h2 {
    margin-bottom: 22px;
}

.about p,
.locations p {
    max-width: 860px;
    margin: 0 auto 15px;
    font-size: 1rem;
    line-height: 1.9;
}

.locations .container,
.process .container,
.faq .container,
.about .container {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(0, 255, 204, 0.08);
    border-radius: 24px;
    padding: 38px 26px;
    box-shadow: var(--shadow-sm);
}

.faq .container {
    text-align: left;
}

.faq h3 {
    margin: 26px 0 10px;
    color: var(--white);
    font-size: 1.05rem;
}

.faq p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}

/* =========================
   TRUST BADGE / SMALL BITS
========================= */
.trust-badge {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.18);
    color: var(--white);
    font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #0b1118;
    color: var(--white);
    padding: 56px 20px 22px;
    border-top: 1px solid rgba(0, 255, 204, 0.2);
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.footer-col ul,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-contact a {
    color: var(--white);
}

.footer-col a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-hours {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* =========================
   FADE-IN EFFECT
========================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SMALL ENHANCEMENTS
========================= */
::selection {
    background: rgba(0, 255, 204, 0.28);
    color: #111;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .hero-content p,
    .hero-subtext {
        font-size: 1.05rem;
    }

    .btn-primary {
        padding: 12px 26px;
        font-size: 15px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: nowrap;
        align-items: center;
    }

    .logo img {
        height: 42px;
    }

    .logo a {
        font-size: 22px;
    }

    .hamburger {
        display: block;
    }

    .desktop-contact {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 250px;
        background: #101822;
        border: 1px solid rgba(0, 255, 204, 0.12);
        border-radius: 16px;
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        animation: menuFadeIn 0.25s ease;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        background: #17212c;
        color: #fff;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-contact a {
        width: 100%;
        text-align: center;
        display: block;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .hero {
        min-height: 72vh;
        padding: 95px 15px 70px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .request-form form {
        padding: 22px 16px;
    }

    .about p,
    .locations p,
    .faq p {
        font-size: 0.98rem;
    }

    .about .container,
    .locations .container,
    .process .container,
    .faq .container {
        padding: 30px 18px;
    }

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

@media (max-width: 480px) {
    section {
        padding: 60px 16px;
    }

    .hero {
        padding: 88px 10px 62px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content p,
    .hero-subtext {
        font-size: 0.96rem;
    }

    .btn-primary {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 290px;
    }

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

    .service-card {
        padding: 20px 16px;
    }

    .request-form form input,
    .request-form form textarea,
    .request-form form button {
        padding: 12px;
        font-size: 14px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        text-align: center;
    }

    .faq .container {
        text-align: left;
    }
}
.site-header {
    background: rgba(11, 15, 20, 0.94);
    border-bottom: 1px solid rgba(0, 255, 204, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 78px;
}

.logo a span {
    white-space: nowrap;
}

.main-nav a[aria-current="page"] {
    color: var(--primary);
    font-weight: 700;
}

.main-nav a[aria-current="page"]::after {
    width: 100%;
}

.contact-btn,
.email-btn {
    min-width: 110px;
}