/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    background: #f5f8f6;
    color: #183528;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================
   VARIABLES
========================= */

:root {

    --dark: #08351d;

    --green: #176b3a;

    --green-light: #2aa45d;

    --soft: #e9f5ed;

    --text: #183528;

    --muted: #718078;

    --white: #ffffff;

    --border: rgba(23, 107, 58, 0.10);

    --shadow:
        0 15px 45px rgba(8, 53, 29, 0.08);

    --radius: 22px;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {

    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    height: 78px;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.90);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 21px;

    font-weight: 900;

    color: var(--dark);
}

.logo-mark {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--soft);

    border-radius: 13px;

    font-size: 21px;
}


/* NAV */

.nav {

    display: flex;

    align-items: center;

    gap: 5px;
}

.nav a {

    padding: 9px 17px;

    border-radius: 12px;

    color: #4d5e54;

    font-size: 14px;

    font-weight: 700;

    transition: 0.2s;
}

.nav a:hover {

    color: var(--green);

    background: var(--soft);
}

.nav a.active {

    color: white;

    background: var(--green);
}


/* MOBILE BUTTON */

.menu-btn {

    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 12px;

    background: var(--soft);

    color: var(--dark);

    font-size: 22px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {

    min-height: 720px;

    position: relative;

    display: flex;

    align-items: center;

    color: white;

    background-image:
        url("./images/banner.jpg");

    background-size: cover;

    background-position: center;
}

.hero-dark {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 27, 15, 0.25),
            rgba(3, 27, 15, 0.86)
        );
}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding-top: 70px;
}

.hero-tag {

    display: inline-flex;

    padding: 8px 15px;

    margin-bottom: 20px;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 100px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(10px);

    font-size: 13px;

    font-weight: 700;
}

.hero h1 {

    font-size: clamp(52px, 8vw, 90px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 18px;

    font-weight: 900;
}

.hero h2 {

    font-size: clamp(25px, 4vw, 42px);

    line-height: 1.4;

    margin-bottom: 18px;

    font-weight: 800;
}

.hero p {

    max-width: 600px;

    color: rgba(255,255,255,0.86);

    font-size: 16px;

    margin-bottom: 30px;
}


/* BUTTONS */

.hero-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 13px;

    font-size: 14px;

    font-weight: 800;

    transition: 0.25s;
}

.button:hover {

    transform: translateY(-3px);
}

.button-green {

    color: white;

    background: var(--green-light);

    box-shadow:
        0 12px 30px rgba(42,164,93,0.30);
}

.button-glass {

    color: white;

    background: rgba(255,255,255,0.11);

    border: 1px solid rgba(255,255,255,0.25);

    backdrop-filter: blur(10px);
}

.button-white {

    color: var(--dark);

    background: white;
}


/* =========================
   INTRO
========================= */

.intro {

    padding: 90px 0;

    background: white;
}

.intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.small-title {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 13px;

    font-weight: 900;
}

.intro h2 {

    max-width: 520px;

    color: var(--dark);

    font-size: clamp(32px, 5vw, 50px);

    line-height: 1.4;

    font-weight: 900;
}

.intro p {

    max-width: 600px;

    color: var(--muted);

    font-size: 16px;
}


/* =========================
   FEATURES
========================= */

.features {

    padding: 80px 0 100px;
}

.section-head {

    margin-bottom: 35px;
}

.section-head h2 {

    color: var(--dark);

    font-size: 34px;

    font-weight: 900;
}


/* CARDS */

.cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.card {

    position: relative;

    min-height: 190px;

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 8px 30px rgba(8,53,29,0.05);

    overflow: hidden;

    transition: 0.25s;
}

.card::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    right: 0;

    width: 4px;

    background: var(--green-light);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: 0.25s;
}

.card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(8,53,29,0.12);
}

.card:hover::before {

    transform: scaleY(1);
}


/* ICON */

.card-icon {

    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--soft);

    font-size: 27px;
}

.card-text {

    flex: 1;
}

.card-text h3 {

    color: var(--dark);

    font-size: 17px;

    margin-bottom: 5px;

    font-weight: 900;
}

.card-text p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.card-arrow {

    color: var(--green);

    font-size: 22px;
}


/* =========================
   CTA
========================= */

.cta-section {

    padding-bottom: 100px;
}

.cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 50px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08351d,
            #176b3a
        );

    box-shadow:
        0 20px 55px rgba(8,53,29,0.18);
}

.small-title.light {

    color: #a9e5bd;
}

.cta h2 {

    font-size: 30px;

    margin-bottom: 8px;
}

.cta p {

    color: rgba(255,255,255,0.72);

    font-size: 14px;
}


/* =========================
   FOOTER
========================= */

.footer {

    background: #062a18;

    color: white;
}

.footer-grid {

    display: grid;


    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 50px;

    padding: 65px 0;
}

.footer-logo {

    color: white;
}

.footer-about p {

    max-width: 350px;

    margin-top: 18px;

    color: rgba(255,255,255,0.58);

    font-size: 13px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
}

.footer-column h3 {

    margin-bottom: 8px;

    font-size: 15px;
}

.footer-column a {

    color: rgba(255,255,255,0.58);

    font-size: 13px;

    transition: 0.2s;
}

.footer-column a:hover {

    color: white;
}

.footer-bottom {

    padding: 20px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.42);

    text-align: center;

    font-size: 12px;
}


/* =========================
   INNER PAGES
========================= */

.page {

    min-height: 75vh;

    padding-top: 150px;

    padding-bottom: 100px;

    background:
        linear-gradient(
            180deg,
            white,
            #f5f8f6
        );
}

.page-title {

    max-width: 750px;

    margin-bottom: 45px;
}

.page-title .small-title {

    margin-bottom: 10px;
}

.page-title h1 {

    color: var(--dark);

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1.4;

    margin-bottom: 12px;

    font-weight: 900;
}

.page-title p {

    color: var(--muted);

    font-size: 15px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .header {
        height: 70px;
    }

    .menu-btn {

        display: flex;

        align-items: center;

        justify-content: center;
    }

    .nav {

        position: absolute;

        top: 70px;

        right: 15px;
        left: 15px;

        display: none;

        flex-direction: column;

        padding: 10px;

        background: rgba(255,255,255,0.98);

        border-radius: 18px;

        box-shadow:
            0 20px 45px rgba(0,0,0,0.12);
    }

    .nav.show {
        display: flex;
    }

    .nav a {

        width: 100%;

        text-align: center;

        padding: 13px;
    }

    .hero {

        min-height: 650px;
    }

    .intro-grid {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cards {

        grid-template-columns: 1fr;
    }

    .cta {

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {

        grid-template-columns: 1fr 1fr;
    }

    .footer-about {

        grid-column: 1 / -1;
    }
}


@media (max-width: 520px) {

    .container {

        width:
            calc(100% - 28px);
    }

    .hero {

        min-height: 610px;
    }

    .hero-content {

        padding-top: 50px;
    }

    .hero h1 {

        font-size: 55px;

        letter-spacing: -2px;
    }

    .hero h2 {

        font-size: 26px;
    }

    .hero p {

        font-size: 14px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .button {

        width: 100%;
    }

    .intro {

        padding: 65px 0;
    }

    .intro h2 {

        font-size: 32px;
    }

    .features {

        padding: 60px 0 70px;
    }

    .card {

        min-height: 160px;

        padding: 20px;
    }

    .card-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 23px;
    }

    .cta {

        padding: 32px 24px;
    }

    .cta h2 {

        font-size: 24px;
    }

    .footer-grid {

        grid-template-columns: 1fr;
    }

    .footer-about {

        grid-column: auto;
    }
}
/* ================================
   SUPPORT PAGE
================================ */

.page-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(8, 53, 29, 0.96),
            rgba(23, 107, 58, 0.92)
        );
    color: #ffffff;
}

.page-hero .hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: 42px;
}

.page-hero p {
    max-width: 700px;
    margin: auto;
    line-height: 2;
    opacity: 0.9;
}


/* Support section */

.support-section {
    padding: 90px 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--green-light);
    font-weight: 700;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 32px;
}

.section-heading p {
    color: var(--muted);
    line-height: 2;
}


/* Support cards */

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.support-card {
    padding: 30px 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2eee6;
    box-shadow: 0 12px 35px rgba(8, 53, 29, 0.07);
    transition: 0.3s ease;
}

.support-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(8, 53, 29, 0.12);
}

.support-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--soft);
    font-size: 28px;
    margin-bottom: 20px;
}

.support-card h3 {
    margin: 0 0 12px;
    color: var(--dark);
}

.support-card p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
    font-size: 14px;
}


/* Form */

.support-form-section {
    padding: 90px 20px;
    background: #f4faf6;
}

.support-form-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 35px;
    align-items: stretch;
}

.support-form-info {
    padding: 40px;
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            var(--dark),
            var(--green)
        );
    color: #ffffff;
}

.support-form-info h2 {
    margin: 25px 0 15px;
    font-size: 32px;
}

.support-form-info > p {
    line-height: 2;
    opacity: 0.85;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item > span {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
}

.info-item small {
    opacity: 0.75;
    line-height: 1.8;
}


.support-form-box {
    padding: 35px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(8, 53, 29, 0.08);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #dce9e0;
    background: #f9fcfa;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(42, 164, 93, 0.08);
}


.form-group textarea {
    resize: vertical;
    min-height: 150px;
}


.support-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
}


.support-result {
    margin-top: 18px;
    padding: 16px;
    border-radius: 14px;
    line-height: 2;
    font-size: 14px;
}


.support-result.success {
    background: #e9f8ee;
    color: #146b37;
    border: 1px solid #c9ebd5;
}


.support-result.error {
    background: #fff0f0;
    color: #a52b2b;
    border: 1px solid #f0cccc;
}


/* FAQ */

.faq-section {
    padding: 90px 20px;
}


.faq-list {
    max-width: 850px;
    margin: auto;
}


.faq-item {
    margin-bottom: 12px;
    border: 1px solid #e2eee6;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}


.faq-item summary {
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--dark);
    position: relative;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::before {
    content: "+";
    position: absolute;
    left: 22px;
    font-size: 22px;
    color: var(--green-light);
}


.faq-item[open] summary::before {
    content: "−";
}


.faq-answer {
    padding: 0 22px 20px;
}


.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}


/* CTA */

.cta-section {
    padding: 70px 20px;
}


.cta-box {
    max-width: 1100px;
    margin: auto;
    padding: 45px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            var(--dark),
            var(--green)
        );
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}


.cta-box span {
    opacity: 0.8;
}


.cta-box h2 {
    margin: 10px 0;
    font-size: 30px;
}


.cta-box p {
    margin: 0;
    line-height: 2;
    opacity: 0.8;
}


.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border-radius: 13px;
    background: #ffffff;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}


/* Mobile */

@media (max-width: 900px) {

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-form-wrapper {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 125px 18px 65px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .support-section,
    .support-form-section,
    .faq-section {
        padding: 65px 18px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .support-form-info,
    .support-form-box {
        padding: 25px;
    }

    .support-form-info h2 {
        font-size: 26px;
    }

    .cta-section {
        padding: 50px 18px;
    }

    .cta-box {
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box h2 {
        font-size: 25px;
    }

}
/* =====================================
   ADVERTISEMENT PAGE
===================================== */

.ads-position-section {
    padding: 35px 20px;
}

.ad-placeholder {
    max-width: 1100px;
    min-height: 180px;
    margin: auto;
    padding: 35px;
    box-sizing: border-box;
    border: 2px dashed #cfe2d5;
    border-radius: 24px;
    background: #f7fbf8;
    text-align: center;
}

.ad-placeholder.featured-ad {
    min-height: 230px;
}

.ad-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: #e9f5ed;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.ad-placeholder-icon {
    margin: 15px 0 5px;
    font-size: 34px;
}

.ad-placeholder h3 {
    margin: 8px 0;
    color: var(--dark);
}

.ad-placeholder p {
    color: var(--muted);
    line-height: 2;
}


/* Ads */

.ads-section {
    padding: 70px 20px;
}

.ad-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.ad-filter-btn {
    border: 1px solid #dce9e0;
    background: #ffffff;
    color: var(--text);
    padding: 10px 18px;
    border-radius: 30px;
    font-family: inherit;
    cursor: pointer;
}

.ad-filter-btn.active,
.ad-filter-btn:hover {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green);
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ad-card {
    background: #ffffff;
    border: 1px solid #e2eee6;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(8,53,29,0.07);
    transition: 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-6px);
}

.ad-card-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--soft);
    font-size: 55px;
}

.ad-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--green);
    color: #ffffff;
    font-size: 12px;
}

.ad-card-content {
    padding: 22px;
}

.ad-city {
    color: var(--green-light);
    font-size: 13px;
    font-weight: 700;
}

.ad-card h3 {
    margin: 10px 0;
    color: var(--dark);
}

.ad-card p {
    color: var(--muted);
    line-height: 2;
    font-size: 14px;
}

.ad-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}


/* Plans */

.plans-section {
    padding: 90px 20px;
    background: #f4faf6;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1150px;
    margin: auto;
}

.plan-card {
    position: relative;
    padding: 32px 26px;
    background: #ffffff;
    border: 1px solid #dfece3;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(8,53,29,0.06);
}

.plan-card.popular {
    border: 2px solid var(--green-light);
    transform: translateY(-8px);
}

.plan-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.plan-card h3 {
    color: var(--dark);
    margin: 0 0 12px;
    font-size: 22px;
}

.plan-price {
    color: var(--green);
    font-size: 23px;
    font-weight: 800;
}

.plan-duration {
    color: var(--muted);
    margin-top: 5px;
    font-size: 13px;
}

.plan-card ul {
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.plan-card li {
    padding: 9px 0;
    color: var(--muted);
    border-bottom: 1px solid #eef4ef;
    font-size: 14px;
}

.plan-card li::before {
    content: "✓";
    color: var(--green-light);
    margin-left: 7px;
    font-weight: bold;
}

.popular-label {
    position: absolute;
    top: -13px;
    right: 50%;
    transform: translateX(50%);
    background: var(--green);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid var(--green);
    border-radius: 13px;
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--green);
    color: #ffffff;
}


/* Submit Ad */

.submit-ad-section {
    padding: 90px 20px;
    background: #f4faf6;
}

.submit-ad-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
}

.submit-ad-info {
    padding: 40px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--dark),
        var(--green)
    );
}

.submit-ad-info h2 {
    font-size: 32px;
    margin: 25px 0 15px;
}

.submit-ad-info > p {
    line-height: 2;
    opacity: 0.85;
}

.ad-process {
    margin-top: 35px;
}

.ad-process div {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.ad-process strong {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.ad-process span {
    opacity: 0.9;
}

.submit-ad-box {
    padding: 35px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(8,53,29,0.08);
}

.ad-plan-select {
    display: grid;
    gap: 10px;
}

.ad-plan-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #dce9e0;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.ad-plan-option:hover {
    border-color: var(--green-light);
    background: #f7fcf8;
}

.ad-plan-option input {
    accent-color: var(--green);
}

.ad-plan-option span {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.ad-plan-option b {
    color: var(--green);
}

.selected-price {
    margin: 25px 0;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    background: var(--soft);
}

.selected-price span {
    color: var(--text);
}

.selected-price strong {
    color: var(--green);
    font-size: 20px;
}

.submit-ad-button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
}


/* Responsive */

@media (max-width: 950px) {

    .ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .submit-ad-wrapper {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .ads-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }

    .submit-ad-section {
        padding: 60px 18px;
    }

    .submit-ad-info,
    .submit-ad-box {
        padding: 25px;
    }

    .submit-ad-info h2 {
        font-size: 26px;
    }

    .ad-plan-option span {
        flex-direction: column;
        gap: 5px;
    }

}
/* =================================
   PLACES PAGE
================================= */

.places-header {
    padding: 145px 20px 65px;
    text-align: center;
    background: #f1f8f3;
}

.places-header h1 {
    margin: 18px 0 10px;
    color: var(--dark);
    font-size: 40px;
}

.places-header p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}


/* Search */

.places-tools {
    padding: 35px 20px 10px;
    background: #ffffff;
}

.places-search {
    max-width: 600px;
    margin: auto;
}

.places-search input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    border: 1px solid #dce9e0;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    background: #f9fcfa;
}

.places-search input:focus {
    border-color: var(--green-light);
}


/* City buttons */

.city-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.city-btn {
    border: 1px solid #dce9e0;
    background: #ffffff;
    color: var(--text);
    padding: 9px 16px;
    border-radius: 30px;
    font-family: inherit;
    cursor: pointer;
}

.city-btn:hover,
.city-btn.active {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green);
}


/* Ad */

.places-ad {
    padding: 25px 20px;
}

.places-ad.bottom {
    padding-top: 10px;
    padding-bottom: 60px;
}

.places-ad-box {
    max-width: 900px;
    min-height: 90px;
    margin: auto;
    padding: 20px 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px dashed #cbded1;
    border-radius: 18px;
    background: #f8fbf9;
}

.places-ad-box span {
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
}

.places-ad-box p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.places-ad-box a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}


/* Places */

.places-section {
    padding: 45px 20px 70px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.place-card {
    overflow: hidden;
    border: 1px solid #e1ece4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(8, 53, 29, 0.05);
    transition: 0.25s ease;
}

.place-card:hover {
    transform: translateY(-4px);
}

.place-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf6f0;
    font-size: 58px;
}

.place-content {
    padding: 22px;
}

.place-content > span {
    color: var(--green-light);
    font-size: 13px;
    font-weight: 700;
}

.place-content h2 {
    margin: 10px 0 8px;
    color: var(--dark);
    font-size: 20px;
}

.place-content p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.place-content a {
    color: var(--green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}


/* Empty */

.no-places {
    text-align: center;
    padding: 50px 20px;
    color: var(--muted);
}

.no-places div {
    font-size: 35px;
}

.no-places h3 {
    color: var(--dark);
}


/* Mobile */

@media (max-width: 850px) {

    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .places-header {
        padding: 125px 18px 55px;
    }

    .places-header h1 {
        font-size: 32px;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .places-section {
        padding: 35px 18px 55px;
    }

    .places-ad {
        padding: 20px 18px;
    }

    .places-ad-box {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px;
    }

}
/* =================================
   PLACE DETAIL PAGE
================================= */

.place-detail-hero {
    padding: 125px 20px 55px;
    background: #f1f8f3;
}

.place-detail-hero .container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 45px;
    align-items: center;
}

.place-detail-visual {
    height: 330px;
    border-radius: 24px;
    background: #e3f0e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.place-detail-heading h1 {
    margin: 18px 0 8px;
    color: var(--dark);
    font-size: 42px;
}

.place-detail-heading p {
    margin: 0;
    color: var(--muted);
}


/* Content */

.place-detail-section {
    padding: 65px 20px;
}

.place-detail-layout {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 45px;
}

.place-main-content h2 {
    margin-top: 0;
    color: var(--dark);
    font-size: 27px;
}

.place-main-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 2.2;
}


/* Information */

.place-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 35px 0;
}

.place-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid #e1ece4;
    border-radius: 16px;
    background: #fafdfb;
}

.place-info-item > span {
    font-size: 24px;
}

.place-info-item strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}

.place-info-item small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.place-back {
    display: inline-block;
    text-decoration: none;
}


/* Sidebar */

.place-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.place-sidebar-card {
    padding: 22px;
    border: 1px solid #e1ece4;
    border-radius: 18px;
    background: #ffffff;
}

.place-sidebar-card h3 {
    margin: 0 0 15px;
    color: var(--dark);
    font-size: 18px;
}

.place-sidebar-card a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #edf2ee;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
}

.place-sidebar-card a:last-child {
    border-bottom: none;
}

.place-sidebar-card a:hover {
    color: var(--green);
}


/* Sidebar Ad */

.place-sidebar-ad {
    padding: 22px;
    border: 1px dashed #cbded1;
    border-radius: 18px;
    background: #f8fbf9;
}

.place-sidebar-ad span {
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
}

.place-sidebar-ad p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.place-sidebar-ad a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}


/* Mobile */

@media (max-width: 800px) {

    .place-detail-hero .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .place-detail-visual {
        height: 240px;
    }

    .place-detail-heading h1 {
        font-size: 32px;
    }

    .place-detail-layout {
        grid-template-columns: 1fr;
    }

    .place-info {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 520px) {

    .place-detail-hero {
        padding-top: 110px;
    }

    .place-detail-visual {
        height: 200px;
        font-size: 70px;
    }

    .place-detail-heading h1 {
        font-size: 28px;
    }

}
/* =================================
   NEWS PAGE
================================= */

.news-header {
    padding: 145px 20px 60px;
    text-align: center;
    background: #f1f8f3;
}

.news-header h1 {
    margin: 18px 0 10px;
    color: var(--dark);
    font-size: 40px;
}

.news-header p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}


/* Search & Filter */

.news-tools {
    padding: 35px 20px 10px;
    background: #ffffff;
}

.news-search {
    max-width: 600px;
    margin: auto;
}

.news-search input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    border: 1px solid #dce9e0;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    background: #f9fcfa;
}

.news-search input:focus {
    border-color: var(--green-light);
}

.news-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.news-filter-btn {
    border: 1px solid #dce9e0;
    background: #ffffff;
    color: var(--text);
    padding: 9px 17px;
    border-radius: 30px;
    font-family: inherit;
    cursor: pointer;
}

.news-filter-btn:hover,
.news-filter-btn.active {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green);
}


/* News */

.news-section {
    padding: 45px 20px 70px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    overflow: hidden;
    border: 1px solid #e1ece4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(8, 53, 29, 0.05);
    transition: 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-image {
    height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf6f0;
    font-size: 58px;
}

.news-content {
    padding: 22px;
}

.news-category {
    color: var(--green-light);
    font-size: 12px;
    font-weight: 700;
}

.news-content h2 {
    margin: 10px 0 7px;
    color: var(--dark);
    font-size: 19px;
    line-height: 1.7;
}

.news-date {
    color: #8a958f;
    font-size: 11px;
    margin-bottom: 12px;
}

.news-content p {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 13px;
    line-height: 2;
}

.news-content a {
    color: var(--green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* Mobile */

@media (max-width: 850px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .news-header {
        padding: 125px 18px 55px;
    }

    .news-header h1 {
        font-size: 32px;
    }

    .news-section {
        padding: 35px 18px 55px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

}
/* =================================
   NEWS DETAIL PAGE
================================= */

.news-detail-hero {
    padding: 125px 20px 55px;
    background: #f1f8f3;
}

.news-detail-hero .container {
    max-width: 1000px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.3fr;

    gap: 45px;
    align-items: center;
}

.news-detail-image {
    height: 330px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e3f0e7;

    font-size: 100px;
}

.news-detail-heading h1 {
    margin: 15px 0;

    color: var(--dark);

    font-size: 38px;
    line-height: 1.7;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    color: var(--muted);

    font-size: 13px;
}


/* Content */

.news-detail-section {
    padding: 65px 20px;
}

.news-detail-layout {
    max-width: 1000px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 300px;

    gap: 45px;
}

.news-article {
    min-width: 0;
}

.news-article p {
    color: var(--muted);

    font-size: 15px;
    line-height: 2.3;
}

.news-article h2 {
    margin-top: 35px;
    margin-bottom: 12px;

    color: var(--dark);

    font-size: 24px;
}

.news-lead {
    padding: 20px;

    border-right: 4px solid var(--green);

    border-radius: 10px;

    background: #f4f9f5;

    color: var(--text) !important;

    font-size: 16px !important;
}


/* Share */

.news-share {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid #e6eee8;
}

.news-share strong {
    color: var(--dark);
    font-size: 14px;
}

.news-share button {
    border: 1px solid #dce9e0;

    background: #ffffff;

    color: var(--green);

    padding: 9px 15px;

    border-radius: 10px;

    font-family: inherit;

    cursor: pointer;
}

.news-share button:hover {
    background: #f1f8f3;
}

.copy-message {
    display: none;

    margin-top: 10px;

    color: var(--green);

    font-size: 12px;
}

.copy-message.show {
    display: block;
}

.news-back {
    display: inline-block;

    margin-top: 25px;

    text-decoration: none;
}


/* Sidebar */

.news-detail-sidebar {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.news-sidebar-card {
    padding: 22px;

    border: 1px solid #e1ece4;

    border-radius: 18px;

    background: #ffffff;
}

.news-sidebar-card h3 {
    margin: 0 0 15px;

    color: var(--dark);

    font-size: 18px;
}

.news-sidebar-card a {
    display: block;

    padding: 13px 0;

    border-bottom: 1px solid #edf2ee;

    color: var(--text);

    text-decoration: none;

    font-size: 13px;

    line-height: 1.7;
}

.news-sidebar-card a:last-child {
    border-bottom: none;
}

.news-sidebar-card a:hover {
    color: var(--green);
}


/* Sidebar Ad */

.news-sidebar-ad {
    padding: 22px;

    border: 1px dashed #cbded1;

    border-radius: 18px;

    background: #f8fbf9;
}

.news-sidebar-ad span {
    color: var(--green);

    font-weight: 700;

    font-size: 12px;
}

.news-sidebar-ad p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}

.news-sidebar-ad a {
    color: var(--green);

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;
}


/* Mobile */

@media (max-width: 800px) {

    .news-detail-hero .container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .news-detail-image {
        height: 230px;
    }

    .news-detail-heading h1 {
        font-size: 30px;
    }

    .news-detail-layout {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 520px) {

    .news-detail-hero {
        padding-top: 110px;
    }

    .news-detail-image {
        height: 190px;

        font-size: 70px;
    }

    .news-detail-heading h1 {
        font-size: 26px;
    }

    .news-share {
        flex-wrap: wrap;
    }

}