.countdown-header {
    background: #EC8E2B;
    padding: 8px 15px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.countdown-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.countdown-title {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
}

.countdown-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.time-box {
    text-align: center;
    min-width: 45px;
}

.time-box .number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.time-box .label {
    margin-top: 3px;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dot {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-top: -4px;
}

/* Tablet */
@media (max-width: 768px) {

    .countdown-header {
        padding: 8px 10px;
    }

    .countdown-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .countdown-title {
        font-size: 18px;
    }

    .countdown-box {
        gap: 8px;
    }

    .time-box {
        min-width: 36px;
    }

    .time-box .number {
        font-size: 22px;
    }

    .time-box .label {
        font-size: 8px;
    }

    .dot {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .countdown-header {
        padding: 8px 5px;
    }

    .countdown-title {
        font-size: 16px;
    }

    .countdown-box {
        gap: 5px;
    }

    .time-box {
        min-width: 30px;
    }

    .time-box .number {
        font-size: 18px;
    }

    .time-box .label {
        font-size: 7px;
    }

    .dot {
        font-size: 16px;
    }
}

/* =========================
   VAY HEADER
========================= */

.vay-header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9999;
}

.vay-header-inner {
    width: 100%;
    max-width: 1250px;
    min-height: 100px;
    margin: 0 auto;
    padding: 8px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;
}

/* LOGO */

.vay-logo {
    flex-shrink: 0;
}

.vay-logo img {
    width: 180px;
    height: auto;
    display: block;
}

/* LION */

.vay-lion {
    flex-shrink: 0;
}

.vay-lion img {
    width: 80px;
    height: auto;
    display: block;
}

/* SPECTACLE */

.vay-spectacle {
    flex-shrink: 0;
}

.vay-spectacle img {
    width: 80px;
    height: auto;
    display: block;
}

/* NAVIGATION */

.vay-nav {
    margin-left: auto;
}

.vay-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.vay-nav li {
    margin: 0;
    padding: 0;
}

.vay-nav a {
    color: #222;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.vay-nav a:hover {
    color: #EC8E2B;
}

/* APPLY BUTTON */

.vay-apply {
    flex-shrink: 0;
}

.vay-apply a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    background: #EC8E2B;
    color: #fff;

    border-radius: 4px;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.vay-apply a:hover {
    background: #d97716;
    transform: translateY(-2px);
}

/* MOBILE BUTTON */

.vay-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 6px;
    border: 0;
    background: transparent;

    cursor: pointer;

    position: relative;
    z-index: 10002;
}

.vay-menu-btn span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 6px auto;

    background: #222;

    transition: 0.3s ease;
}

/* HAMBURGER → X */

.vay-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.vay-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.vay-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */

.vay-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 10000;
}

.vay-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .vay-header-inner {
        gap: 12px;
    }

    .vay-logo img {
        width: 150px;
    }

    .vay-lion img {
        width: 115px;
    }

    .vay-spectacle img {
        width: 130px;
    }

    .vay-nav ul {
        gap: 18px;
    }

    .vay-nav a {
        font-size: 14px;
    }

    .vay-apply a {
        padding: 11px 17px;
        font-size: 14px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .vay-header-inner {
        min-height: 75px;
        padding: 8px 15px;
    }

    .vay-logo img {
        width: 145px;
    }

    .vay-lion,
    .vay-spectacle,
    .vay-apply {
        display: none;
    }

    /* MOBILE NAV */

    .vay-nav {
        position: fixed;

        top: 0;
        right: -300px;

        width: 280px;
        height: 100vh;

        margin: 0;
        padding: 95px 30px 30px;

        background: #fff;

        box-sizing: border-box;

        z-index: 10001;

        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.12);

        transition: right 0.35s ease;
    }

    .vay-nav.active {
        right: 0;
    }

    .vay-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 24px;
    }

    .vay-nav a {
        font-size: 17px;
    }

    .vay-menu-btn {
        display: block;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .vay-header-inner {
        padding: 7px 12px;
    }

    .vay-logo img {
        width: 135px;
    }

    .vay-nav {
        width: 260px;
    }

    .vay-nav a {
        font-size: 16px;
    }
}

/* =========================
   HERO SECTION
========================= */

.vay-hero {
    position: relative;

    width: 100%;
    min-height: 700px;

    background-image: url("YOUR-BACKGROUND-IMAGE.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* =========================
   OVERLAY
========================= */

.vay-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.40) 45%,
            rgba(0, 0, 0, 0.10) 100%);

    z-index: 1;
}


/* =========================
   CONTENT
========================= */

.vay-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 80px 40px;

    box-sizing: border-box;

    color: #fff;
}


/* =========================
   MAIN HEADING
========================= */

.vay-hero-content h1 {
    margin: 0 0 12px;

    font-family: "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 52px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: 0;
}


/* =========================
   SUB HEADING
========================= */

.vay-hero-content h2 {
    margin: 0 0 20px;

    font-family: Arial, sans-serif;

    font-size: 25px;
    font-weight: 600;

    line-height: 1.3;
}


/* =========================
   HINDI TEXT
========================= */

.vay-hero-hindi {
    max-width: 720px;

    margin: 0 0 18px;

    font-family: "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 19px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   DESCRIPTION
========================= */

.vay-hero-description {
    max-width: 760px;

    margin: 0 0 22px;

    font-family: Arial, sans-serif;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.6;
}


/* =========================
   HIGHLIGHT
========================= */

.vay-hero-highlight {
    display: inline-block;

    margin-bottom: 18px;

    font-family: "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 21px;
    font-weight: 700;

    color: #ffd36a;
}


/* =========================
   APPLICATION FEE
========================= */

.vay-hero-fee {
    margin-bottom: 28px;

    font-family: Arial, sans-serif;

    font-size: 19px;
    font-weight: 700;
}

.vay-hero-fee span {
    font-size: 13px;
    font-weight: 400;
}


/* =========================
   REGISTER BUTTON
========================= */

.vay-register-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 155px;

    padding: 14px 28px;

    background: #EC8E2B;
    color: #fff;

    border-radius: 4px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 16px;
    font-weight: 700;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.vay-register-btn:hover {
    background: #d97716;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);
}


/* =========================
   BUTTON SHINE
========================= */

.vay-register-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: rgba(255, 255, 255, 0.25);

    transform: skewX(-25deg);

    transition: left 0.6s ease;
}

.vay-register-btn:hover::before {
    left: 140%;
}

.vay-register-btn span {
    position: relative;
    z-index: 2;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .vay-hero {
        min-height: 650px;

        background-position: center center;
    }

    .vay-hero-content {
        padding: 70px 35px;
    }

    .vay-hero-content h1 {
        font-size: 44px;
    }

    .vay-hero-content h2 {
        font-size: 22px;
    }

    .vay-hero-hindi {
        font-size: 17px;
    }

    .vay-hero-description {
        font-size: 16px;
        max-width: 650px;
    }

    .vay-hero-highlight {
        font-size: 19px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .vay-hero {
        min-height: 680px;

        align-items: center;

        background-position: center center;
    }

    .vay-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.72));
    }

    .vay-hero-content {
        padding: 50px 22px;

        text-align: center;
    }

    .vay-hero-content h1 {
        font-size: 34px;

        line-height: 1.25;

        margin-bottom: 12px;
    }

    .vay-hero-content h2 {
        font-size: 19px;

        line-height: 1.4;

        margin-bottom: 18px;
    }

    .vay-hero-hindi {
        max-width: 100%;

        font-size: 16px;

        line-height: 1.7;
    }

    .vay-hero-description {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.6;
    }

    .vay-hero-highlight {
        font-size: 18px;

        line-height: 1.5;
    }

    .vay-hero-fee {
        font-size: 17px;

        margin-bottom: 24px;
    }

    .vay-register-btn {
        padding: 13px 25px;

        font-size: 15px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .vay-hero {
        min-height: 650px;
    }

    .vay-hero-content {
        padding: 40px 18px;
    }

    .vay-hero-content h1 {
        font-size: 29px;
    }

    .vay-hero-content h2 {
        font-size: 17px;
    }

    .vay-hero-hindi {
        font-size: 14px;
    }

    .vay-hero-description {
        font-size: 13px;
    }

    .vay-hero-highlight {
        font-size: 16px;
    }

    .vay-hero-fee {
        font-size: 15px;
    }
}

/* =========================
   WHY SECTION
========================= */

.vay-why-section {
    width: 100%;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
}

.vay-why-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   TITLE
========================= */

.vay-why-title {
    margin: 0;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.vay-title-line {
    width: 70px;
    height: 3px;

    margin: 18px auto 20px;

    background: #EC8E2B;

    border-radius: 10px;
}


/* =========================
   SUBTITLE
========================= */

.vay-why-subtitle {
    margin: 0 0 15px;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 20px;
    line-height: 1.5;
}


/* =========================
   DESCRIPTION
========================= */

.vay-why-description {
    margin: 0 auto;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   FEATURE GRID
========================= */

.vay-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    text-align: left;
}


/* =========================
   FEATURE CARD
========================= */

.vay-feature-card {
    position: relative;

    padding: 35px 30px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 8px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.vay-feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #EC8E2B;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}

.vay-feature-card:hover {
    transform: translateY(-8px);

    border-color: #EC8E2B;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.vay-feature-card:hover::before {
    transform: scaleX(1);
}


/* =========================
   STAR
========================= */

.vay-star {
    width: 42px;
    height: 42px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #EC8E2B;

    color: #fff;

    font-size: 22px;

    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 95%,
            50% 72%,
            21% 95%,
            32% 57%,
            2% 35%,
            39% 35%);

    transition: transform 0.35s ease;
}

.vay-feature-card:hover .vay-star {
    transform: rotate(20deg) scale(1.1);
}


/* =========================
   CARD HEADING
========================= */

.vay-feature-card h3 {
    margin: 0 0 12px;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}

.vay-feature-card h4 {
    margin: 0 0 15px;

    color: #EC8E2B;

    font-family:
        "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;
}


/* =========================
   CARD TEXT
========================= */

.vay-feature-card p {
    margin: 0;

    color: #666;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================
   APPLICATION FEE
========================= */

.vay-application-fee {
    margin: 45px 0 20px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 19px;
    text-align: center;
}


/* =========================
   REGISTER BUTTON
========================= */

.vay-register-btn {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #EC8E2B;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.vay-register-btn:hover {
    background: #d97716;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .vay-why-section {
        padding: 65px 20px;
    }

    .vay-why-title {
        font-size: 36px;
    }

    .vay-why-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .vay-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .vay-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0 auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .vay-why-section {
        padding: 50px 16px;
    }

    .vay-why-title {
        font-size: 29px;
    }

    .vay-title-line {
        margin: 14px auto 18px;
    }

    .vay-why-subtitle {
        font-size: 17px;
    }

    .vay-why-description {
        font-size: 14px;
        line-height: 1.7;

        margin-bottom: 35px;
    }

    .vay-feature-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .vay-feature-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .vay-feature-card {
        padding: 28px 22px;
    }

    .vay-feature-card h3 {
        font-size: 19px;
    }

    .vay-feature-card h4 {
        font-size: 15px;
    }

    .vay-feature-card p {
        font-size: 14px;
    }

    .vay-application-fee {
        font-size: 16px;
        line-height: 1.5;

        margin-top: 35px;
    }

    .vay-register-btn {
        padding: 13px 25px;

        font-size: 15px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .vay-why-title {
        font-size: 26px;
    }

    .vay-why-description {
        font-size: 13px;
    }

    .vay-feature-card {
        padding: 24px 18px;
    }
}

/* project hightlights section */
.vay-highlights {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    box-sizing: border-box;
}

.vay-highlights-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.vay-highlights-title {
    margin: 0;
    text-align: center;

    color: #222;
    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.vay-highlights-line {
    width: 70px;
    height: 3px;
    margin: 10px auto 0 auto;
    background: #ec8e2b;
    border-radius: 10px;
}


/* GRID */

.vay-highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* CARD */

.vay-highlight-card {
    min-height: 170px;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
    box-sizing: border-box;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity .6s ease,
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.vay-highlight-card.vay-visible {
    opacity: 1;
}

.vay-highlight-card:hover {
    transform: translateY(15px);
    border-color: #ec8e2b;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
    background: #fffaf5;
}


/* ICON */

.vay-highlight-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ec8e2b;
}

.vay-highlight-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
    transition:
        transform .35s ease,
        color .35s ease;
}

.vay-highlight-card:hover .vay-highlight-icon svg {
    transform: scale(1.12);
    color: #d97716;
}


/* TITLE */

.vay-highlight-card h3 {
    margin: 0;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1100px) {

    .vay-highlights {
        padding: 65px 20px;
    }

    .vay-highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .vay-highlights-title {
        font-size: 36px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .vay-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .vay-highlight-card {
        min-height: 155px;
        padding: 24px 14px;
    }

    .vay-highlight-icon {
        width: 48px;
        height: 48px;
    }

    .vay-highlight-icon svg {
        width: 42px;
        height: 42px;
    }

    .vay-highlight-card h3 {
        font-size: 15px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .vay-highlights {
        padding: 50px 16px;
    }

    .vay-highlights-title {
        font-size: 29px;
    }

    .vay-highlights-line {
        margin: 10px auto 10px;
    }

    .vay-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .vay-highlight-card {
        min-height: 145px;
        padding: 20px 12px;
    }

    .vay-highlight-icon {
        margin-bottom: 13px;
    }

    .vay-highlight-icon svg {
        width: 38px;
        height: 38px;
    }

    .vay-highlight-card h3 {
        font-size: 14px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .vay-highlights-grid {
        grid-template-columns: 1fr;
    }

    .vay-highlight-card {
        min-height: 125px;
    }

    .vay-highlight-card h3 {
        font-size: 16px;
    }
}

/* site plan section css */
.site-plan-section {
    width: 100%;
    padding: 20px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.site-plan-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* HEADING */

.site-plan-title {
    margin: 0;
    text-align: center;

    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;

    color: #222;
}

.site-plan-divider {
    width: 70px;
    height: 3px;

    margin: 18px auto 50px;

    background: #155115;
    border-radius: 10px;
}


/* MAIN CONTENT */

.site-plan-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    align-items: center;
}


/* LEFT */

.site-plan-info h3 {
    margin: 0 0 15px;

    font-family: Arial, sans-serif;
    font-size: 32px;
    line-height: 1.25;

    color: #222;
}

.site-plan-info>p {
    margin: 0 0 30px;

    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #555;
}


/* STATS */

.site-plan-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.site-stat {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #f7faf7;

    border: 1px solid #e2ebe2;

    border-radius: 10px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.site-stat:hover {
    transform: translateY(-5px);

    border-color: #155115;

    box-shadow: 0 10px 25px rgba(21, 81, 21, .12);
}


/* ICON */

.site-stat-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.site-stat-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #155115;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-stat-icon svg path {
    fill: none;
}


/* TEXT */

.site-stat h4 {
    margin: 0 0 4px;

    font-family: Arial, sans-serif;

    font-size: 18px;
    font-weight: 700;

    color: #155115;
}

.site-stat span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 13px;

    color: #666;
}


/* IMAGE */

.site-plan-image-wrapper {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 12px;

    cursor: pointer;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.site-plan-image {
    display: block;

    width: 100%;
    height: auto;

    transition: transform .5s ease;
}

.site-plan-image-wrapper:hover .site-plan-image {
    transform: scale(1.04);
}


/* VIEW LABEL */

.site-plan-view {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    padding: 10px 20px;

    background: rgba(21, 81, 21, .9);

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 14px;

    border-radius: 30px;

    opacity: 0;

    transition: opacity .3s ease;

    pointer-events: none;
}

.site-plan-image-wrapper:hover .site-plan-view {
    opacity: 1;
}


/* FEE */

.site-plan-fee {
    margin: 45px 0 0;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 16px;

    color: #333;
}


/* POPUP */

.site-plan-popup {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, .88);

    box-sizing: border-box;
}

.site-plan-popup.active {
    display: flex;
}

.site-plan-popup img {
    max-width: 95vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow: 0 10px 50px rgba(0, 0, 0, .4);
}


/* CLOSE */

.site-plan-close {
    position: absolute;

    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;

    background: transparent;

    color: #fff;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;
}


/* TABLET */

@media (max-width: 900px) {

    .site-plan-section {
        padding: 65px 20px;
    }

    .site-plan-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .site-plan-info h3 {
        font-size: 28px;
    }

    .site-plan-image-wrapper {
        max-width: 700px;

        margin: auto;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .site-plan-section {
        padding: 50px 16px;
    }

    .site-plan-title {
        font-size: 30px;
    }

    .site-plan-divider {
        margin-bottom: 35px;
    }

    .site-plan-info h3 {
        font-size: 25px;
    }

    .site-plan-info>p {
        font-size: 15px;
    }

    .site-plan-stats {
        grid-template-columns: 1fr;
    }

    .site-stat {
        padding: 16px;
    }

    .site-plan-view {
        opacity: 1;
        bottom: 12px;

        font-size: 12px;

        padding: 8px 15px;
    }

    .site-plan-fee {
        font-size: 14px;

        margin-top: 30px;
    }

    .site-plan-popup {
        padding: 15px;
    }

    .site-plan-close {
        top: 10px;
        right: 15px;
    }
}

/* payment plan section start */
/* =========================
   PAYMENT SECTION
========================= */

.vay-payment {
    width: 100%;
    padding: 30px 20px;

    background: #fff;

    box-sizing: border-box;
}

.vay-payment-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.vay-payment-title {
    margin: 0;

    text-align: center;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.vay-payment-divider {
    width: 70px;
    height: 3px;

    margin: 18px auto 45px;

    background: #ec8e2b;

    border-radius: 10px;
}


/* =========================
   TABLE WRAPPER
========================= */

.vay-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 12px;

    -webkit-overflow-scrolling: touch;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
}


/* =========================
   TABLE
========================= */

.vay-pricing-table {
    width: 100%;

    min-width: 1300px;

    border-collapse: collapse;

    font-family: Arial, sans-serif;

    font-size: 14px;
}


/* HEADER */

.vay-pricing-table th {
    padding: 15px 12px;

    background:
        linear-gradient(180deg,
            #ec8e2b,
            #d97706);

    color: #fff;

    border: 1px solid #d97706;

    text-align: center;

    white-space: nowrap;

    font-weight: 700;

    line-height: 1.4;
}


/* BODY */

.vay-pricing-table td {
    padding: 13px 12px;

    border: 1px solid #ececec;

    text-align: center;

    white-space: nowrap;

    background: #fff;

    color: #333;

    font-weight: 400;

    transition:
        background .3s ease,
        transform .3s ease;
}


/* ALTERNATE */

.vay-pricing-table tbody tr:nth-child(even) td {
    background: #fff9f2;
}


/* HOVER */

.vay-pricing-table tbody tr:hover td {
    background: #fff0df;
}


/* TOTAL */

.vay-pricing-table td:nth-child(9) {
    font-weight: 700;
    color: #155115;
}


/* =========================
   REGISTER BUTTON
========================= */

.vay-register {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    background: #ec8e2b;

    color: #fff !important;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.vay-register:hover {
    background: #d97706;

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 6px 16px rgba(236, 142, 43, .35);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .vay-payment {
        padding: 65px 20px;
    }

    .vay-payment-title {
        font-size: 36px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .vay-payment {
        padding: 50px 15px;
    }

    .vay-payment-title {
        font-size: 30px;
    }

    .vay-payment-divider {
        margin-bottom: 30px;
    }


    /* Remove horizontal table */

    .vay-table-wrap {
        overflow: visible;

        box-shadow: none;
    }

    .vay-pricing-table {
        min-width: 100%;

        display: block;
    }

    .vay-pricing-table thead {
        display: none;
    }

    .vay-pricing-table tbody {
        display: block;
    }


    /* CARD */

    .vay-pricing-table tr {
        display: block;

        margin-bottom: 22px;

        background: #fff;

        border: 1px solid #ddd;

        border-radius: 12px;

        overflow: hidden;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, .08);
    }


    /* ROW */

    .vay-pricing-table td {
        width: 100%;

        display: flex;

        align-items: center;
        justify-content: space-between;

        box-sizing: border-box;

        padding: 13px 15px;

        border: 0;

        border-bottom: 1px solid #eee;

        white-space: normal;

        text-align: right;

        font-size: 14px;

        background: #fff !important;
    }


    /* LABEL */

    .vay-pricing-table td::before {
        content: attr(data-label);

        color: #333;

        font-weight: 700;

        text-align: left;

        margin-right: 15px;
    }


    /* ACTION */

    .vay-pricing-table td:last-child {
        display: block;

        padding: 15px;

        text-align: center;

        border-bottom: 0;
    }

    .vay-pricing-table td:last-child::before {
        display: none;
    }


    /* BUTTON */

    .vay-register {
        width: 100%;

        box-sizing: border-box;

        padding: 12px;

        font-size: 14px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .vay-payment {
        padding: 45px 12px;
    }

    .vay-payment-title {
        font-size: 27px;
    }

    .vay-pricing-table td {
        padding: 12px;

        font-size: 13px;
    }
}

/* =========================
   ADDITIONAL CHARGES
========================= */

.vay-charges-section {
    width: 100%;
    padding: 30px 20px;

    background: #fff;

    box-sizing: border-box;
}

.vay-charges-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.vay-charges-heading {
    margin: 0;

    text-align: center;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.vay-charges-divider {
    width: 70px;
    height: 3px;

    margin: 18px auto 45px;

    background: #ec8e2b;

    border-radius: 10px;
}


/* =========================
   GRID
========================= */

.vay-charges-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* =========================
   CARD
========================= */

.vay-charge-card {
    padding: 30px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .06);

    box-sizing: border-box;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.vay-charge-card:hover {
    transform: translateY(-6px);

    border-color: #ec8e2b;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .11);
}


/* =========================
   CARD TITLE
========================= */

.vay-charge-title {
    margin: 0 0 5px;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.3;
}


/* SUBTITLE */

.vay-charge-subtitle {
    margin: 0 0 18px;

    color: #666;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================
   DIVIDER
========================= */

.vay-charge-line {
    width: 100%;
    height: 2px;

    margin-bottom: 20px;

    background: #ec8e2b;
}


/* =========================
   CHARGE ROW
========================= */

.vay-charge-row {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;
}

.vay-charge-row:last-child {
    margin-bottom: 0;
}


/* NAME */

.vay-charge-name {
    color: #333;

    font-family: Arial, sans-serif;

    font-size: 18px;

    white-space: nowrap;
}


/* DOTS */

.vay-charge-dots {
    flex: 1;

    min-width: 20px;

    border-bottom:
        2px dotted #bbb;

    transform: translateY(3px);
}


/* VALUE */

.vay-charge-value {
    color: #ec8e2b;

    font-family: Arial, sans-serif;

    font-size: 22px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================
   MAINTENANCE
========================= */

.vay-maintenance-price {
    margin: 20px 0 12px;

    color: #ec8e2b;

    font-family: Arial, sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.3;
}

.vay-maintenance-price span {
    color: #333;

    font-size: 20px;

    font-weight: 600;
}

.vay-maintenance-note {
    margin: 0;

    color: #444;

    font-family: Arial, sans-serif;

    font-size: 20px;

    line-height: 1.5;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .vay-charges-section {
        padding: 65px 20px;
    }

    .vay-charges-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .vay-charge-card {
        padding: 25px;
    }

    .vay-charge-title {
        font-size: 24px;
    }

    .vay-charge-name {
        font-size: 16px;
    }

    .vay-charge-value {
        font-size: 20px;
    }

    .vay-maintenance-price {
        font-size: 30px;
    }

    .vay-maintenance-note {
        font-size: 18px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .vay-charges-section {
        padding: 50px 15px;
    }

    .vay-charges-heading {
        font-size: 30px;
    }

    .vay-charges-divider {
        margin-bottom: 30px;
    }

    .vay-charge-card {
        padding: 20px 18px;

        border-radius: 8px;
    }

    .vay-charge-title {
        font-size: 22px;
    }

    .vay-charge-subtitle {
        font-size: 14px;
    }

    .vay-charge-row {
        margin-bottom: 14px;

        gap: 7px;
    }

    .vay-charge-name {
        font-size: 14px;
    }

    .vay-charge-value {
        font-size: 18px;
    }

    .vay-charge-dots {
        border-width: 1px;
    }

    .vay-maintenance-price {
        font-size: 26px;
    }

    .vay-maintenance-price span {
        display: block;

        margin-top: 5px;

        font-size: 17px;
    }

    .vay-maintenance-note {
        font-size: 16px;
    }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .vay-charges-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vay-charge-card {
        padding: 18px 15px;
    }

    .vay-charge-name {
        font-size: 13px;
    }

    .vay-charge-value {
        font-size: 17px;
    }
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section {
    width: 100%;
    padding: 80px 20px;

    background: #fff;

    box-sizing: border-box;
}

.why-choose-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.why-choose-heading {
    text-align: center;

    margin-bottom: 50px;
}

.why-choose-heading h2 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;

    color: #222;
}

.why-choose-heading span {
    display: block;

    width: 70px;
    height: 3px;

    margin: 18px auto 0;

    background: #ec8e2b;

    border-radius: 10px;
}


/* =========================
   MAIN CONTENT
========================= */

.why-choose-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    gap: 60px;

    align-items: center;
}


/* =========================
   MAP
========================= */

.why-choose-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 10px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
}

.why-map-image {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform .5s ease;
}

.why-choose-image:hover .why-map-image {
    transform: scale(1.04);
}


/* MAP LABEL */

.map-view-label {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform:
        translateX(-50%) translateY(10px);

    padding: 10px 20px;

    background: rgba(21, 81, 21, .9);

    color: #fff;

    border-radius: 30px;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    opacity: 0;

    transition:
        opacity .3s ease,
        transform .3s ease;

    pointer-events: none;
}

.why-choose-image:hover .map-view-label {
    opacity: 1;

    transform:
        translateX(-50%) translateY(0);
}


/* =========================
   FEATURES
========================= */

.why-choose-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px 35px;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* FEATURE */

.feature-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 0;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.4;

    transition:
        color .3s ease,
        transform .3s ease;
}

.feature-item:hover {
    color: #ec8e2b;
}


/* ICON */

.feature-icon {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ec8e2b;

    color: #fff;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;

    line-height: 1;
}


/* =========================
   LIGHTBOX
========================= */

.why-map-lightbox {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(0, 0, 0, .88);

    box-sizing: border-box;
}

.why-map-lightbox.active {
    display: flex;
}

.why-map-lightbox img {
    display: block;

    max-width: 95vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 10px 50px rgba(0, 0, 0, .5);
}


/* CLOSE */

.why-map-close {
    position: absolute;

    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 42px;

    line-height: 1;

    cursor: pointer;

    z-index: 2;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .why-choose-section {
        padding: 65px 20px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-choose-image {
        max-width: 700px;

        margin: 0 auto;
    }

    .why-choose-features {
        max-width: 750px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 50px 16px;
    }

    .why-choose-heading {
        margin-bottom: 35px;
    }

    .why-choose-heading h2 {
        font-size: 30px;
    }

    .why-choose-heading span {
        margin-top: 15px;
    }


    /* FEATURES */

    .why-choose-features {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .feature-column {
        gap: 0;
    }

    .feature-item {
        padding: 11px 0;

        font-size: 15px;
    }

    .feature-icon {
        width: 25px;
        height: 25px;

        flex-basis: 25px;

        font-size: 13px;
    }


    /* MOBILE LABEL */

    .map-view-label {
        opacity: 1;

        bottom: 12px;

        padding: 8px 15px;

        font-size: 12px;

        transform:
            translateX(-50%) translateY(0);
    }


    /* LIGHTBOX */

    .why-map-lightbox {
        padding: 15px;
    }

    .why-map-close {
        top: 10px;
        right: 15px;

        font-size: 38px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .why-choose-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .why-choose-heading h2 {
        font-size: 27px;
    }

    .feature-item {
        font-size: 14px;
    }

}

.video-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

.video-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.video-section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.video-line {
    width: 30%;
    height: 3px;
    background: #ec8e2b;
    margin: 10px auto;
    border-radius: 50px;
}

.video-section-title p {
    margin-top: 15px;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.video-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.video-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: #FFF4E8;
    color: #ec8e2b;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.video-text h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.video-text p {
    margin-top: 6px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   VIDEO BOX
========================= */

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #1a1a1a;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    pointer-events: none;
}


/* =========================
   PLAY OVERLAY
========================= */

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;

    transition: background 0.3s ease;
    z-index: 2;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.52);
}

.play-btn {
    width: 70px;
    height: 70px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    fill: #ec8e2b;
    margin-left: 4px;
}


/* =========================
   VIDEO MODAL
========================= */

.vmodal-backdrop {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.88);

    z-index: 99999;

    justify-content: center;
    align-items: center;

    padding: 20px;

    animation: vfadeIn 0.25s ease;
}

.vmodal-backdrop.active {
    display: flex;
}

@keyframes vfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.vmodal-box {
    position: relative;

    width: 100%;
    max-width: 900px;

    border-radius: 18px;
    overflow: hidden;

    background: #000;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    animation: vslideUp 0.3s ease;
}

@keyframes vslideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vmodal-box video {
    width: 100%;
    display: block;
    max-height: 80vh;
    background: #000;
}


/* =========================
   CLOSE BUTTON
========================= */

.vmodal-close {
    position: absolute;

    top: 12px;
    right: 14px;

    width: 38px;
    height: 38px;

    background: rgba(255, 255, 255, 0.15);

    border: none;
    border-radius: 50%;

    color: #fff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10;

    transition: background 0.2s ease;
}

.vmodal-close:hover {
    background: rgba(236, 142, 43, 0.85);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-section-title h2 {
        font-size: 34px;
    }

    .video-text h3 {
        font-size: 22px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .video-section {
        padding: 0 15px;
        margin: 40px auto;
    }

    .video-card {
        padding: 18px;
        border-radius: 16px;
    }

    .video-section-title h2 {
        font-size: 28px;
    }

    .video-line {
        width: 90px;
    }

    .video-section-title p {
        font-size: 15px;
        line-height: 1.6;
    }

    .video-head {
        gap: 12px;
    }

    .video-text h3 {
        font-size: 20px;
    }

    .video-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .video-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
    }

    .video-box {
        aspect-ratio: 16 / 9;
    }

    .play-btn {
        width: 55px;
        height: 55px;
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
    }

    .vmodal-box {
        border-radius: 12px;
    }
}

/* =========================
   LOCATION SECTION
========================= */

.location-section {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    box-sizing: border-box;
}

.location-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.location-heading {
    text-align: center;
    margin-bottom: 45px;
}

.location-heading h2 {
    margin: 0;
    color: #222;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.location-heading-line {
    width: 70px;
    height: 3px;
    margin: 15px auto;
    background: #ec8e2b;
    border-radius: 10px;
}

.location-heading p {
    margin: 0;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 18px;
}


/* =========================
   MAIN CONTENT
========================= */

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* =========================
   MAP
========================= */

.location-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================
   HIGHLIGHTS
========================= */

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.location-card:hover {
    transform: translateX(6px);

    border-color: #ec8e2b;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .10);
}


/* =========================
   ICON
========================= */

.location-icon {
    width: 64px;
    height: 64px;

    min-width: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ef;

    border-radius: 50%;
}

.location-icon svg {
    width: 42px;
    height: 42px;

    fill: #1f432d;
}


/* =========================
   TEXT
========================= */

.location-card-text h3 {
    margin: 3px 0 8px;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 21px;
    font-weight: 700;
}

.location-card-text p {
    margin: 0;

    color: #666;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================
   FEE
========================= */

.location-fee {
    margin-top: 45px;

    text-align: center;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 17px;
}


/* =========================
   BUTTON
========================= */

.location-cta {
    display: flex;
    justify-content: center;

    margin-top: 20px;
}

.location-cta a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 28px;

    background: #ec8e2b;

    color: #fff;

    border-radius: 6px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 15px;
    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.location-cta a:hover {
    background: #d97706;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(236, 142, 43, .3);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .location-section {
        padding: 65px 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .location-map {
        height: 450px;
    }

    .location-highlights {
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .location-section {
        padding: 50px 15px;
    }

    .location-heading {
        margin-bottom: 30px;
    }

    .location-heading h2 {
        font-size: 30px;
    }

    .location-heading p {
        font-size: 16px;
    }

    .location-map {
        height: 330px;
        border-radius: 10px;
    }

    .location-card {
        gap: 13px;
        padding: 16px;
        border-radius: 10px;
    }

    .location-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .location-icon svg {
        width: 32px;
        height: 32px;
    }

    .location-card-text h3 {
        font-size: 18px;
        margin-top: 1px;
    }

    .location-card-text p {
        font-size: 14px;
        line-height: 1.55;
    }

    .location-fee {
        margin-top: 30px;
        font-size: 14px;
    }

    .location-cta a {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .location-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .location-card {
        padding: 14px;
    }

    .location-card-text h3 {
        font-size: 17px;
    }

    .location-card-text p {
        font-size: 13px;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    width: 100%;
    background: #1f432d;
    color: #fff;
    font-family: Arial, sans-serif;
}


/* MAIN CONTAINER */

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px;

    display: grid;
    grid-template-columns:
        1.4fr .8fr 1fr;

    gap: 70px;
}


/* =========================
   ABOUT
========================= */

.footer-logo {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-about p {
    max-width: 420px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    margin: 0;

    font-size: 23px;
    font-weight: 700;

    color: #fff;
}

.footer-line {
    width: 48px;
    height: 3px;

    margin: 12px 0 22px;

    background: #ec8e2b;
    border-radius: 10px;
}


/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);

    text-decoration: none;

    font-size: 15px;

    transition:
        color .3s ease,
        padding-left .3s ease;
}

.footer-links a:hover {
    color: #ec8e2b;
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.footer-contact {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, .8);

    text-decoration: none;

    font-size: 15px;

    line-height: 1.6;

    transition: color .3s ease;
}

a.footer-contact:hover {
    color: #ec8e2b;
}


/* ICON */

.footer-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .1);

    border-radius: 50%;

    transition:
        background .3s ease,
        transform .3s ease;
}

.footer-icon svg {
    width: 19px;
    height: 19px;

    fill: #ec8e2b;
}

.footer-contact:hover .footer-icon {
    background: #fff;
    transform: translateY(-2px);
}


/* =========================
   BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);

    padding: 20px;

    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .7);

    text-decoration: none;

    font-size: 14px;

    transition: color .3s ease;
}

.footer-bottom span {
    color: #ec8e2b;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-about p {
        max-width: 650px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;

        padding: 45px 20px;

        gap: 35px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo {
        width: 180px;
        margin-bottom: 18px;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-column h3 {
        font-size: 21px;
    }

    .footer-contact {
        font-size: 14px;
        margin-bottom: 17px;
    }

    .footer-bottom {
        padding: 18px 12px;
    }

    .footer-bottom a {
        font-size: 12px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-contact {
        gap: 10px;
    }

    .footer-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .footer-icon svg {
        width: 17px;
        height: 17px;
    }
}

/* =========================
   STICKY FOOTER MARQUEE
========================= */

.site-marquee {
    position: fixed;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 48px;

    background: #ec8e2b;

    color: #fff;

    overflow: hidden;

    z-index: 99999;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    box-shadow:
        0 -4px 15px rgba(0, 0, 0, .15);
}


/* MOVING TRACK */

.site-marquee-track {
    display: flex;

    align-items: center;

    width: max-content;

    white-space: nowrap;

    animation:
        siteMarqueeMove 25s linear infinite;
}


/* TEXT */

.site-marquee-track span {
    display: inline-flex;

    align-items: center;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 600;

    padding: 0 35px;

    position: relative;
}


/* SEPARATOR */

.site-marquee-track span:not(:last-child)::after {
    content: "•";

    position: absolute;

    right: -2px;

    color: #fff;

    font-size: 20px;
}


/* ANIMATION */

@keyframes siteMarqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   HOVER PAUSE
========================= */

.site-marquee:hover .site-marquee-track {
    animation-play-state: paused;
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .site-marquee {
        height: 44px;
    }

    .site-marquee-track {
        animation-duration: 20s;
    }

    .site-marquee-track span {
        font-size: 14px;

        padding: 0 25px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .site-marquee {
        height: 42px;
    }

    .site-marquee-track {
        animation-duration: 16s;
    }

    .site-marquee-track span {
        font-size: 12px;

        padding: 0 20px;
    }

    .site-marquee-track span:not(:last-child)::after {
        font-size: 16px;
    }

}