body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0f172a;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-nav {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-gradient {
    background: linear-gradient(15deg, #006a47 0%, #29835e 100%);
}

.page-html--source {
    background: #ffffff;
    color: #0f172a;
}

.page-html--source main,
.page-html--source .pt-16 {
    padding-top: 0 !important;
}

.page-html--source nav,
.page-html--source footer,
.page-html--source script,
.page-html--source style,
.page-html--source title,
.page-html--source meta,
.page-html--source link {
    display: none !important;
}

.page-html--source section:first-of-type {
    margin-top: 0;
}

.page-html--source .nav-link-active {
    border-bottom: 2px solid #059669;
    color: #059669;
}

.page-html--source .hero-gradient {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6));
}

.page-html--source .bg-brand-deep,
.bg-brand-deep {
    background-color: #0b1221 !important;
}

.page-html--source .bg-brand-navy,
.bg-brand-navy {
    background-color: #0f172a !important;
}

.page-html--source .bg-brand,
.bg-brand {
    background-color: #49a078 !important;
}

.page-html--source .text-brand,
.text-brand {
    color: #49a078 !important;
}

.page-html--source .text-brand-dark,
.text-brand-dark {
    color: #064e3b !important;
}

.page-html--source .border-brand,
.border-brand {
    border-color: #49a078 !important;
}

.page-html--source img {
    max-width: 100%;
}

/* =====================================================
   HERO SLIDER — Premium Swiper Redesign
   ===================================================== */

.hero-slider {
    position: relative;
    overflow: hidden;
    background: #04100a;
}

/* Swiper root — explicit height so swiper-wrapper height:100% works correctly */
.hero-swiper {
    width: 100%;
    height: clamp(640px, 94vh, 980px);
    background: #04100a;
}

/* Force wrapper to fill the swiper container */
.hero-swiper .swiper-wrapper {
    height: 100%;
}

/* Individual slide */
.hero-swiper__slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 18% 40%, rgba(73, 160, 120, 0.28), transparent 50%), #04100a;
}

/* Picture element */
.hero-swiper__slide picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Hero image — Ken Burns animation restarts fresh on each slide activation */
.hero-swiper__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    filter: saturate(1.06) brightness(0.92);
    will-change: transform;
}

.hero-swiper .swiper-slide-active .hero-swiper__image {
    animation: heroKenBurns 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.13);
    }
}

/* Dark overlay */
.hero-swiper__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg,
            rgba(4, 16, 10, var(--hero-overlay-opacity, .62)) 0%,
            rgba(4, 16, 10, .48) 44%,
            rgba(4, 16, 10, .16) 100%),
        linear-gradient(to bottom,
            rgba(4, 16, 10, .42) 0%,
            rgba(4, 16, 10, .0) 42%,
            rgba(4, 16, 10, .62) 100%);
}

/* Subtle grid texture on overlay */
.hero-swiper__overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.6), transparent 58%);
    -webkit-mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.6), transparent 58%);
}

/* Content block */
.hero-swiper__content {
    position: relative;
    z-index: 3;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 72px;
    color: #ffffff;
}

/* Staggered text entrance on active slide */
.hero-swiper .swiper-slide-active .hero-swiper__kicker {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-swiper .swiper-slide-active .hero-swiper__content h1 {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

.hero-swiper .swiper-slide-active .hero-swiper__content p {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.40s both;
}

.hero-swiper .swiper-slide-active .hero-swiper__button {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.54s both;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-swiper__content--center {
    text-align: center;
}

.hero-swiper__content--center>* {
    margin-left: auto;
    margin-right: auto;
}

.hero-swiper__content--right {
    text-align: right;
}

.hero-swiper__content--right>* {
    margin-left: auto;
}

.hero-swiper__content>* {
    max-width: 760px;
}

/* Kicker / badge */
.hero-swiper__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 16px 8px 12px;
    border: 1px solid rgba(157, 245, 199, 0.38);
    border-radius: 999px;
    background: rgba(157, 245, 199, 0.1);
    color: #9df5c7;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-swiper__kicker::before {
    content: "";
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9df5c7;
    box-shadow: 0 0 0 3px rgba(157, 245, 199, 0.2), 0 0 14px rgba(157, 245, 199, 0.5);
    animation: kickerPulse 2.2s ease-in-out infinite;
}

@keyframes kickerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(157, 245, 199, 0.2), 0 0 14px rgba(157, 245, 199, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(157, 245, 199, 0.06), 0 0 26px rgba(157, 245, 199, 0.3);
    }
}

/* Heading */
.hero-swiper__content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 6.5vw, 90px);
    line-height: 0.97;
    letter-spacing: -0.055em;
    font-weight: 900;
    text-wrap: balance;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

/* Description */
.hero-swiper__content p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.72;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

/* CTA Button */
.hero-swiper__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 15px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #49a078 0%, #006a47 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 28px rgba(0, 106, 71, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-swiper__button::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
    transition: transform 0.22s ease;
}

.hero-swiper__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(0, 106, 71, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-swiper__button:hover::after {
    transform: translateX(5px);
}

/* ── Navigation arrows ── */
/* Override Swiper's default nav button styles completely */
.hero-swiper__nav {
    position: absolute !important;
    top: 50% !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 15 !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    background: rgba(4, 16, 10, 0.52) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28) !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.hero-swiper__nav--prev {
    left: 24px !important;
    right: auto !important;
}

.hero-swiper__nav--next {
    right: 24px !important;
    left: auto !important;
}

.hero-swiper__nav:hover {
    background: rgba(73, 160, 120, 0.88) !important;
    border-color: rgba(73, 160, 120, 0.5) !important;
    box-shadow: 0 8px 32px rgba(0, 106, 71, 0.4) !important;
    transform: translateY(-50%) scale(1.06) !important;
}

/* Swiper uses ::after for built-in arrow icon */
.hero-swiper__nav::after {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
}

/* ── Pagination dots ── */
.hero-swiper__pagination {
    bottom: 22px !important;
    z-index: 10 !important;
}

.hero-swiper__pagination .swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    border-radius: 999px !important;
    margin: 0 4px !important;
    transition: width 0.3s ease, background 0.3s ease !important;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
    width: 30px !important;
    background: #9df5c7 !important;
}

/* Pre-init: hide overflow slides and controls until Swiper initialises */
.hero-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

.hero-swiper:not(.swiper-initialized) .hero-swiper__pagination,
.hero-swiper:not(.swiper-initialized) .hero-swiper__nav {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-swiper__nav--prev {
        left: 16px !important;
    }

    .hero-swiper__nav--next {
        right: 16px !important;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: clamp(580px, 90vh, 800px);
    }

    .hero-swiper__content {
        width: calc(100% - 32px);
        padding-top: 86px;
        padding-bottom: 60px;
    }

    .hero-swiper__content h1 {
        font-size: clamp(38px, 11vw, 62px);
    }

    .hero-swiper__nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: clamp(560px, 88vh, 700px);
    }

    .hero-swiper__content {
        width: calc(100% - 24px);
        padding-bottom: 50px;
    }

    .hero-swiper__content h1 {
        font-size: clamp(34px, 12vw, 50px);
    }

    .hero-swiper__content p {
        font-size: 15px;
    }

    .hero-swiper__button {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* Anasayfa açık zeminlerde metin okunurluğu */
.home-readable-section,
.home-readable-section *:not(a):not(.material-symbols-outlined) {
    color: #121d24 !important;
}

.home-readable-section p,
.home-readable-section .text-slate-600,
.home-readable-section .text-secondary {
    color: #3f4942 !important;
}

/* Cookie modal: bağımsız ve stabil tasarım */
html:has(.cookie-consent),
body:has(.cookie-consent) {
    overflow: hidden;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 20, 15, 0.46);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: cookieFadeIn .22s ease both;
}

.cookie-consent__panel {
    width: min(100%, 720px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
    color: #121d24;
    border: 1px solid rgba(190, 201, 192, 0.85);
    border-radius: 24px;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
    animation: cookiePanelIn .28s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes cookieFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cookiePanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

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

.cookie-consent__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #eef7f1;
    color: #3f4942;
    cursor: pointer;
}

.cookie-consent__body {
    padding: 58px 34px 28px;
}

.cookie-consent h2 {
    margin: 0 48px 14px 0;
    color: #121d24;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.cookie-consent__intro {
    margin: 0 0 26px;
    color: #3d4850;
    font-size: 16px;
    line-height: 1.7;
}

.cookie-consent__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.cookie-consent__levels {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    background: #eaf3ee;
    border-radius: 999px;
}

.cookie-consent__level {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    border: none !important;
    border-radius: 999px;
    padding: 10px 15px;
    background: transparent !important;
    color: #3f4942 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.cookie-consent__level.is-active,
.cookie-consent__level[aria-pressed="true"] {
    background: linear-gradient(135deg, #006a47, #49a078) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.cookie-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}

.cookie-dot--silver {
    background: #94a3b8;
}

.cookie-dot--gold {
    background: #facc15;
}

.cookie-dot--platinum {
    background: #c084fc;
}

.cookie-consent__duration {
    position: relative;
}

.cookie-consent__duration-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 130px;
    border: none !important;
    border-radius: 999px;
    padding: 12px 16px;
    background: #eaf3ee !important;
    color: #121d24 !important;
    font-weight: 800;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.cookie-consent__duration-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    min-width: 150px;
    overflow: hidden;
    border: 1px solid rgba(190, 201, 192, 0.7);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.cookie-consent__duration-menu.hidden {
    display: none;
}

.cookie-consent__duration-menu button {
    display: block;
    width: 100%;
    border: none !important;
    padding: 12px 16px;
    background: #ffffff !important;
    color: #121d24 !important;
    text-align: left;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.cookie-consent__duration-menu button:hover {
    background: #e9f5ff;
}

.cookie-consent__description {
    margin-bottom: 24px;
    padding: 20px;
    border-left: 5px solid #006a47;
    border-radius: 14px;
    background: #e9f5ff;
}

.cookie-consent__description p {
    margin: 0;
    color: #3f4942;
    font-size: 14px;
    line-height: 1.7;
}

.cookie-consent__description strong {
    color: #121d24;
}

.cookie-consent__save {
    display: block !important;
    width: 100% !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    background: linear-gradient(135deg, #006a47 0%, #121d24 100%) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    transition: opacity 0.2s ease;
}

.cookie-consent__save:hover {
    opacity: 0.9;
}

.cookie-consent__footer {
    display: flex;
    justify-content: flex-end;
    padding: 18px 34px;
    border-top: 1px solid rgba(190, 201, 192, 0.5);
    background: #eef7f1;
}

.cookie-consent__footer a {
    color: #006a47;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 640px) {
    .cookie-consent {
        align-items: flex-end;
        padding: 12px;
    }

    .cookie-consent__body {
        padding: 54px 20px 22px;
    }

    .cookie-consent__footer {
        padding: 16px 20px;
    }

    .cookie-consent__levels {
        width: 100%;
        flex-wrap: wrap;
        border-radius: 18px;
    }

    .cookie-consent__level {
        flex: 1 1 auto;
        justify-content: center;
    }
}

.mobile-menu {
    display: none;
}

.mobile-menu.is-open {
    display: block;
}

@media (max-width: 768px) {
    .page-html--source section {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
}

.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-gradient {
    background: linear-gradient(15deg, #006a47 0%, #29835e 100%);
}

.hero-slider-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 700ms ease;
}

.hero-slider-layer.is-hidden {
    opacity: 0;
}

.hero-slider-layer.is-visible {
    opacity: 1;
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    cursor: pointer;
}

.hero-dot.is-active {
    background: #9df5c7;
}

.page-html section:first-child {
    margin-top: 0;
}

.page-html section:last-child {
    margin-bottom: 0;
}

.mobile-menu {
    display: none;
}

.mobile-menu.is-open {
    display: block;
}
.site-cta-section {
    background: #f5faff;
    overflow: hidden;
    padding: 4rem 0 5rem;
}

.site-cta-wrap {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #006a47 0%, #29835e 52%, #0b7a54 100%);
    box-shadow: 0 24px 60px rgba(0, 106, 71, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 4rem 2rem;
    text-align: center;
}

.site-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.site-cta-glow {
    position: absolute;
    width: 15rem;
    height: 15rem;
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.site-cta-glow-right {
    top: -5rem;
    right: -4rem;
    background: rgba(255, 255, 255, 0.18);
}

.site-cta-glow-left {
    bottom: -5rem;
    left: -4rem;
    background: rgba(157, 245, 199, 0.22);
}

.site-cta-mark {
    position: absolute;
    right: 2rem;
    bottom: -2rem;
    color: rgba(255, 255, 255, 0.08);
    font-size: clamp(10rem, 18vw, 18rem);
    font-weight: 900;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.site-cta-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0 auto;
}

.site-cta-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 1.25rem;
}

.site-cta-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto 2.25rem;
}

.site-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #006a47;
    border-radius: 0.875rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(0, 33, 19, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 33, 19, 0.18);
}

.site-cta-button:active {
    transform: scale(0.97);
}

@media (min-width: 768px) {
    .site-cta-card {
        padding: 5rem 4rem;
    }
}

.contact-page-section {
    background: #f5faff;
    padding: 5rem 0;
}

.contact-page-wrap {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 106, 71, 0.10);
    border-radius: 1.75rem;
    box-shadow: 0 24px 60px rgba(18, 29, 36, 0.08);
}

.contact-info-card {
    padding: 2.5rem;
    position: sticky;
    top: 6rem;
}

.contact-eyebrow {
    color: #006a47;
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info-card h2,
.contact-form-head h2 {
    color: #121d24;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0;
}

.contact-intro,
.contact-form-head div div {
    color: #556068;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-method {
    align-items: flex-start;
    background: #f5faff;
    border: 1px solid rgba(0, 106, 71, 0.10);
    border-radius: 1rem;
    color: #121d24;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
}

.contact-method > span {
    align-items: center;
    background: rgba(0, 106, 71, 0.10);
    border-radius: 0.875rem;
    color: #006a47;
    display: flex;
    flex: 0 0 2.75rem;
    height: 2.75rem;
    justify-content: center;
}

.contact-method small {
    color: #556068;
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.contact-method strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-hours-card {
    background: linear-gradient(135deg, #006a47, #29835e);
    border-radius: 1.25rem;
    color: #ffffff;
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.contact-hours-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    margin: 0 0 1rem;
}

.contact-hours-card p {
    color: rgba(255, 255, 255, 0.86);
    margin: 0.45rem 0;
}

.contact-form-card {
    padding: 2.5rem;
}

.contact-form-head {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-form-head > span {
    align-items: center;
    background: rgba(0, 106, 71, 0.10);
    border-radius: 1rem;
    color: #006a47;
    display: flex;
    flex: 0 0 3.25rem;
    height: 3.25rem;
    justify-content: center;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    color: #3f4942;
    display: grid;
    font-size: 0.9rem;
    font-weight: 800;
    gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    background: #f8fbff;
    border: 1px solid #d8e4ee;
    border-radius: 0.9rem;
    color: #121d24;
    font: inherit;
    font-weight: 500;
    outline: none;
    padding: 0.95rem 1rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: #006a47;
    box-shadow: 0 0 0 4px rgba(0, 106, 71, 0.10);
}

.contact-form button {
    align-items: center;
    background: #006a47;
    border: 0;
    border-radius: 0.95rem;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 900;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.contact-form button:hover {
    background: #005236;
    box-shadow: 0 14px 32px rgba(0, 106, 71, 0.20);
    transform: translateY(-1px);
}

.contact-alert {
    border-radius: 1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    padding: 1rem;
}

.contact-alert-success {
    background: rgba(0, 106, 71, 0.10);
    color: #005236;
}

.contact-alert-error {
    background: #ffdad6;
    color: #93000a;
}

@media (max-width: 900px) {
    .contact-page-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-page-section {
        padding: 3rem 0;
    }

    .contact-page-wrap {
        padding: 0 1.25rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}
