:root {
    --bg-main: #040d1f;
    --bg-surface: #0f1a2f;
    --bg-surface-soft: #101a31;
    --text-main: #f6f7fb;
    --text-muted: #c4cad8;
    --gold: #f3c20b;
    --gold-soft: rgba(243, 194, 11, 0.18);
    --border-soft: rgba(243, 194, 11, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at 82% 18%, #0b204f 0%, #050f25 28%, var(--bg-main) 60%);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cinzel', serif;
    margin-top: 0;
}

a {
    text-decoration: none;
}

.bg-gray{
    background: rgb(215, 213, 213);
}

/* Header */
.astro-navbar {
    background: rgba(2, 10, 27, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.brand-title {
    color: var(--gold);
    /* font-family: 'Cinzel', serif; */
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.brand-tagline {
    color: #8f99ad;
    font-size: 1rem;
    margin-top: 4px;
    font-weight: 300;
}

.navbar-nav {
    gap: 12px;
}

.nav-link {
    color: #d5dbea !important;
    font-size: 1.05rem;
    font-weight: 300;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold) !important;
}

.btn-gold {
    background: var(--gold);
    color: #101010;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-gold:hover {
    background: #ffd448;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(243, 194, 11, 0.3);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #101010;
}

/* Hero */
.hero-section {
    padding: 88px 0 64px;
    position: relative;
    background-color: #080f21;
}

.hero-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1.02rem;
    font-weight: 400;
    margin-bottom: 26px;
}

.hero-title {
    font-size: clamp(1.35rem, 3vw, 3.35rem);
    line-height: 1.12;
    max-width: 820px;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-title .hero-highlight {
    margin-top: 3px;
}

.hero-text {
    color: var(--text-muted);
    line-height: 1.72;
    font-size: clamp(1.04rem, 1.18vw, 1.42rem);
    max-width: 770px;
    margin-bottom: 34px;
}

.hero-actions {
    margin-bottom: 48px;
}

.hero-actions .btn {
    min-width: 210px;
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-stat-item {
    min-width: 175px;
}

.hero-stat-item h4 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-stat-item p {
    margin: 0;
    color: #b3bbcc;
    font-size: 1.12rem;
    letter-spacing: 0.2px;
}

.hero-img {
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    height: clamp(420px, 62vh, 760px);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.04);
}

/* About */
.about-section {
    padding: 78px 0 96px;
    background: linear-gradient(90deg, #08142d 0%, #08142d 52%, #071327 100%);
}

.about-image-wrap {
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    display: block;
    object-fit: contain;
}

.about-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1rem;
    margin-bottom: 18px;
}

.about-title {
    font-size: clamp(1rem, 3.5vw, 2.8rem);
    line-height: 1.14;
    margin-bottom: 30px;
    max-width: 790px;
}

.about-text {
    color: #d1d6e2;
    font-size: clamp(1rem, 1.2vw, 1.45rem);
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-text-muted {
    color: #bac2d3;
    margin-bottom: 34px;
}

.about-feature-grid {
    margin-top: 6px;
}

.about-feature-card {
    height: 100%;
    padding: 30px 28px;
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    background: rgba(20, 31, 56, 0.82);
}

.about-feature-card h4 {
    margin-bottom: 16px;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-feature-card p {
    margin: 0;
    color: #c1c8d7;
    line-height: 1.75;
    font-size: 1rem;
}

/* Section */
.section-padding {
    padding: 60px 0;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2.2rem, 4.8vw, 2.8rem);
    margin-bottom: 25px;
}

.section-text {
    color: #aeb5c6;
    line-height: 2;
}

.bg-dark {
    background: #080f21 !important;
}

/* Service card */
.service-card {
    background: var(--bg-surface-soft);
    border: 1px solid var(--border-soft);
    border-radius: 30px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.service-card h4 {
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 600;
}

.service-card .service-desc {
    color: #bec5d5;
    line-height: 1.72;
    font-size: 0.92rem;
    margin-bottom: 0;
}

.service-link {
    margin-top: auto;
    display: inline-block;
    padding-top: 24px;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-link:hover {
    color: #ffd448;
    transform: translateX(3px);
}

/* Outcomes */
.outcomes-section {
    background: linear-gradient(180deg, #071225 0%, #081731 100%);
}

.outcome-card {
    height: 100%;
    min-height: 170px;
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    background: rgba(19, 31, 57, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 24px;
}

.outcome-icon {
    color: var(--gold);
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 18px;
}

.outcome-card h4 {
    margin: 0;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1.24rem;
    line-height: 1.35;
    font-weight: 600;
}

/* Consultation Process */
.process-section {
    background: linear-gradient(180deg, #071226 0%, transparent 40%);
}

.process-step {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
    box-shadow: 0 12px 24px rgba(2,8,20,0.45);
    margin: 0 auto 22px auto;
}

.process-title {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.process-desc {
    color: #b8c0ce;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Lead CTA - Free guide */
.lead-cta-section {
    padding: 60px 0;
}

.lead-cta {
    background: linear-gradient(90deg, #e8a800 0%, #ffd900 100%);
    border-radius: 28px;
    padding: 44px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(2,8,20,0.45);
}

.lead-kicker {
    color: rgba(11,18,32,0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.lead-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3.6vw, 2.8rem);
    color: #081226;
    margin-bottom: 14px;
}

.lead-sub {
    color: rgba(11,18,32,0.75);
    margin-bottom: 26px;
}

.lead-form {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.lead-input {
    background: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    min-width: 240px;
    box-shadow: 0 6px 18px rgba(2,8,20,0.12);
}

.btn-download {
    background: #0b0b0b;
    color: #fff;
    border-radius: 999px;
    padding: 14px 34px;
    border: none;
    min-height: 50px;
}

/* Footer */
.footer {
    background: #0a0f1f;
    border-top: 1px solid var(--border-soft);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.footer-logo-img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-description {
    color: #b3bbcc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: capitalize;
}

.footer-links,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-social li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-social a {
    color: #d5dbea;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.25s ease;
    line-height: 1.5;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 30px;
    text-align: center;
    color: #8e96a8;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #8e96a8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* WhatsApp floating action button */
.whatsapp-fab {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(180deg,#25d366 0%, #22c35e 100%);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(2,8,20,0.4);
    z-index: 9999;
}

.whatsapp-fab i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 30px;
    line-height: 1;
    color: #fff;
}

@media (max-width: 767px) {
    .lead-cta { padding: 28px 18px; }
    .lead-form { gap: 12px; }
    .lead-input { min-width: 140px; padding: 12px 18px; }
    .btn-download { padding: 12px 20px; }
    .whatsapp-fab { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

/* Testimonial */
.testimonial-card {
    background: var(--bg-surface-soft);
    border-radius: 30px;
    padding: 35px;
    border: 1px solid var(--border-soft);
    height: 100%;
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 22px;
}

/* Contact form */
.contact-box {
    background: var(--bg-surface);
    border-radius: 35px;
    padding: 40px;
    border: 1px solid var(--border-soft);
}

.contact-box-title {
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.contact-value {
    color: #d5dbea;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
}

.form-control {
    background: #091227;
    border: 1px solid rgba(243, 194, 11, 0.2);
    color: #fff;
    padding: 16px 20px;
    border-radius: 18px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.form-control:focus {
    background: #091227;
    color: #fff;
    box-shadow: none;
    border-color: var(--gold);
}

textarea {
    resize: none;
}



/* Footer */
footer {
    border-top: 1px solid var(--border-soft);
    padding: 30px 0;
    text-align: center;
    color: #8e96a8;
}

/* Responsive */
@media (max-width: 991px) {
    .astro-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        margin-top: 14px;
        background: rgba(6, 13, 30, 0.95);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-nav {
        gap: 6px;
    }

    .hero-section {
        text-align: center;
        padding-top: 70px;
        padding-bottom: 54px;
    }

    .hero-kicker {
        margin-bottom: 18px;
    }

    .hero-title {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.18rem;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 34px;
    }

    .hero-actions .btn {
        min-width: 212px;
        min-height: 60px;
    }

    .hero-stats {
        justify-content: center;
        gap: 26px;
    }

    .hero-stat-item {
        min-width: 158px;
    }

    .hero-img {
        margin-top: 14px;
        height: 460px;
    }

    .service-card {
        padding: 30px;
    }

    /* process responsive tweaks */
    .process-circle {
        width: 65px;
        height: 65px;
        font-size: 1.4rem;
    }

    .process-title {
        font-size: 1.18rem;
    }

    .outcome-card {
        min-height: 160px;
        border-radius: 24px;
    }

    /* Mobile slide-in sidebar styles */
    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 20, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 1050;
    }

    .sidebar-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(360px, 92vw);
        background: linear-gradient(180deg, rgba(6,13,30,0.98), rgba(8,16,34,0.98));
        box-shadow: -24px 0 48px rgba(2,8,20,0.6);
        transform: translateX(110%);
        transition: transform 0.32s cubic-bezier(.2,.9,.2,1);
        z-index: 1060;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mobile-sidebar.open {
        transform: translateX(0);
    }

    .mobile-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .mobile-sidebar-title {
        color: var(--gold);
        font-size: 1.2rem;
        margin: 0;
    }

    .mobile-sidebar-close {
        background: transparent;
        border: none;
        color: var(--text-main);
        font-size: 1.6rem;
        line-height: 1;
        padding: 6px 10px;
        cursor: pointer;
    }

    .mobile-sidebar-nav ul {
        list-style: none;
        padding: 0;
        margin: 6px 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .mobile-sidebar-nav a {
        color: #dce6f6;
        font-size: 1.05rem;
        padding: 10px 6px;
        display: block;
    }

    .mobile-sidebar-cta { margin-top: 12px; }

    /* Ensure the default bootstrap collapse doesn't interfere on small screens */
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-toggler { display: inline-flex; }

    .outcome-card h4 {
        font-size: 1rem;
    }

    .about-section {
        padding: 66px 0 78px;
    }

    .about-image {
        min-height: 430px;
    }

    .about-kicker,
    .about-title,
    .about-text {
        text-align: center;
    }

    .about-title {
        margin-bottom: 20px;
    }

    .about-text {
        margin-bottom: 16px;
    }

    .about-text-muted {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .brand-title {
        font-size: 1rem;
    }

    .brand-tagline {
        font-size: 0.9rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.95rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-kicker {
        font-size: 0.86rem;
        letter-spacing: 4px;
    }

    .section-padding {
        padding: 72px 0;
    }

    .hero-text {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        margin-bottom: 20px;
    }

    .hero-img {
        height: 380px;
        border-radius: 26px;
    }

    .hero-stats {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .hero-stat-item {
        min-width: 0;
        flex: 1;
        text-align: center;
    }

    .hero-stat-item h4 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .hero-stat-item p {
        font-size: 0.9rem;
    }

    .btn-gold,
    .btn-outline-gold {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-actions .btn {
        min-width: 100%;
    }

    .service-card {
        border-radius: 24px;
        padding: 24px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .service-card h4 {
        font-size: 1.08rem;
        margin-bottom: 12px;
    }

    .service-card .service-desc,
    .service-link {
        font-size: 0.88rem;
    }

    .service-link {
        padding-top: 18px;
    }

    .outcome-card {
        min-height: 145px;
        border-radius: 22px;
        padding: 26px 18px;
    }

    .outcome-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .outcome-card h4 {
        font-size: 0.95rem;
    }

    .about-section {
        padding: 54px 0 64px;
    }

    .about-image-wrap {
        border-radius: 26px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-kicker {
        font-size: 0.86rem;
        letter-spacing: 4px;
    }

    .about-title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .about-text {
        font-size: 1.03rem;
        line-height: 1.8;
    }

    .about-feature-card {
        border-radius: 22px;
        padding: 24px 22px;
    }

    .about-feature-card h4 {
        font-size: 1.65rem;
    }

    .about-feature-card p {
        font-size: 1.03rem;
    }

    /* process mobile tweaks */
    .process-circle {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .process-title {
        font-size: 1.05rem;
    }

    .process-desc {
        max-width: 100%;
        padding: 0 12px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-social a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.9rem;
    }

    .whatsapp-fab {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

}

/* Hide mobile sidebar elements and hamburger on larger screens */
@media (min-width: 992px) {
    .mobile-sidebar,
    .sidebar-overlay {
        display: none;
    }

    /* Hide custom hamburger on larger screens (bootstrap navbar expansion handles desktop) */
    .navbar-toggler {
        display: none;
    }
}