/* =====================================================
   GOOGLE FONT IMPORT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --green-dark: #155724;

    --green: #2e8b57;

    --green-light: #38a169;

    --green-soft: #dff7df;

    --yellow: #ffd84d;

    --yellow-soft: #fff6c7;

    --white: #ffffff;

    --text: #23402a;

    --card: rgba(255, 255, 255, 0.88);

    --border: rgba(46, 139, 87, 0.22);

    --shadow: rgba(21, 87, 36, 0.16);

    --font: 'Ubuntu', sans-serif;

}

/* =====================================================
   GLOBAL RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

.round-badge{
    margin: 18px auto 0;
    width: fit-content;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    font-weight: 900;

    line-height: 1.6;
}

body {

    font-family: var(--font);

    color: var(--text);

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 216, 77, 0.35),
            transparent 28%
        ),

        radial-gradient(
            circle at top right,
            rgba(56, 161, 105, 0.26),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #fafff1 0%,
            #e6ffd9 40%,
            #fff6c7 100%
        );

}

/* =====================================================
   BODY OVERLAY EFFECT
===================================================== */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.42),
            rgba(255, 255, 255, 0.12)
        );

}

/* =====================================================
   USER SELECTION PROTECTION
===================================================== */

body {

    user-select: none;

    -webkit-user-select: none;

}

input,
textarea {

    user-select: text;

    -webkit-user-select: text;

}

img {

    -webkit-user-drag: none;

    user-drag: none;

}

/* =====================================================
   TOP RIBBON
===================================================== */

.top-ribbon {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    padding: 14px 6%;

    background: linear-gradient(
        90deg,
        #155724,
        #2e8b57,
        #7dab3d,
        #2e8b57,
        #155724
    );

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

.top-ribbon span {

    background: rgba(255, 255, 255, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.35);

    padding: 8px 16px;

    border-radius: 999px;

}

/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: sticky;

    top: 0;

    z-index: 999;

    background: rgba(248, 255, 238, 0.92);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(46, 139, 87, 0.18);

    box-shadow: 0 12px 30px rgba(21, 87, 36, 0.12);

    transition: transform 0.38s ease, opacity 0.38s ease;

}
.site-header.hide-header {

    transform: translateY(-110%);

    opacity: 0;

    pointer-events: none;

}


.brand-row {

    display: grid;

    grid-template-columns: 1fr 0.9fr auto;

    align-items: center;

    gap: 18px;

    padding: 16px 6%;

}

.foundation-brand {

    display: flex;

    align-items: center;

    gap: 20px;

    text-decoration: none;

}

.foundation-brand img {

    width: 88px;

    height: 88px;

    border-radius: 50%;

    padding: 5px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #ffd84d
    );

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);

}

.foundation-brand strong {

    display: block;

    font-size: clamp(24px, 3vw, 36px);

    color: var(--green-dark);

    line-height: 1.1;

}

.foundation-brand small {

    color: var(--green);

    font-size: 14px;

    font-weight: 700;

}

.project-brand {

    width: fit-content;

    max-width: 100%;

    justify-self: end;

    text-align: right;

    padding: 12px 18px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        rgba(255, 216, 77, 0.25),
        rgba(223, 247, 223, 0.85)
    );

    border: 1px solid var(--border);

    box-shadow: 0 12px 28px rgba(21, 87, 36, 0.08);

}

.project-brand span {

    display: block;

    font-size: 13px;

    letter-spacing: 1px;

    font-weight: 900;

    color: var(--green);

}

.project-brand strong {

    display: block;

    margin-top: 4px;

    font-size: clamp(22px, 2.5vw, 32px);

    color: var(--green-dark);

}

.project-brand small {

    display: block;

    margin-top: 5px;

    font-size: 13px;

    color: var(--text);

    line-height: 1.6;

}

.menu-toggle {

    display: none;

    border: 0;

    padding: 10px 14px;

    border-radius: 12px;

    font-size: 22px;

    cursor: pointer;

    background: linear-gradient(
        135deg,
        #2e8b57,
        #ffd84d
    );

    color: #10391b;

}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-strip {

    padding: 10px 6%;

    background: linear-gradient(
        90deg,
        #dff7df,
        #fff6c7,
        #dff7df
    );

    border-top: 1px solid rgba(46, 139, 87, 0.18);

    border-bottom: 1px solid rgba(46, 139, 87, 0.18);

}

.main-nav {

    display: flex;

    justify-content: center;

    gap: 8px;

    flex-wrap: wrap;

}

.main-nav a {

    text-decoration: none;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.62);

    color: var(--green-dark);

    font-weight: 700;

    transition: 0.3s ease;

}

.main-nav a:hover,
.main-nav a.active {

    background: linear-gradient(
        135deg,
        #2e8b57,
        #38a169
    );

    color: #ffffff;

    transform: translateY(-2px);

}

/* =====================================================
   SECTION COMMON
===================================================== */

section {

    padding: 60px 6%;

}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 28px;

    align-items: start;

    min-height: 680px;

}

.hero-download {
    align-self: start;
}
.home-photo-slider {
    margin-top: 0;
}

.hero-download {
    margin-top: 0;
}

.hero-card,
.download-card,
.integration-card,
.page-title,
.resource-card,
.cards article,
.circle-row div,
.timeline div,
.team-grid article,
.contact-grid > div,
.contact-grid form,
figure,
.thought-box {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 34px;

    padding: 34px;

    backdrop-filter: blur(14px);

    box-shadow: 0 22px 55px var(--shadow);

    transition: 0.35s ease;

}

.hero-card:hover,
.download-card:hover,
.cards article:hover,
.circle-row div:hover,
.team-grid article:hover {

    transform: translateY(-5px);

    box-shadow: 0 30px 65px rgba(21, 87, 36, 0.20);

}

/* =====================================================
   HEADINGS
===================================================== */

h1 {

    font-size: clamp(38px, 5vw, 68px);

    color: var(--green-dark);

    line-height: 1.05;

    margin: 12px 0;

}

h2 {

    font-size: clamp(26px, 3vw, 42px);

    color: var(--green);

    margin-bottom: 12px;

}

h3,
h4 {

    color: var(--green-dark);

}

p,
li {

    line-height: 1.9;

    font-size: 17px;

}

/* =====================================================
   TYPING EFFECT
===================================================== */

.slash-typing span {

    position: relative;

    display: inline-block;

    padding-bottom: 8px;

    font-weight: 700;

    font-size: clamp(28px, 3vw, 40px);

}

.slash-typing span::after {

    content: "";

    position: absolute;

    right: -10px;

    top: 10%;

    width: 3px;

    height: 80%;

    background: var(--green);

    border-radius: 10px;

    animation: blink 0.8s infinite;

}

.slash-typing span::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--yellow),
        var(--green),
        transparent
    );

    animation: sweep 3s linear infinite;

}

@keyframes blink {

    50% {

        opacity: 0;

    }

}

@keyframes sweep {

    0% {

        transform: translateX(-100%);

    }

    100% {

        transform: translateX(100%);

    }

}

/* =====================================================
   BUTTONS
===================================================== */

.btn {

    display: inline-block;

    margin-top: 10px;

    padding: 14px 24px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 800;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #2e8b57,
        #38a169
    );

    box-shadow: 0 12px 28px rgba(46, 139, 87, 0.24);

    transition: 0.3s ease;

}

.btn:hover {

    transform: translateY(-3px);

}

.btn.ghost {

    background: linear-gradient(
        135deg,
        #fff6c7,
        #dff7df
    );

    color: var(--green-dark);

    border: 2px solid rgba(46, 139, 87, 0.38);

}

.hero-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

/* =====================================================
   HOME SLIDER
===================================================== */

.home-photo-slider {

    width: 100%;

    height: 300px;

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    border: 3px solid rgba(255, 216, 77, 0.72);

    box-shadow: 0 24px 60px rgba(46, 139, 87, 0.22);

}

.slider-track {

    width: 100%;

    height: 100%;

    position: relative;

}

.slider-track img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.08);

    transition: opacity 0.8s ease,
                transform 1.2s ease;

}

.slider-track img.active {

    opacity: 1;

    transform: scale(1);

}

.slider-caption {

    position: absolute;

    left: 18px;

    bottom: 18px;

}

.slider-caption span {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(21, 87, 36, 0.78);

    color: #fff6c7;

    font-weight: 800;

}

.slider-dots {

    position: absolute;

    right: 18px;

    bottom: 18px;

    display: flex;

    gap: 8px;

}

.slider-dots button {

    width: 11px;

    height: 11px;

    border-radius: 50%;

    border: 0;

    cursor: pointer;

    background: rgba(255, 255, 255, 0.55);

}

.slider-dots button.active {

    background: #38a169;

}

/* =====================================================
   CIRCLE FEATURES
===================================================== */

.circle-row {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

}

.circle-row div {

    aspect-ratio: 1;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 24px;

    background: radial-gradient(
        circle at top,
        #fff6c7,
        #dff7df 65%,
        #ffffff
    );

}

.circle-row b {

    font-size: 25px;

    color: var(--green-dark);

}

.circle-row span {

    margin-top: 10px;

    font-size: 18px;

    color: var(--green);

    font-weight: 700;

}

/* =====================================================
   SPLIT SECTION
===================================================== */

.split {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 36px;

    align-items: center;

}


.split ul {

    margin-top: 18px;

    margin-left: 0;

    padding-left: 0;

    list-style: none;

}

.split ul li {

    position: relative;

    padding-left: 30px;

    margin-bottom: 10px;

    text-align: left;

}

.split ul li::before {

    content: "✔";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--green);

    font-weight: 900;

}

.split img,
.gallery-grid img,
.team-grid img {

    width: 100%;

    border-radius: 30px;

    object-fit: cover;

    border: 5px solid rgba(255, 216, 77, 0.42);

    box-shadow: 0 22px 55px rgba(46, 139, 87, 0.18);

}





/* =====================================================
   INNER PAGES IMAGE & FONT SIZE FIX
   Keeps index page untouched and controls oversized media
===================================================== */

.inner-page .page-title {
    text-align: center;
    padding-top: 42px;
    padding-bottom: 34px;
}

.inner-page .page-title h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.18;
}

.inner-page .page-title p {
    max-width: 880px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.75;
}

.inner-page h2 {
    font-size: clamp(24px, 2.7vw, 34px);
}

.inner-page h3 {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.35;
}

.inner-page p,
.inner-page li,
.inner-page figcaption {
    font-size: 16px;
    line-height: 1.75;
}

.inner-page .cards,
.inner-page .mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.inner-page .cards article,
.inner-page .mini-grid article {
    padding: 24px;
}

.inner-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    align-items: start;
}

.inner-page .gallery-grid.small {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.inner-page .gallery-grid figure {
    padding: 16px;
    margin: 0;
}

.inner-page .gallery-grid img {
    display: block;
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: cover;
}

.inner-page .gallery-grid.small img {
    height: 210px;
    max-height: 210px;
}

.inner-page .team-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin: 18px 0 34px;

}

.inner-page .team-grid article {

    text-align: center;

    padding: 22px;

}

.inner-page .team-grid img {

    display: block;

    width: 100%;

    max-width: 220px;

    height: 240px;

    max-height: 240px;

    margin: 0 auto 14px;

    object-fit: cover;

    object-position: top center;

}

/* TABLET */

@media (max-width: 1100px) {

    .inner-page .team-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* MOBILE */

@media (max-width: 650px) {

    .inner-page .team-grid {

        grid-template-columns: 1fr;

    }

}

.inner-page .team-grid article {
    text-align: center;
    padding: 22px;
}

.inner-page .team-grid img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: 240px;
    max-height: 240px;
    margin: 0 auto 14px;
    object-fit: cover;
    object-position: top center;
}

.inner-page .split img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.inner-page .resource-card,
.inner-page .contact-grid > div,
.inner-page .contact-grid form,
.inner-page .integration-card {
    font-size: 16px;
}

@media (max-width: 768px) {
    .inner-page .gallery-grid,
    .inner-page .gallery-grid.small,
    .inner-page .team-grid {
        grid-template-columns: 1fr;
    }

    .inner-page .gallery-grid img,
    .inner-page .gallery-grid.small img {
        height: 210px;
        max-height: 210px;
    }

    .inner-page .team-grid img {
        height: 230px;
        max-height: 230px;
    }
}

/* =====================================================
   COMPACT QUOTATION SECTION ABOVE FOOTER
===================================================== */

.quote-lock-section {

    padding: 0 6% 24px;

}

.quote-lock-card {

    width: min(920px, 100%);

    margin: 0 auto;

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    text-align: center;

    padding: 16px 28px;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        rgba(255, 246, 199, 0.92),
        rgba(223, 247, 223, 0.92)
    );

    border: 1px solid var(--border);

    box-shadow: 0 18px 42px rgba(21, 87, 36, 0.14);

}

.quote-lock-icon {

    width: 42px;

    height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2e8b57,
        #ffd84d
    );

    color: #ffffff;

    box-shadow: 0 10px 22px rgba(21, 87, 36, 0.22);

}

.quote-lock-card p {

    margin: 0;

    font-size: clamp(16px, 2vw, 22px);

    line-height: 1.5;

    font-weight: 900;

    color: var(--green-dark);

}

/* =====================================================
   FOOTER - TRIVENI STYLE
===================================================== */

.footer,
.site-footer {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

    padding: 20px 6.5%;

    color: #fff7ef;

    font-weight: 800;

    background: linear-gradient(
        90deg,
        #155724,
        #2e8b57,
        #6cc03f
    );

}

.footer-left {

    flex: 1;

    text-align: left;

    line-height: 1.8;

}

.footer-right {

    flex: 1;

    text-align: right;

    line-height: 1.8;

}

.footer b,
.site-footer b {

    color: #dff7df;

}

.footer-link {

    color: #fff6c7;

    font-weight: 900;

    text-decoration: underline;

}

.footer-link:hover {

    color: #ffffff;

}

.protection-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        rgba(46, 139, 87, 0.92),
        rgba(255, 216, 77, 0.30)
    );

    border: 1px solid rgba(255, 255, 255, 0.28);

    color: #ffffff;

    font-size: 13px;

    line-height: 1.6;

    font-weight: 900;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

}

@media (max-width: 720px) {

    .footer,
    .site-footer {

        flex-direction: column;

        text-align: center;

        gap: 18px;

    }

    .footer-left,
    .footer-right {

        width: 100%;

        text-align: center;

    }

}

/* =====================================================
   BACK TO TOP BUTTON
===================================================== */

#toTop {

    position: fixed;

    right: 18px;

    bottom: 18px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 0;

    font-size: 22px;

    cursor: pointer;

    display: none;

    background: linear-gradient(
        135deg,
        #ffd84d,
        #38a169
    );

    color: #10391b;

    box-shadow: 0 14px 28px rgba(0,0,0,0.18);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 780px) {

    .menu-toggle {

        display: block;

    }

    .nav-strip {

        display: none;

    }

    .site-header.menu-open .nav-strip {

        display: block;

    }

    .main-nav {

        flex-direction: column;

        align-items: stretch;

    }

}

@media (max-width: 900px) {

    .hero,
    .split,
    .footer-grid {

        grid-template-columns: 1fr;

    }

    .circle-row {

        grid-template-columns: 1fr 1fr;

    }

}

@media (max-width: 760px) {

    .brand-row {

        grid-template-columns: 1fr auto;

    }

    .project-brand {

        grid-column: 1 / -1;

        justify-self: center;

        text-align: center;

        width: fit-content;

        max-width: 100%;

    }

}

@media (max-width: 560px) {

    .quote-lock-section {

        padding: 0 5% 18px;

    }

    .quote-lock-card {

        flex-direction: column;

        gap: 8px;

        padding: 16px;

    }

    section {

        padding: 42px 5%;

    }

    .circle-row {

        grid-template-columns: 1fr;

    }

    .hero-card,
    .download-card {

        padding: 24px;

    }

    .foundation-brand img {

        width: 52px;

        height: 52px;

    }

    .foundation-brand strong {

        font-size: 21px;

    }

    .top-ribbon {

        font-size: 14px;

        justify-content: center;

    }

}

/* =====================================================
   FOOTER RESPONSIVE UPDATE
===================================================== */

@media (max-width: 900px) {

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .footer-left,
    .footer-center,
    .footer-right {

        justify-self: center;

    }

    .footer-section {

        min-height: auto;

    }

}

@media (max-width: 560px) {

    footer,
    .footer {

        padding: 42px 5% 18px;

    }

    .footer-left h3 {

        font-size: 24px;

    }

    .footer-right h4 {

        font-size: 21px;

    }

    .protection-badge {

        width: 180px;

        height: 180px;

        padding: 20px;

    }

    .protection-badge strong {

        font-size: 14px;

    }

}

/* =====================================================
   NEWS TICKER CONTAINER
===================================================== */

.news-ticker-container {

    display: flex;

    align-items: center;

    overflow: hidden;

    height: 52px;

    border-radius: 14px;

    background: linear-gradient(
        90deg,
        #14532d,
        #1f7a3a,
        #2e8b57
    );

    box-shadow: 0 10px 25px rgba(
        0,
        0,
        0,
        0.15
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        0.15
    );

    position: relative;

}

/* =====================================================
   LEFT TITLE
===================================================== */

.news-ticker-title {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 24px;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 0.5px;

    background: linear-gradient(
        135deg,
        #ffd84d,
        #ffb800
    );

    color: #123a1d;

    flex-shrink: 0;

    z-index: 5;

}

/* =====================================================
   WRAPPER
===================================================== */

.news-ticker-wrapper {

    position: relative;

    overflow: hidden;

    flex: 1;

    height: 100%;

    display: flex;

    align-items: center;

}

/* =====================================================
   CONTINUOUS TICKER CONTENT
===================================================== */

.news-ticker-content {

    display: inline-flex;

    align-items: center;

    white-space: nowrap;

    min-width: max-content;

    animation: tickerMove 45s linear infinite;

}

/* =====================================================
   EACH NEWS ITEM
===================================================== */

.news-ticker-content span {

    display: inline-flex;

    align-items: center;

    padding: 0 55px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

}

/* =====================================================
   CONTINUOUS LEFT SCROLL
   - Left me andar ghusta rahega
   - Right side se fir entry hogi
===================================================== */

@keyframes tickerMove {

    0% {

        transform: translateX(100%);

    }

    100% {

        transform: translateX(-100%);

    }

}

/* =====================================================
   PAUSE ON HOVER
===================================================== */

.news-ticker-container:hover .news-ticker-content {

    animation-play-state: paused;

}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .news-ticker-container {

        height: 46px;

    }

    .news-ticker-title {

        font-size: 14px;

        padding: 0 16px;

    }

    .news-ticker-content span {

        font-size: 15px;

        padding: 0 35px;

    }

}

/* =====================================================
   NEWS TICKER CONTENT
===================================================== */

.news-ticker-content {

    display: inline-flex;

    align-items: center;

    white-space: nowrap;

    min-width: max-content;

    will-change: transform;

    animation: tickerMove 32s linear infinite;

}

/* =====================================================
   CONTINUOUS FAST START SCROLL
   - Turant start hoga
   - Continuous loop chalega
===================================================== */

@keyframes tickerMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/* =========================================
   DOWNLOAD CARD BRAND ROW
========================================= */

.download-brand-row {

    display: flex;

    align-items: center;

    gap: 24px;

}

/* =========================================
   BIG LEFT LOGO
========================================= */

.download-logo img {

    width: 120px;

    height: 120px;

    object-fit: contain;

    border-radius: 50%;

    padding: 8px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #ffd84d
    );

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

}

/* =========================================
   RIGHT CONTENT
========================================= */

.download-content {

    flex: 1;

}

.download-content h3 {

    font-size: 32px;

    line-height: 1.2;

    color: var(--green-dark);

    margin-bottom: 6px;

}

.download-content h4 {

    font-size: 24px;

    color: var(--green);

    margin-bottom: 18px;

    font-weight: 700;

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .download-brand-row {

        flex-direction: column;

        text-align: center;

    }

    .download-logo img {

        width: 90px;

        height: 90px;

    }

    .download-content h3 {

        font-size: 24px;

    }

    .download-content h4 {

        font-size: 20px;

    }

}


.why-choose-section{
    position: relative;
    padding: 55px 34px 70px;
    margin-top: 25px;
    border-radius: 36px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(255,216,77,.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(46,139,87,.16), transparent 30%),
        linear-gradient(180deg, #fbfff5, #f4fff0);
    border: 1px solid rgba(46,139,87,.18);
    box-shadow: 0 18px 45px rgba(21,87,36,.14);
}

.section-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 999px;
    color: #0f5a25;
    font-size: 1rem;
    font-weight: 900;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(46,139,87,.55);
}

.section-title{
    margin: 22px auto 8px;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #073f1d;
    font-weight: 900;
    text-shadow: 0 6px 16px rgba(21,87,36,.12);
}

.title-divider{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin: 14px auto 18px;
    color: #6cab45;
}

.title-divider span{
    width: 120px;
    height: 1px;
    background: rgba(46,139,87,.55);
}

.section-description{
    max-width: 820px;
    margin: 0 auto 36px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #1f2f25;
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card{
    position: relative;
    min-height: 390px;
    padding: 30px 24px 26px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(46,139,87,.18);
    box-shadow: 0 12px 30px rgba(21,87,36,.12);
    transition: .35s ease;
}

.why-card:hover{
    transform: translateY(-8px);
    border-color: #2e8b57;
    box-shadow:
        0 20px 42px rgba(21,87,36,.20),
        0 0 26px rgba(46,139,87,.20);
}

.why-icon{
    width: 116px;
    height: 116px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, #ffffff 45%, #f4fff0 100%);
    border: 4px solid rgba(46,139,87,.28);
    box-shadow: 0 12px 25px rgba(46,139,87,.16);
}

.why-icon i{
    font-size: 2.8rem;
    color: #006b2d;
}

.why-card:hover .why-icon{
    border-color: #2e8b57;
    transform: scale(1.06);
}

.mini-line{
    width: 110px;
    height: 1px;
    margin: 0 auto 24px;
    background: #2e8b57;
    position: relative;
}

.mini-line::after{
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    width: 9px;
    height: 9px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #2e8b57;
}

.why-card h3{
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.25;
    color: #073f1d;
    font-weight: 900;
}

.why-card h4{
    margin: 0 0 18px;
    font-size: 1.22rem;
    line-height: 1.35;
    color: #174d29;
    font-weight: 900;
}

.small-line{
    width: 64px;
    height: 2px;
    margin: 0 auto 18px;
    background: #2e8b57;
}

.why-card p{
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #263d2c;
}

@media(max-width:1100px){
    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:650px){
    .why-choose-section{
        padding: 38px 18px;
    }

    .why-grid{
        grid-template-columns: 1fr;
    }

    .title-divider span{
        width: 70px;
    }
}
/* =====================================================
   TOP RIBBON WATCH + CALENDAR
===================================================== */

.top-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.top-tools span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

/* =====================================================
   ABOUT PAGE COMPACT TITLE BOX
===================================================== */

.inner-page .page-title {
    max-width: 900px;
    margin: 32px auto 18px;
    padding: 24px 28px;
    border-radius: 26px;
}

.inner-page .page-title h1 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    margin: 0 0 8px;
}

.inner-page .page-title p {
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 560px) {
    .top-tools {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-tools span {
        min-width: auto;
        font-size: 13px;
    }

    .inner-page .page-title {
        margin: 22px 5% 10px;
        padding: 20px 18px;
    }
}

/* =====================================================
   INDEX LOGO POPUP + EXACT 3 IMAGE ROW FIX
===================================================== */
.logo-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(8px);
}

.logo-preview-modal.show {
    display: flex;
}

.logo-preview-box {
    width: min(440px, 88vw);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 34px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
    animation: logoZoomIn 0.28s ease both;
}

.logo-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-preview-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: var(--dark);
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@keyframes logoZoomIn {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.inner-page.facilities-page .gallery-grid.small,
body.inner-page.gallery-page .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    body.inner-page.facilities-page .gallery-grid.small,
    body.inner-page.gallery-page .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    body.inner-page.facilities-page .gallery-grid.small,
    body.inner-page.gallery-page .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   RESPONSIVE SAFETY PATCH ONLY
   No content/theme/layout change on desktop
===================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .brand-row {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .project-brand {
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
    }

    .hero,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cards,
    .circle-row,
    .timeline,
    .inner-page .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-card,
    .download-card,
    .integration-card,
    .page-title,
    .resource-card,
    .cards article,
    .circle-row div,
    .timeline div,
    .team-grid article,
    .contact-grid > div,
    .contact-grid form,
    figure,
    .thought-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-ribbon {
        justify-content: center;
        text-align: center;
        padding-left: 4%;
        padding-right: 4%;
    }

    .foundation-brand {
        gap: 12px;
        min-width: 0;
    }

    .foundation-brand strong,
    .foundation-brand small {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .hero-actions,
    .top-tools,
    .download-brand-row {
        flex-wrap: wrap;
    }

    .home-photo-slider,
    .slider-frame {
        width: 100%;
    }

    .page-title,
    .hero-card,
    .download-card,
    .integration-card,
    .thought-box {
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media (max-width: 600px) {
    .brand-row {
        grid-template-columns: 1fr auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .foundation-brand img {
        width: 56px;
        height: 56px;
        flex: 0 0 auto;
    }

    .foundation-brand strong {
        font-size: 20px;
        line-height: 1.12;
        transform: none;
    }

    .foundation-brand small {
        font-size: 12px;
        line-height: 1.35;
    }

    .menu-toggle {
        padding: 8px 12px;
        font-size: 20px;
    }

    .cards,
    .circle-row,
    .timeline,
    .inner-page .mini-grid,
    .inner-page .team-grid {
        grid-template-columns: 1fr;
    }

    body.inner-page.facilities-page .gallery-grid.small,
    body.inner-page.gallery-page .gallery-grid,
    .inner-page .gallery-grid,
    .inner-page .gallery-grid.small {
        grid-template-columns: 1fr;
    }

    .news-ticker-container {
        border-radius: 12px;
    }

    .news-ticker-title {
        padding: 0 12px;
    }

    .news-ticker-content span {
        padding: 0 24px;
    }

    .footer,
    .site-footer {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 380px) {
    .foundation-brand strong {
        font-size: 18px;
    }

    .foundation-brand img {
        width: 50px;
        height: 50px;
    }

    .top-ribbon span,
    .top-tools span {
        font-size: 12px;
        padding: 7px 10px;
    }

    .hero-card,
    .download-card,
    .integration-card,
    .page-title,
    .resource-card,
    .thought-box {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========================================
   FACILITIES INTRO PREMIUM
========================================= */

.facilities-intro-section{

    text-align: center;

    padding: 65px 6% 40px;

}

.facility-badge{

    display: inline-block;

    padding: 10px 24px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #38a169
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 12px 28px rgba(21,87,36,0.16);
}

.facilities-intro-section h2{

    margin-top: 24px;

    font-size: clamp(34px,4vw,56px);

    line-height: 1.2;

    color: var(--green-dark);

    font-weight: 900;
}

.facility-divider{

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin: 24px auto 28px;

    color: var(--green);
}

.facility-divider span{

    width: 120px;

    height: 2px;

    background: rgba(46,139,87,0.35);
}

.facility-main-text{

    max-width: 1050px;

    margin: 0 auto 20px;

    font-size: 19px;

    line-height: 2;

    color: var(--text);

    font-weight: 500;
}

.facility-sub-text{

    max-width: 950px;

    margin: 0 auto 42px;

    font-size: 18px;

    line-height: 1.9;

    color: #33513d;
}

/* FEATURE GRID */

.facility-feature-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 28px;

    margin-top: 20px;
}

/* FEATURE BOX */

.facility-feature-box{

    padding: 34px 24px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(223,247,223,0.92)
        );

    border: 1px solid rgba(46,139,87,0.18);

    box-shadow:
        0 18px 45px rgba(21,87,36,0.12);

    transition: 0.35s ease;
}

.facility-feature-box:hover{

    transform: translateY(-8px);

    box-shadow:
        0 24px 55px rgba(21,87,36,0.20);

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #38a169
        );
}

.facility-feature-box:hover h3,
.facility-feature-box:hover p{

    color: #ffffff;
}

.facility-icon{

    width: 90px;

    height: 90px;

    margin: 0 auto 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 42px;

    background:
        linear-gradient(
            135deg,
            #fff6c7,
            #dff7df
        );

    box-shadow:
        0 12px 28px rgba(21,87,36,0.12);
}

.facility-feature-box h3{

    margin-bottom: 16px;

    font-size: 24px;

    color: var(--green-dark);

    font-weight: 900;
}

.facility-feature-box p{

    font-size: 17px;

    line-height: 1.9;

    color: var(--text);
}

/* TABLET */

@media(max-width:1000px){

    .facility-feature-grid{

        grid-template-columns: repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:650px){

    .facilities-intro-section{

        padding: 50px 5% 30px;
    }

    .facility-feature-grid{

        grid-template-columns: 1fr;
    }

    .facility-main-text,
    .facility-sub-text{

        font-size: 16px;
    }

}

/* =====================================================
   BALANCED MENU ZOOM FIX
   Desktop menu remains visible while it fits.
   Hamburger appears only before wrapping would start.
===================================================== */
.site-header .main-nav {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.site-header .main-nav a {
    white-space: nowrap !important;
    flex: 0 0 auto !important;
}



.site-header.nav-hamburger .menu-toggle {
    display: block !important;
}

.site-header.nav-hamburger .nav-strip {
    display: none !important;
}

.site-header.nav-hamburger.menu-open .nav-strip {
    display: block !important;
}

.site-header.nav-hamburger .main-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    white-space: normal !important;
    overflow: visible !important;
}

.site-header.nav-hamburger .main-nav a {
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
}

/* =====================================================
   EXACT AUTO HAMBURGER FIX
   Menu stays in one line while it fits.
   It changes to hamburger only when real menu width exceeds space.
===================================================== */
.site-header:not(.nav-hamburger) .menu-toggle {
    display: none !important;
}

.site-header:not(.nav-hamburger) .nav-strip {
    display: block !important;
}

.site-header:not(.nav-hamburger) .main-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.site-header:not(.nav-hamburger) .main-nav a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

.site-header.nav-hamburger .menu-toggle {
    display: block !important;
}

.site-header.nav-hamburger .nav-strip {
    display: none !important;
}

.site-header.nav-hamburger.menu-open .nav-strip {
    display: block !important;
}

.site-header.nav-hamburger .main-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    white-space: normal !important;
}

.site-header.nav-hamburger .main-nav a {
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
}

/* =========================================
   ACHIEVEMENTS SECTION PREMIUM GRID
========================================= */

.achievements-section{
    padding: 70px 6%;
    text-align: center;
}

.achievements-section h2{
    font-size: clamp(34px,4vw,52px);
    color: var(--green-dark);
    margin-bottom: 18px;
    font-weight: 900;
}

.achievements-section .lead{
    max-width: 950px;
    margin: 0 auto 45px;
    font-size: 20px;
    line-height: 1.9;
    color: var(--text);
    font-weight: 500;
}

/* GRID */

.achievement-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* BLOCK */

.achievement-box{
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 170px;

    padding: 28px 24px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(223,247,223,0.92)
        );

    border: 1px solid rgba(46,139,87,0.20);

    box-shadow:
        0 16px 38px rgba(21,87,36,0.14);

    color: var(--green-dark);

    font-size: 22px;

    line-height: 1.7;

    font-weight: 700;

    transition: 0.35s ease;
}

.achievement-box:hover{

    transform: translateY(-8px);

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #38a169
        );

    color: #ffffff;

    box-shadow:
        0 22px 45px rgba(21,87,36,0.24);
}

/* TABLET */

@media (max-width: 1100px){

    .achievement-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

/* MOBILE */

@media (max-width: 650px){

    .achievement-grid{
        grid-template-columns: 1fr;
    }

    .achievement-box{
        min-height: 130px;
        font-size: 19px;
        padding: 24px 18px;
    }

}

/* =========================================
   TESTIMONIALS 4 COLUMN FULL WIDTH
========================================= */

.testimonial-grid{

    display: grid;

    grid-template-columns: repeat(4, minmax(0,1fr));

    gap: 28px;

    width: 100%;
}

/* CARD */

.testimonial-grid article{

    position: relative;

    padding: 34px 28px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(223,247,223,0.92)
        );

    border: 1px solid rgba(46,139,87,0.20);

    box-shadow:
        0 18px 42px rgba(21,87,36,0.12);

    transition: 0.35s ease;
}

.testimonial-grid article::before{

    content: "❝";

    position: absolute;

    top: 10px;

    right: 18px;

    font-size: 58px;

    color: rgba(46,139,87,0.10);

    font-weight: 900;
}

.testimonial-grid article:hover{

    transform: translateY(-8px);

    box-shadow:
        0 24px 50px rgba(21,87,36,0.20);
}

.testimonial-grid h3{

    margin-bottom: 16px;

    font-size: 24px;

    color: var(--green-dark);

    font-weight: 900;
}

.testimonial-grid p{

    font-size: 17px;

    line-height: 2;

    color: var(--text);
}

/* TABLET */

@media (max-width:1100px){

    .testimonial-grid{

        grid-template-columns: repeat(2,1fr);
    }

}

/* MOBILE */

@media (max-width:650px){

    .testimonial-grid{

        grid-template-columns: 1fr;
    }

}
/* =========================================
   RESOURCES PAGE PREMIUM
========================================= */

.resource-section{

    padding: 70px 6%;

    display: flex;

    justify-content: center;

}

.resource-card{

    width: 100%;

    max-width: 1100px;

    text-align: center;

    padding: 55px 50px;

    border-radius: 38px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(223,247,223,0.92)
        );

    border: 1px solid rgba(46,139,87,0.18);

    box-shadow:
        0 22px 55px rgba(21,87,36,0.12);
}

.resource-badge{

    display: inline-block;

    margin-bottom: 22px;

    padding: 10px 24px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #38a169
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;
}

.resource-card h2{

    font-size: clamp(34px,4vw,52px);

    color: var(--green-dark);

    margin-bottom: 12px;

    font-weight: 900;
}

.resource-card h3{

    font-size: 28px;

    color: var(--green);

    margin-bottom: 28px;

    font-weight: 800;
}

.resource-card p{

    max-width: 900px;

    margin: 0 auto 24px;

    font-size: 19px;

    line-height: 2;

    color: var(--text);
}

.resource-highlights{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 22px;

    margin-top: 35px;

    margin-bottom: 35px;
}

.resource-highlights div{

    padding: 22px 18px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,246,199,0.90),
            rgba(223,247,223,0.95)
        );

    border: 1px solid rgba(46,139,87,0.18);

    font-size: 18px;

    font-weight: 700;

    color: var(--green-dark);

    box-shadow:
        0 14px 34px rgba(21,87,36,0.10);

    transition: 0.35s ease;
}

.resource-highlights div:hover{

    transform: translateY(-6px);

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #38a169
        );

    color: #ffffff;
}

@media(max-width:1000px){

    .resource-highlights{

        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:650px){

    .resource-card{

        padding: 38px 24px;
    }

    .resource-highlights{

        grid-template-columns: 1fr;
    }

    .resource-card p{

        font-size: 17px;
    }

}

/* =========================================
   CONTACT PAGE PREMIUM + MAP VIEW
========================================= */

.contact-section{
    padding: 70px 6%;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 32px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card,
.map-card{
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(223,247,223,0.92)
        );
    border: 1px solid rgba(46,139,87,0.18);
    border-radius: 38px;
    box-shadow: 0 22px 55px rgba(21,87,36,0.12);
}

.contact-info-card{
    padding: 48px;
    text-align: center;
}

.contact-badge{
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 24px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .8px;
    background: linear-gradient(135deg,#2e8b57,#38a169);
}

.contact-info-card h2,
.contact-form-card h2,
.map-content h2{
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 18px;
}

.contact-intro{
    max-width: 880px;
    margin: 0 auto 32px;
    font-size: 18px;
    line-height: 1.9;
}

.contact-detail-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-top: 28px;
}

.contact-detail-box{
    padding: 24px 20px;
    border-radius: 26px;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(255,246,199,.92),
            rgba(223,247,223,.96)
        );
    border: 1px solid rgba(46,139,87,.18);
    box-shadow: 0 14px 34px rgba(21,87,36,.10);
}

.contact-detail-box h3{
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-detail-box p,
.contact-detail-box a{
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.contact-actions{
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-form-card{
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-card input,
.contact-form-card textarea{
    width: 100%;
    margin-bottom: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(46,139,87,.22);
    border-radius: 18px;
    outline: none;
    font-size: 16px;
    font-family: var(--font);
    color: var(--text);
    background: rgba(255,255,255,.78);
}

.contact-form-card textarea{
    min-height: 150px;
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(46,139,87,.12);
}

/* MAP */

.map-section{
    padding: 0 6% 70px;
}

.map-card{
    padding: 32px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: center;
}

.map-content{
    text-align: center;
    padding: 22px;
}

.map-content p{
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.map-frame{
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    border-radius: 30px;
    border: 4px solid rgba(255,216,77,.48);
    box-shadow: 0 18px 45px rgba(21,87,36,.14);
}

.map-frame iframe{
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

@media(max-width:1000px){
    .contact-section,
    .map-card{
        grid-template-columns: 1fr;
    }

    .contact-detail-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:650px){
    .contact-section{
        padding: 48px 5%;
    }

    .contact-info-card,
    .contact-form-card,
    .map-card{
        padding: 28px 20px;
        border-radius: 28px;
    }

    .contact-detail-grid{
        grid-template-columns: 1fr;
    }

    .map-section{
        padding: 0 5% 48px;
    }

    .map-frame,
    .map-frame iframe{
        min-height: 320px;
        height: 320px;
    }
}
