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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f141e;
    color: #e4e7ed;
    line-height: 1.6;
    padding-top: 64px;
}

a {
    color: #d4a853;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 20, 30, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-weight: 800;
    font-size: 22px;
    color: #d4a853;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8892a0;
    font-weight: 400;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: #c8ccd4;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a853;
    transition: width 0.3s;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a:hover,
.header-nav a.active {
    color: #d4a853;
}

.header-cta {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #d4a853;
    border-radius: 2px;
}

/* Mobile overlay nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 30, 0.98);
    backdrop-filter: blur(12px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    color: #c8ccd4;
    text-decoration: none;
}

.mobile-nav .mobile-cta {
    background: linear-gradient(135deg, #d4a853, #c49540);
    color: #0f141e;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #d4a853;
    letter-spacing: -0.5px;
}

.section-title span {
    color: #e4e7ed;
}

.section-sub {
    font-size: 16px;
    color: #8892a0;
    margin-bottom: 40px;
}

.center {
    text-align: center;
}

.bg-lightgray {
    background: #151b28;
    max-width: 100%;
    position: relative;
}

.bg-lightgray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,83,0.2), transparent);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #0a0f19 0%, #141c2b 40%, #1a2332 70%, #0f141e 100%);
    padding: 0;
    max-width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 64px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(212,168,83,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
    border: 1px solid rgba(212,168,83,0.2);
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 36px;
    color: #d4a853;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
    color: #9aa3b5;
    font-weight: 300;
}

.hero-sub strong {
    color: #d4a853;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA64A);
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

.btn-phone {
    background: linear-gradient(135deg, #d4a853, #c49540);
    color: #0f141e;
    box-shadow: 0 4px 20px rgba(212,168,83,0.25);
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,83,0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(212,168,83,0.4);
    color: #d4a853;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 10px;
}

.btn-outline:hover {
    background: rgba(212,168,83,0.1);
    border-color: #d4a853;
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
    background: linear-gradient(135deg, #0a0f19 0%, #141c2b 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-bottom: 1px solid rgba(212,168,83,0.1);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.page-hero p {
    font-size: 16px;
    color: #8892a0;
}

/* ========== ABOUT ========== */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #d4a853;
}

.about-text .title-role {
    color: #8892a0;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: #c8ccd4;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex: 0 0 280px;
}

.stat-card {
    background: linear-gradient(135deg, #1a2332, #1e2738);
    padding: 20px 16px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(212,168,83,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.stat-card .number {
    font-size: 30px;
    font-weight: 800;
    color: #d4a853;
}

.stat-card .label {
    font-size: 12px;
    color: #8892a0;
    margin-top: 4px;
}

/* ========== CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: linear-gradient(145deg, #1a2332, #1e2738);
    border-radius: 18px;
    padding: 34px 30px;
    border: 1px solid rgba(212,168,83,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,168,83,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 18px;
    display: block;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #d4a853;
}

.card p {
    font-size: 14px;
    color: #9aa3b5;
    line-height: 1.7;
}

/* ========== BENEFITS ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: linear-gradient(145deg, #1a2332, #1e2738);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(212,168,83,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: rgba(212,168,83,0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.benefit-item .benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #d4a853;
    opacity: 0.08;
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e4e7ed;
}

.benefit-item p {
    font-size: 14px;
    color: #9aa3b5;
    line-height: 1.7;
}

/* ========== LEAD FORM ========== */
.lead-form-wrap {
    max-width: 580px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a2332, #1e2738);
    padding: 36px 32px;
    border-radius: 18px;
    border: 1px solid rgba(212,168,83,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.lead-form-wrap h3 {
    color: #d4a853 !important;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(212,168,83,0.12);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: rgba(15,20,30,0.6);
    color: #e4e7ed;
    transition: all 0.2s;
    outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #5a6478;
}

.form-row select option {
    background: #1a2332;
    color: #e4e7ed;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #d4a853;
    background: rgba(15,20,30,0.8);
    box-shadow: 0 0 0 3px rgba(212,168,83,0.05);
}

.form-row textarea {
    resize: vertical;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(145deg, #1a2332, #1e2738);
    padding: 34px 30px;
    border-radius: 16px;
    border: 1px solid rgba(212,168,83,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(212,168,83,0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.contact-card .icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e4e7ed;
}

.contact-card a {
    font-size: 18px;
    font-weight: 600;
    color: #d4a853;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: #8892a0;
}

/* ========== OVERLAY ========== */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.overlay.visible {
    display: flex;
}

.overlay-card {
    background: linear-gradient(145deg, #1a2332, #1e2738);
    padding: 48px 36px;
    border-radius: 22px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(212,168,83,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.overlay-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

.overlay-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #d4a853;
}

.overlay-card p {
    color: #9aa3b5;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a0f19;
    color: #5a6478;
    text-align: center;
    padding: 24px 20px;
    font-size: 13px;
    border-top: 1px solid rgba(212,168,83,0.06);
}

/* ========== FLOATING MOBILE ACTIONS ========== */
.floating-actions {
    display: none;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Misc */
hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid rgba(212,168,83,0.08);
}

.small-print {
    color: #5a6478;
    font-size: 13px;
    margin-top: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }

    .hero-title {
        font-size: 28px;
    }
    .hero-sub {
        font-size: 15px;
    }
    .btn {
        font-size: 16px;
        padding: 16px 24px;
    }

    .about-content {
        flex-direction: column;
    }
    .about-stats {
        width: 100%;
        flex: none;
    }
    .cards-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    .form-row {
        flex-direction: column;
    }
    .page-hero h1 {
        font-size: 28px;
    }

    .floating-actions {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        height: 56px;
    }
    .floating-actions a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .floating-whatsapp {
        background: #25D366;
        color: white;
    }
    .floating-whatsapp i {
        font-size: 20px;
    }
    .floating-call {
        background: #d4a853;
        color: #0f141e;
    }
    .floating-call i {
        font-size: 20px;
    }
    body {
        padding-bottom: 56px;
    }
}

@media (min-width: 769px) {
    .header-cta {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .header-cta a {
        padding: 10px 24px;
        background: linear-gradient(135deg, #d4a853, #c49540);
        color: #0f141e;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
    }
    .header-cta a:hover {
        box-shadow: 0 4px 16px rgba(212,168,83,0.3);
        transform: translateY(-1px);
    }
}
