/* ============================
   Global Styles
============================ */

:root {
    --bg-dark: #050816;
    --bg-card: rgba(10, 20, 40, 0.85);
    --bg-card-soft: rgba(10, 20, 40, 0.75);
    --accent-primary: #f5c857;
    --accent-primary-soft: rgba(245, 200, 87, 0.2);
    --accent-secondary: #2d8bff;
    --text-main: #f6f7fb;
    --text-muted: #aab3c8;
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
    --radius-card: 26px;
    --radius-soft: 18px;
    --blur-glass: 22px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #ffffff 0, #050816 45%, #ffffff 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.site-main {
    padding-top: 82px;
    /* fixed header space */
}


/* ============================
   Glass Navigation
============================ */

.glass-nav {
    background: radial-gradient(circle at top left, rgba(245, 200, 87, 0.12), rgba(5, 8, 22, 0.94));
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
    color: #fff;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(245, 200, 87, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    background: radial-gradient(circle at top, rgba(245, 200, 87, 0.35), rgba(8, 16, 40, 0.95));
}

.logo-text {
    line-height: 1.1;
    font-size: 15px;
}

.logo-text small {
    font-size: 11px;
    color: var(--text-muted);
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 14px;
    padding-left: 14px !important;
    padding-right: 14px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover {
    color: #fff !important;
}


/* Glass Button */

.btn-glass-primary {
    border-radius: 999px;
    border: 1px solid rgba(245, 200, 87, 0.75);
    background: radial-gradient(circle at top left, rgba(245, 200, 87, 0.3), rgba(5, 8, 22, 0.96));
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.25s ease;
}

.btn-glass-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
    color: #fff;
}


/* ============================
   Hero Section
============================ */

.hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.75;
}

.hero-section::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 139, 255, 0.4), transparent 70%);
    top: -120px;
    left: -80px;
}

.hero-section::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 200, 87, 0.5), transparent 70%);
    bottom: -120px;
    right: -40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--accent-primary);
    text-shadow: 0 0 20px rgba(245, 200, 87, 0.6);
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-cta .btn {
    min-width: 170px;
}


/* Primary & Outline Glass Buttons */

.btn-primary-glass,
.btn-outline-glass {
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary-glass {
    border: 1px solid rgba(245, 200, 87, 0.8);
    background: linear-gradient(120deg, rgba(245, 200, 87, 0.18), rgba(45, 139, 255, 0.18));
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
}

.btn-outline-glass {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(5, 8, 22, 0.75);
    color: var(--text-main);
}

.btn-primary-glass::before,
.btn-outline-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.24), transparent 65%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.btn-primary-glass:hover,
.btn-outline-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.btn-primary-glass:hover::before,
.btn-outline-glass:hover::before {
    opacity: 1;
}


/* Hero trust */

.hero-trust h4 {
    font-size: 17px;
    margin-bottom: 2px;
}

.hero-trust p {
    font-size: 12px;
    color: var(--text-muted);
}


/* Hero images */

.hero-card {
    padding: 18px;
    position: relative;
}

.glass-card {
    border-radius: var(--radius-card);
    background: radial-gradient(circle at top left, rgba(245, 200, 87, 0.06), rgba(5, 8, 22, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    box-shadow: var(--shadow-soft);
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.hero-img-main {
    grid-row: 1 / 3;
    position: relative;
}

.hero-img-small.top {
    align-self: flex-end;
}

.hero-img-small.bottom {
    align-self: flex-start;
}

.hero-img img {
    display: block;
    width: 100%;
    height: auto;
}


/* Badges */

.badge-soft {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(245, 200, 87, 0.6);
    padding: 4px 12px;
    font-size: 11px;
    color: var(--accent-primary);
    background: linear-gradient(120deg, rgba(245, 200, 87, 0.14), rgba(45, 139, 255, 0.12));
    margin-right: 6px;
}


/* Floating stat */

.floating-stat {
    position: absolute;
    bottom: -18px;
    right: 20px;
    background: rgba(5, 8, 22, 0.9);
    border-radius: 18px;
    padding: 10px 16px;
    border: 1px solid rgba(245, 200, 87, 0.5);
    font-size: 12px;
}

.floating-stat strong {
    font-size: 18px;
    color: var(--accent-primary);
    display: block;
}


/* ============================
   Sections
============================ */

.section-tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(245, 200, 87, 0.5);
    background: rgba(5, 8, 22, 0.9);
    color: var(--accent-primary);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 620px;
}


/* Premium section spacing */

.premium-section,
.services-section,
.why-section,
.cta-section,
.services-detailed,
.about-values {
    padding-top: 80px;
    padding-bottom: 80px;
}


/* Feature item */

.feature-item h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}


/* Service cards */

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

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-card ul li {
    font-size: 12px;
    color: var(--text-muted);
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
}

.service-card ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-primary);
    position: absolute;
    left: 0;
    top: 7px;
}


/* Metrics grid */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.metric-card {
    padding: 18px 16px;
    text-align: left;
}

.metric-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--accent-primary);
}

.metric-card p {
    font-size: 13px;
    color: var(--text-muted);
}


/* Icon bullet */

.icon-point {
    display: flex;
    gap: 10px;
}

.icon-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    margin-top: 4px;
}

.icon-point h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.icon-point p {
    font-size: 13px;
    color: var(--text-muted);
}


/* CTA */

.cta-card {
    justify-content: space-between;
}


/* Page hero */

.page-hero {
    padding: 100px 0 60px;
}


/* Service detailed blocks */

.service-block .service-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-block .service-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    padding-left: 0;
    font-size: 13px;
}

.service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-primary);
}


/* About */

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.about-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-secondary);
}


/* Contact */

.contact-card {
    border-radius: 26px;
}

.form-control-glass,
.form-select.form-control-glass {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 8, 22, 0.9);
    color: var(--text-main);
    font-size: 14px;
}

.form-control-glass:focus,
.form-select.form-control-glass:focus {
    outline: none;
    box-shadow: 0 0 0 1px var(--accent-primary);
    border-color: rgba(245, 200, 87, 0.8);
    background: rgba(5, 8, 22, 0.98);
}


/* ============================
   Footer
============================ */

.site-footer {
    background: radial-gradient(circle at top, rgba(245, 200, 87, 0.04), rgba(5, 8, 22, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-primary);
}


/* ============================
   Floating Buttons
============================ */

.floating-btn {
    position: fixed;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1030;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.floating-call {
    right: 26px;
    background: radial-gradient(circle at top, #2d8bff, #020617);
}

.floating-whatsapp {
    right: 80px;
    background: radial-gradient(circle at top, #22c55e, #020617);
}


/* ============================
   Responsive
============================ */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 32px;
    }
    .premium-section,
    .services-section,
    .why-section,
    .cta-section,
    .services-detailed,
    .about-values {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 70px;
    }
    .hero-image-grid {
        grid-template-columns: 1.6fr 1.2fr;
    }
    .floating-whatsapp {
        right: 26px;
        bottom: 80px;
    }
    .floating-call {
        right: 26px;
        bottom: 26px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 26px;
    }
    .section-title {
        font-size: 24px;
    }
    .hero-trust {
        gap: 16px;
    }
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}