:root {
    --green-dark: #082f1f;
    --green-main: #123f2b;
    --green-soft: #1d563b;
    --gold: #d6ae32;
    --gold-light: #ead99b;
    --cream: #f4f1e8;
    --cream-soft: #faf7ef;
    --white: #ffffff;
    --text: #10281d;
    --muted: #62766b;
    --border-gold: rgba(214, 174, 50, 0.28);
    --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 22px 60px rgba(0, 0, 0, 0.22);
    --radius-lg: 28px;
    --radius-md: 18px;
    --header-height: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
    direction: rtl;
}

body.nav-open {
    overflow: hidden;
}

section[id] {
    scroll-margin-top: 110px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================
   Header
========================= */

.site-header {
    background: rgba(8, 47, 31, 0.96);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-logo,
.footer-logo {
    width: 56px;
    height: 56px;
    border: 2px solid var(--gold);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 29px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.04);
}

.brand-text strong {
    display: block;
    color: var(--gold);
    font-size: 25px;
    line-height: 1.1;
}

.brand-text span {
    display: block;
    color: #dce8e1;
    font-size: 14px;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: bold;
}

.main-nav a {
    color: #e1ebe5;
    font-size: 15px;
    transition: 0.25s;
    position: relative;
    padding: 32px 0;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-whatsapp {
    min-height: 42px;
    padding: 0 19px;
    border-radius: 12px;
    background: var(--gold);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.25s;
    white-space: nowrap;
}

.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 174, 50, 0.25);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 10px;
    margin: 5px 0;
    transition: 0.25s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   General Buttons
========================= */

.main-btn {
    min-height: 56px;
    padding: 0 32px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.25s;
    border: 1px solid transparent;
}

.main-btn.gold {
    background: var(--gold);
    color: var(--green-dark);
}

.main-btn.dark {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(8, 47, 31, 0.45);
}

.main-btn:hover {
    transform: translateY(-3px);
}

.package-btn {
    margin-top: 28px;
}

/* =========================
   Hero
========================= */

.one-page {
    background: var(--cream);
    overflow: hidden;
}

.hero-home {
    min-height: calc(100vh - var(--header-height));
    background:
        radial-gradient(circle at center, rgba(214, 174, 50, 0.11), transparent 42%),
        linear-gradient(135deg, #164b33, var(--green-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 90px 0;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(214, 174, 50, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.28;
}

.hero-home::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(214, 174, 50, 0.18);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-home .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.35;
    margin: 0 0 24px;
    color: var(--white);
    font-weight: 800;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    max-width: 810px;
    margin: 0 auto 36px;
    font-size: 22px;
    line-height: 1.9;
    color: #e5eee8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.floating-register-box {
    margin-top: 55px;
    background: rgba(8, 47, 31, 0.9);
    border: 1px solid rgba(214, 174, 50, 0.45);
    border-radius: 24px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    text-align: right;
    box-shadow: var(--shadow-dark);
}

.floating-register-box h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 30px;
}

.floating-register-box p {
    margin: 0;
    color: #dce8e0;
    line-height: 1.8;
    font-size: 17px;
}

/* =========================
   Sections
========================= */

.section-block {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(214, 174, 50, 0.08), transparent 36%),
        var(--green-main);
    color: var(--white);
}

.section-light {
    background: var(--cream);
    color: var(--text);
}

.section-head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 58px;
}

.section-label-main {
    display: block;
    color: var(--gold);
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.4;
    margin: 0;
}

.section-head p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--muted);
    margin: 24px auto 0;
}

.section-dark .section-head p {
    color: #dce8e0;
}

.gold-separator {
    width: 82px;
    height: 3px;
    background: var(--gold);
    margin: 24px auto 0;
    border-radius: 10px;
}

/* =========================
   About
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.about-card,
.service-card,
.condition-card,
.faq-item,
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
}

.about-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
}

.about-card h3,
.service-card h3,
.condition-card h3,
.contact-card h3 {
    font-size: 28px;
    margin: 0 0 16px;
    color: var(--green-dark);
}

.about-card p,
.service-card p,
.condition-card p,
.contact-card p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
    margin: 0;
}

.about-stats {
    display: grid;
    gap: 18px;
}

.stat-box {
    background:
        linear-gradient(135deg, var(--green-main), var(--green-dark));
    color: var(--white);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(214, 174, 50, 0.35);
}

.stat-box strong {
    display: block;
    color: var(--gold);
    font-size: 38px;
    margin-bottom: 8px;
}

.stat-box span {
    color: #e2ece6;
    font-size: 18px;
}

/* =========================
   Services
========================= */

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.package-card {
    background: rgba(8, 47, 31, 0.95);
    color: var(--white);
    border: 1px solid rgba(214, 174, 50, 0.45);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow-dark);
    min-height: 100%;
}

.package-label {
    display: inline-block;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 14px;
}

.package-card h3 {
    font-size: 34px;
    color: var(--white);
    margin: 0 0 18px;
}

.package-card p {
    color: #dce8e0;
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
}

.features-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.features-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(214, 174, 50, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    font-weight: bold;
}

.features-list span::after {
    content: "✓";
    color: var(--gold);
    font-size: 18px;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.service-card {
    padding: 28px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--green-main);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(18, 63, 43, 0.16);
}

/* =========================
   Journey
========================= */

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.journey-step {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 26px;
    text-align: center;
    border: 1px solid rgba(214, 174, 50, 0.22);
    box-shadow: var(--shadow-soft);
    transition: 0.25s;
}

.journey-step:hover {
    transform: translateY(-6px);
}

.step-circle {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--green-main);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.journey-step strong {
    display: inline-block;
    background: #f6efd8;
    color: #806214;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    font-size: 14px;
}

.journey-step h3 {
    font-size: 24px;
    color: var(--green-dark);
    margin: 0 0 12px;
}

.journey-step p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
    margin: 0;
}

/* =========================
   Conditions
========================= */

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.condition-card {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(214, 174, 50, 0.35);
    box-shadow: none;
}

.condition-card h3 {
    color: var(--gold);
}

.condition-card ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.condition-card li {
    color: #e4eee8;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 8px;
    position: relative;
    padding-right: 26px;
}

.condition-card li::before {
    content: "✓";
    color: var(--gold);
    position: absolute;
    right: 0;
    top: 0;
}

/* =========================
   FAQ
========================= */

.faq-wrapper {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 30px;
    font-size: 21px;
    font-weight: bold;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "⌄";
    color: var(--gold);
    font-size: 26px;
    transition: 0.2s;
}

.faq-item[open] summary::before {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 28px;
    border-top: 1px solid #eee6d1;
    color: var(--muted);
    line-height: 1.9;
    font-size: 18px;
}

/* =========================
   Contact
========================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-card {
    height: 100%;
}

.contact-highlight {
    background:
        linear-gradient(135deg, #fff, #fbf4de);
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-info-list a,
.contact-info-list div {
    display: block;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8f5ec;
    border: 1px solid rgba(214, 174, 50, 0.18);
}

.contact-info-list span {
    display: block;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 6px;
}

.contact-info-list strong {
    display: block;
    color: var(--green-dark);
    line-height: 1.7;
}

.contact-actions {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-actions a {
    background: var(--green-main);
    color: var(--white);
    border-radius: 14px;
    padding: 16px 18px;
    font-weight: bold;
    border: 1px solid rgba(214, 174, 50, 0.32);
    text-align: center;
}

.contact-actions .register-final {
    background: var(--gold);
    color: var(--green-dark);
}

/* =========================
   Side Scroll Nav
========================= */

.side-scroll-nav {
    position: fixed;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: grid;
    gap: 10px;
}

.side-scroll-nav a {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(214, 174, 50, 0.45);
    border: 1px solid var(--gold);
    transition: 0.2s;
}

.side-scroll-nav a:hover,
.side-scroll-nav a.active {
    transform: scale(1.35);
    background: var(--gold);
}

/* =========================
   Footer
========================= */

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(214, 174, 50, 0.06), transparent 32%),
        #061d14;
    color: var(--white);
    padding: 72px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr 1fr;
    gap: 42px;
    align-items: start;
}

.footer-brand {
    align-items: flex-start;
}

.footer-brand h3 {
    color: var(--gold);
    margin: 0 0 14px;
    font-size: 24px;
}

.footer-brand p {
    color: #dbe5df;
    line-height: 1.9;
    margin: 0;
    font-size: 16px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin: 0 0 18px;
    font-size: 20px;
}

.footer-links a {
    display: block;
    color: #dbe5df;
    margin-bottom: 11px;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: #dbe5df;
    line-height: 1.8;
    margin: 0 0 12px;
}

.footer-contact strong {
    color: var(--gold-light);
}

.footer-contact a {
    color: #dbe5df;
}

.footer-whatsapp {
    display: inline-flex;
    margin-top: 8px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 13px;
    background: var(--gold);
    color: var(--green-dark) !important;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #cbd8d0;
}

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    color: #cbd8d0;
    font-size: 14px;
}

/* =========================
   Floating WhatsApp
========================= */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 950;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: 0.25s;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .header-whatsapp {
        padding: 0 14px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 76px;
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .brand {
        order: 1;
    }

    .header-actions {
        order: 2;
        margin-right: auto;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 16px;
        left: 16px;
        background: rgba(8, 47, 31, 0.98);
        border: 1px solid rgba(214, 174, 50, 0.34);
        border-radius: 18px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        box-shadow: var(--shadow-dark);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
    }

    .main-nav a::after {
        display: none;
    }

    .floating-register-box,
    .about-grid,
    .services-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-card {
        min-height: auto;
    }

    .service-cards,
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .header-whatsapp {
        display: none;
    }

    .brand-logo,
    .footer-logo {
        width: 48px;
        height: 48px;
        font-size: 24px;
        border-radius: 12px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    .brand-text span {
        font-size: 13px;
    }

    .hero-home {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-home::after {
        width: 340px;
        height: 340px;
    }

    .hero-badge {
        font-size: 19px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .hero-buttons .main-btn,
    .floating-register-box .main-btn,
    .package-btn {
        width: 100%;
    }

    .floating-register-box {
        padding: 24px;
    }

    .floating-register-box h2 {
        font-size: 25px;
    }

    .section-block {
        padding: 72px 0;
    }

    .section-label-main {
        font-size: 22px;
    }

    .section-head p {
        font-size: 18px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .side-scroll-nav {
        display: none;
    }

    .about-card,
    .service-card,
    .condition-card,
    .contact-card {
        padding: 26px;
    }

    .faq-item summary {
        padding: 20px 22px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 22px 24px;
        font-size: 16px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        min-height: 48px;
        padding: 0 16px;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero-title {
        font-size: 34px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .package-card {
        padding: 28px 22px;
    }

    .package-card h3 {
        font-size: 28px;
    }

    .footer-brand {
        flex-direction: column;
    }
}