/* ======================================================
   LITTLE EXPLORERS LEARNING HUB
   Contact Page Stylesheet
   Part 1
   Foundation • Reset • Globals • Utilities
====================================================== */

/* ======================================
   GOOGLE FONT FALLBACKS
====================================== */

:root {

    /* Colors */

    --primary: #2F855A;
    --primary-dark: #276749;
    --primary-light: #E6F6EC;

    --secondary: #3182CE;
    --secondary-dark: #2C5282;

    --accent: #F6AD55;
    --accent-light: #FFF7ED;

    --success: #38A169;
    --warning: #DD6B20;
    --danger: #E53E3E;

    --white: #FFFFFF;
    --off-white: #FAFAFA;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --text: #374151;
    --heading: #1F2937;

    /* Fonts */

    --font-heading: "Nunito", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Width */

    --container: 1400px;

    /* Radius */

    --radius-sm: .5rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;

    /* Shadows */

    --shadow-sm: 0 2px 8px rgba(0,0,0,.05);

    --shadow:

        0 10px 30px rgba(0,0,0,.08);

    --shadow-lg:

        0 20px 60px rgba(0,0,0,.12);

    /* Transition */

    --transition:

        all .3s ease;

    /* Section spacing */

    --section-padding:

        clamp(4rem, 8vw, 7rem);

}

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

*,
*::before,
*::after {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

    font-size: 100%;

    -webkit-text-size-adjust: 100%;

}

body {

    font-family: var(--font-body);

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

    text-rendering: optimizeLegibility;

}

/* ======================================
   IMAGES
====================================== */

img {

    display: block;

    max-width: 100%;

    height: auto;

}

picture {

    display: block;

}

/* ======================================
   LINKS
====================================== */

a {

    color: inherit;

    text-decoration: none;

    transition: var(--transition);

}

/* ======================================
   LISTS
====================================== */

ul,
ol {

    list-style: none;

}

/* ======================================
   FORM ELEMENTS
====================================== */

button,
input,
textarea,
select {

    font: inherit;

}

button {

    border: none;

    cursor: pointer;

    background: none;

}

textarea {

    resize: vertical;

}

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

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);

    color: var(--heading);

    line-height: 1.2;

    font-weight: 800;

}

h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

}

h2 {

    font-size: clamp(2rem, 4vw, 3rem);

}

h3 {

    font-size: clamp(1.35rem, 2vw, 1.75rem);

}

p {

    margin-bottom: 1rem;

}

/* ======================================
   CONTAINER
====================================== */

.container {

    width: min(100% - 2rem, var(--container));

    margin-inline: auto;

}

/* ======================================
   SECTIONS
====================================== */

section {

    padding-block: var(--section-padding);

    position: relative;

}

/* ======================================
   SECTION HEADING
====================================== */

.section-heading {

    max-width: 760px;

    margin-inline: auto;

    text-align: center;

    margin-bottom: 4rem;

}

.section-heading h2 {

    margin: 1rem 0;

}

.section-heading p {

    color: var(--gray-600);

}

/* ======================================
   SECTION TAG
====================================== */

.section-tag {

    display: inline-flex;

    align-items: center;

    gap: .6rem;

    padding: .65rem 1.2rem;

    border-radius: var(--radius-pill);

    background: var(--primary-light);

    color: var(--primary-dark);

    font-size: .9rem;

    font-weight: 700;

}

.section-tag i {

    font-size: 1rem;

}

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

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .75rem;

    padding: 1rem 2rem;

    border-radius: var(--radius-pill);

    font-weight: 700;

    transition: var(--transition);

}

.btn-primary {

    background: var(--primary);

    color: var(--white);

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}

.btn-secondary {

    background: var(--white);

    color: var(--primary);

    border: 2px solid var(--primary);

}

.btn-secondary:hover {

    background: var(--primary);

    color: var(--white);

}

.btn-full {

    width: 100%;

}

/* ======================================
   CARDS
====================================== */

.contact-card,
.partnership-card,
.social-card,
.stat,
.newsletter-form-card,
.promise-card,
.contact-information,
.contact-form-wrapper {

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

}

/* ======================================
   ICON CIRCLES
====================================== */

.card-icon,
.social-icon {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 1.6rem;

}

/* ======================================
   FORM ELEMENTS
====================================== */

input,
textarea,
select {

    width: 100%;

    padding: 1rem 1.2rem;

    border-radius: var(--radius);

    border: 2px solid var(--gray-200);

    transition: var(--transition);

    background: var(--white);

}

input:focus,
textarea:focus,
select:focus {

    outline: none;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(47,133,90,.15);

}

label {

    display: block;

    font-weight: 600;

    margin-bottom: .55rem;

}

/* ======================================
   ACCESSIBILITY
====================================== */

:focus-visible {

    outline: 3px solid var(--secondary);

    outline-offset: 3px;

}

.skip-link {

    position: absolute;

    top: -100px;

    left: 1rem;

    background: var(--primary);

    color: var(--white);

    padding: .85rem 1.25rem;

    border-radius: var(--radius);

    z-index: 9999;

}

.skip-link:focus {

    top: 1rem;

}

/* ======================================
   SIMPLE ANIMATIONS
====================================== */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.fade-up {

    animation: fadeUp .8s ease both;

}

/* ======================================
   MOBILE FOUNDATION
====================================== */

@media (max-width: 768px) {

    .container {

        width: min(100% - 1.5rem, var(--container));

    }

    section {

        padding-block: 4rem;

    }

    .section-heading {

        margin-bottom: 3rem;

    }

    .btn {

        width: 100%;

    }

}

/* ======================================================
   CONTACT HERO
   Part 2A
   Hero Foundation
====================================================== */

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

.contact-hero {

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at top left,
        rgba(47,133,90,.10),
        transparent 40%),

        radial-gradient(circle at bottom right,
        rgba(49,130,206,.08),
        transparent 35%),

        linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fcf9 100%);

    padding-top: 5rem;
    padding-bottom: 8rem;

}

/* Decorative Background */

.contact-hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(47,133,90,.05);

    top: -220px;
    right: -220px;

    z-index: 0;

}

.contact-hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(49,130,206,.05);

    bottom: -200px;
    left: -180px;

    z-index: 0;

}

/* ======================================
   GRID
====================================== */

.contact-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:

        1.1fr
        .9fr;

    gap: 5rem;

    align-items: center;

}

/* ======================================
   HERO CONTENT
====================================== */

.contact-hero-content {

    display: flex;

    flex-direction: column;

}

.contact-hero-content h1 {

    margin-top: 1rem;

    margin-bottom: 1.5rem;

    color: var(--heading);

}

.contact-hero-content p {

    max-width: 700px;

    color: var(--gray-600);

    font-size: 1.05rem;

}

/* ======================================
   HERO TAG
====================================== */

.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: .75rem;

    width: fit-content;

    background: var(--primary-light);

    color: var(--primary-dark);

    padding:

        .75rem
        1.35rem;

    border-radius: var(--radius-pill);

    font-weight: 700;

    box-shadow: var(--shadow-sm);

}

.hero-tag i {

    color: var(--primary);

}

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

.hero-buttons {

    display: flex;

    gap: 1rem;

    margin-top: 2rem;

    margin-bottom: 2rem;

    flex-wrap: wrap;

}

.hero-buttons .btn {

    min-width: 210px;

}

/* ======================================
   HERO IMAGE
====================================== */

.contact-hero-image {

    position: relative;

}

.contact-hero-image img {

    width: 100%;

    border-radius: 2rem;

    object-fit: cover;

    box-shadow: var(--shadow-lg);

}

/* ======================================
   WELCOME CARD
====================================== */

.welcome-card {

    position: absolute;

    bottom: 2rem;

    left: -2rem;

    max-width: 320px;

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(12px);

    padding: 1.75rem;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

    border: 1px solid rgba(255,255,255,.45);

}

.welcome-card i {

    display: inline-grid;

    place-items: center;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    margin-bottom: 1rem;

    font-size: 1.35rem;

}

.welcome-card h3 {

    margin-bottom: .75rem;

}

.welcome-card p {

    margin-bottom: 0;

    color: var(--gray-600);

    font-size: .95rem;

}

/* ======================================
   SVG DIVIDER
====================================== */

.hero-divider {

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 100%;

    line-height: 0;

}

.hero-divider svg {

    display: block;

    width: 100%;

    height: 90px;

}

.hero-divider path {

    fill: #ffffff;

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .contact-hero {

        padding-top: 4rem;

        padding-bottom: 6rem;

    }

    .contact-hero-grid{

        grid-template-columns:1fr;

        gap:3rem;

    }

    .contact-hero-content{

        order:2;

    }

    .contact-hero-image{

        order:1;

        max-width:700px;

        margin-inline:auto;

    }

    .welcome-card{

        left:1.5rem;

        bottom:1.5rem;

    }

}

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

@media (max-width:768px){

    .contact-hero{

        text-align:center;

    }

    .hero-tag{

        margin-inline:auto;

    }

    .contact-hero-content p{

        max-width:100%;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:stretch;

    }

    .hero-buttons .btn{

        min-width:unset;

        width:100%;

    }

    .contact-hero-image{

        max-width:100%;

    }

    .welcome-card{

        position:relative;

        left:auto;

        bottom:auto;

        margin-top:-3rem;

        margin-inline:auto;

        max-width:95%;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .contact-hero{

        padding-top:3rem;

    }

    .contact-hero-grid{

        gap:2rem;

    }

    .welcome-card{

        padding:1.5rem;

    }

}


/* ======================================================
   CONTACT HERO
   Part 2B
   Hero Components
====================================================== */

/* ======================================
   RESPONSE TIME
====================================== */

.response-time {

    display: inline-flex;

    align-items: center;

    gap: .75rem;

    width: fit-content;

    margin-bottom: 2rem;

    padding: .85rem 1.25rem;

    background: var(--white);

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

    border-radius: var(--radius-pill);

    box-shadow: var(--shadow-sm);

    font-weight: 600;

}

.response-time i {

    color: var(--primary);

    font-size: 1.1rem;

}

/* ======================================
   HERO HIGHLIGHTS
====================================== */

.hero-highlights {

    display: grid;

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

    gap: 1rem;

    margin: 2.5rem 0;

}

.highlight-item {

    display: flex;

    align-items: center;

    gap: .75rem;

    background: var(--white);

    padding: 1rem;

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.highlight-item:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);

}

.highlight-item i {

    color: var(--primary);

    font-size: 1.35rem;

    flex-shrink: 0;

}

.highlight-item span {

    font-weight: 600;

    color: var(--gray-700);

}

/* ======================================
   FEATURE LIST
====================================== */

.feature-list {

    display: grid;

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

    gap: 1rem;

    margin-bottom: 2.5rem;

}

.feature-list div {

    display: flex;

    align-items: center;

    gap: .75rem;

    padding: 1rem;

    border-radius: var(--radius);

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(10px);

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

    transition: var(--transition);

}

.feature-list div:hover {

    transform: translateX(6px);

    border-color: var(--primary);

}

.feature-list i {

    color: var(--primary);

    font-size: 1.2rem;

    width: 28px;

    text-align: center;

}

.feature-list span {

    font-weight: 600;

}

/* ======================================
   TRUST BADGES
====================================== */

.hero-badges {

    display: flex;

    flex-wrap: wrap;

    gap: .75rem;

    margin-bottom: 3rem;

}

.hero-badges span {

    display: inline-flex;

    align-items: center;

    gap: .55rem;

    padding: .7rem 1rem;

    background: var(--primary-light);

    color: var(--primary-dark);

    border-radius: var(--radius-pill);

    font-size: .9rem;

    font-weight: 700;

}

.hero-badges i {

    color: var(--primary);

}

/* ======================================
   HERO STATS
====================================== */

.hero-stats {

    display: grid;

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

    gap: 1.5rem;

    margin-bottom: 3rem;

}

.stat {

    padding: 2rem;

    text-align: center;

    transition: var(--transition);

}

.stat:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);

}

.stat i {

    font-size: 2rem;

    color: var(--primary);

    margin-bottom: 1rem;

}

.stat h3 {

    margin-bottom: .75rem;

}

.stat p {

    margin-bottom: 0;

    color: var(--gray-600);

    font-size: .95rem;

}

/* ======================================
   HERO QUOTE
====================================== */

.hero-quote {

    position: relative;

    margin: 3rem 0;

    padding: 2rem;

    border-left: 5px solid var(--primary);

    background: var(--gray-50);

    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;

    font-size: 1.15rem;

    font-style: italic;

    color: var(--gray-700);

    box-shadow: var(--shadow-sm);

}

.hero-quote::before {

    content: "\201C";

    position: absolute;

    top: -.4rem;

    left: 1rem;

    font-size: 4rem;

    color: rgba(47,133,90,.15);

    line-height: 1;

    font-family: Georgia, serif;

}

/* ======================================
   SCROLL INDICATOR
====================================== */

.scroll-indicator {

    margin-top: 2rem;

}

.scroll-indicator a {

    display: inline-flex;

    align-items: center;

    gap: .75rem;

    color: var(--primary);

    font-weight: 700;

}

.scroll-indicator i {

    animation: bounceDown 2s infinite;

}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {

        transform: translateY(0);

    }

    40% {

        transform: translateY(8px);

    }

    60% {

        transform: translateY(4px);

    }

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .hero-highlights{

        grid-template-columns:1fr;

    }

    .hero-stats{

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

    }

}

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

@media (max-width:768px){

    .response-time{

        margin-inline:auto;

    }

    .hero-highlights{

        grid-template-columns:1fr;

    }

    .feature-list{

        grid-template-columns:1fr;

    }

    .hero-badges{

        justify-content:center;

    }

    .hero-stats{

        grid-template-columns:1fr;

    }

    .hero-quote{

        text-align:left;

        font-size:1rem;

        padding:1.5rem;

    }

    .scroll-indicator{

        text-align:center;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .hero-badges{

        flex-direction:column;

        align-items:stretch;

    }

    .hero-badges span{

        justify-content:center;

    }

    .response-time{

        width:100%;

        justify-content:center;

    }

}


/* ======================================================
   CONTACT HERO
   Part 2C
   Premium Effects & Final Responsive Polish
====================================================== */

/* ======================================
   HERO CONTENT SPACING
====================================== */

.contact-hero-content > * {

    animation: heroFadeUp .8s ease both;

}

.contact-hero-content > *:nth-child(2) {

    animation-delay: .08s;

}

.contact-hero-content > *:nth-child(3) {

    animation-delay: .16s;

}

.contact-hero-content > *:nth-child(4) {

    animation-delay: .24s;

}

.contact-hero-content > *:nth-child(5) {

    animation-delay: .32s;

}

.contact-hero-content > *:nth-child(6) {

    animation-delay: .40s;

}

.contact-hero-content > *:nth-child(7) {

    animation-delay: .48s;

}

.contact-hero-content > *:nth-child(8) {

    animation-delay: .56s;

}

/* ======================================
   HERO IMAGE EFFECT
====================================== */

.contact-hero-image {

    overflow: visible;

}

.contact-hero-image img {

    transition:
        transform .6s ease,
        box-shadow .4s ease;

}

.contact-hero-image:hover img {

    transform:
        scale(1.02)
        rotate(-.5deg);

    box-shadow:
        0 30px 70px rgba(0,0,0,.18);

}

/* ======================================
   FLOATING CARD
====================================== */

.welcome-card {

    animation:

        floatCard 6s ease-in-out infinite;

}

@keyframes floatCard {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

/* ======================================
   HERO STAT EFFECTS
====================================== */

.stat {

    position: relative;

    overflow: hidden;

}

.stat::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            rgba(47,133,90,.08),
            transparent 70%);

    opacity: 0;

    transition: opacity .35s ease;

}

.stat:hover::before {

    opacity: 1;

}

.stat:hover i {

    transform: scale(1.15);

}

.stat i {

    transition:

        transform .35s ease;

}

/* ======================================
   FEATURE LIST
====================================== */

.feature-list div {

    position: relative;

    overflow: hidden;

}

.feature-list div::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.65),
            transparent);

    transition: left .7s ease;

}

.feature-list div:hover::before {

    left: 100%;

}

/* ======================================
   HIGHLIGHT CARDS
====================================== */

.highlight-item {

    position: relative;

    overflow: hidden;

}

.highlight-item::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}

.highlight-item:hover::after {

    transform: scaleX(1);

}

/* ======================================
   BUTTON EFFECTS
====================================== */

.hero-buttons .btn {

    position: relative;

    overflow: hidden;

}

.hero-buttons .btn::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.3),
            transparent);

    transform: translateX(-120%);

}

.hero-buttons .btn:hover::before {

    transform: translateX(120%);

    transition: transform .7s ease;

}

/* ======================================
   HERO TAG
====================================== */

.hero-tag {

    transition: var(--transition);

}

.hero-tag:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow);

}

/* ======================================
   QUOTE
====================================== */

.hero-quote {

    transition: var(--transition);

}

.hero-quote:hover {

    transform: translateX(8px);

}

/* ======================================
   SCROLL INDICATOR
====================================== */

.scroll-indicator a:hover {

    color: var(--primary-dark);

}

.scroll-indicator a:hover i {

    transform: translateY(6px);

}

/* ======================================
   HERO IMAGE ENTRANCE
====================================== */

.contact-hero-image {

    animation:

        heroImage .9s ease;

}

@keyframes heroImage {

    from {

        opacity: 0;

        transform:

            translateX(50px);

    }

    to {

        opacity: 1;

        transform:

            translateX(0);

    }

}

@keyframes heroFadeUp {

    from {

        opacity: 0;

        transform:

            translateY(25px);

    }

    to {

        opacity: 1;

        transform:

            translateY(0);

    }

}

/* ======================================
   LARGE DESKTOPS
====================================== */

@media (min-width:1500px){

    .contact-hero{

        padding-top:7rem;

        padding-bottom:10rem;

    }

    .contact-hero-grid{

        gap:7rem;

    }

}

/* ======================================
   MOBILE REFINEMENTS
====================================== */

@media (max-width:768px){

    .contact-hero::before,

    .contact-hero::after{

        display:none;

    }

    .contact-hero-image:hover img{

        transform:none;

    }

    .hero-quote:hover{

        transform:none;

    }

}

/* ======================================
   REDUCED MOTION
====================================== */

@media (prefers-reduced-motion:reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto;

    }

}


/* ======================================================
   CONTACT OPTIONS
   Part 3
====================================================== */

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

.contact-options {

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f9fcfa 100%);

}

/* ======================================
   GRID
====================================== */

.contact-card-grid {

    display: grid;

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

    gap: 2rem;

}

/* ======================================
   CARD
====================================== */

.contact-card {

    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    padding: 2.5rem;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

    overflow: hidden;

}

/* Top Accent */

.contact-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}

.contact-card:hover::before {

    transform: scaleX(1);

}

/* Hover */

.contact-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

/* ======================================
   ICON
====================================== */

.contact-card .card-icon {

    margin-bottom: 1.5rem;

}

/* ======================================
   HEADING
====================================== */

.contact-card h3 {

    margin-bottom: 1rem;

}

/* ======================================
   TEXT
====================================== */

.contact-card p {

    color: var(--gray-600);

    margin-bottom: 2rem;

    flex-grow: 1;

}

/* ======================================
   LINK
====================================== */

.contact-card a {

    display: inline-flex;

    align-items: center;

    gap: .6rem;

    font-weight: 700;

    color: var(--primary);

}

.contact-card a i {

    transition: transform .3s ease;

}

.contact-card:hover a i {

    transform: translateX(6px);

}

/* ======================================
   FEATURED CARD
====================================== */

.contact-card.featured {

    border: 2px solid var(--primary);

    transform: scale(1.02);

    background:

        linear-gradient(
            180deg,
            #ffffff,
            #f6fff8);

}

.contact-card.featured:hover {

    transform:

        translateY(-10px)
        scale(1.03);

}

/* ======================================
   FEATURED BADGE
====================================== */

.featured-badge {

    position: absolute;

    top: 1.25rem;

    right: 1.25rem;

    background: var(--primary);

    color: var(--white);

    padding: .45rem .9rem;

    border-radius: var(--radius-pill);

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: .03em;

}

/* ======================================
   ICON ANIMATION
====================================== */

.contact-card:hover .card-icon {

    transform: rotate(-8deg) scale(1.08);

}

.contact-card .card-icon {

    transition: var(--transition);

}

/* ======================================
   BACKGROUND SHIMMER
====================================== */

.contact-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent);

    transform: translateX(-120%);

    pointer-events: none;

}

.contact-card:hover::after {

    transform: translateX(120%);

    transition: transform .8s ease;

}

/* ======================================
   TABLET
====================================== */

@media (max-width:1024px){

    .contact-card-grid{

        grid-template-columns:

            repeat(2,1fr);

    }

}

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

@media (max-width:768px){

    .contact-options{

        text-align:center;

    }

    .contact-card-grid{

        grid-template-columns:1fr;

    }

    .contact-card{

        padding:2rem;

    }

    .contact-card .card-icon{

        margin-inline:auto;

    }

    .contact-card a{

        justify-content:center;

    }

    .featured-badge{

        position:static;

        display:inline-block;

        margin-bottom:1.5rem;

    }

    .contact-card.featured{

        transform:none;

    }

    .contact-card.featured:hover{

        transform:translateY(-8px);

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .contact-card{

        padding:1.75rem;

    }

}


/* ======================================================
   CUSTOM RESOURCE SPOTLIGHT
   Part 4
====================================================== */

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

.custom-resources {

    background: linear-gradient(
        180deg,
        #f8fcf9 0%,
        #ffffff 100%);

}

/* ======================================
   GRID
====================================== */

.custom-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: center;

}

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

.custom-content h2 {

    margin: 1rem 0 1.5rem;

}

.custom-content p {

    color: var(--gray-600);

    margin-bottom: 1.5rem;

    max-width: 650px;

}

.custom-content .btn {

    margin-top: 1rem;

}

/* ======================================
   SERVICES GRID
====================================== */

.custom-services {

    display: grid;

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

    gap: 1.5rem;

}

/* ======================================
   SERVICE CARD
====================================== */

.custom-services article {

    position: relative;

    background: var(--white);

    padding: 2rem;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

    overflow: hidden;

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

}

/* Hover */

.custom-services article:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: var(--primary);

}

/* Top Accent */

.custom-services article::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}

.custom-services article:hover::before {

    transform: scaleX(1);

}

/* ======================================
   ICON
====================================== */

.custom-services i {

    display: inline-grid;

    place-items: center;

    width: 70px;

    height: 70px;

    margin-bottom: 1.5rem;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 1.6rem;

    transition: var(--transition);

}

.custom-services article:hover i {

    transform: rotate(-8deg) scale(1.1);

}

/* ======================================
   TEXT
====================================== */

.custom-services h3 {

    margin-bottom: 1rem;

}

.custom-services p {

    color: var(--gray-600);

    margin-bottom: 0;

}

/* ======================================
   SHIMMER EFFECT
====================================== */

.custom-services article::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent);

    transform: translateX(-120%);

    pointer-events: none;

}

.custom-services article:hover::after {

    transform: translateX(120%);

    transition: transform .8s ease;

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .custom-grid{

        grid-template-columns:1fr;

        gap:3rem;

    }

}

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

@media (max-width:768px){

    .custom-content{

        text-align:center;

    }

    .custom-content p{

        max-width:100%;

    }

    .custom-services{

        grid-template-columns:1fr;

    }

    .custom-services article{

        text-align:center;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .custom-services article{

        padding:1.75rem;

    }

}


/* ======================================================
   CONTACT FORM
   Part 5A
   Layout & Information Panel
====================================================== */

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

.contact-form-section {

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcf9 100%);

}

/* ======================================
   GRID
====================================== */

.contact-form-grid {

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 3rem;

    align-items: stretch;

}

/* ======================================
   INFORMATION PANEL
====================================== */

.contact-information {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 3rem;

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark));

    color: var(--white);

    border-radius: var(--radius-xl);

    position: relative;

    overflow: hidden;

}

/* Decorative Circle */

.contact-information::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:

        rgba(255,255,255,.08);

    top: -120px;

    right: -120px;

}

/* ======================================
   TAG
====================================== */

.contact-information .section-tag {

    background:

        rgba(255,255,255,.15);

    color: var(--white);

    backdrop-filter: blur(8px);

    margin-bottom: 1.5rem;

}

.contact-information .section-tag i {

    color: var(--white);

}

/* ======================================
   HEADING
====================================== */

.contact-information h2 {

    color: var(--white);

    margin-bottom: 1.25rem;

}

/* ======================================
   TEXT
====================================== */

.contact-information>p {

    color:

        rgba(255,255,255,.9);

    margin-bottom: 2.5rem;

}

/* ======================================
   CONTACT METHODS
====================================== */

.contact-methods {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

    margin-bottom: 2.5rem;

}

/* ======================================
   METHOD
====================================== */

.contact-method {

    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1.25rem;

    background:

        rgba(255,255,255,.10);

    border-radius: var(--radius);

    backdrop-filter: blur(10px);

    transition: var(--transition);

}

.contact-method:hover {

    transform: translateX(8px);

    background:

        rgba(255,255,255,.18);

}

/* ======================================
   ICON
====================================== */

.contact-method i {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:

        rgba(255,255,255,.20);

    color: var(--white);

    font-size: 1.2rem;

    flex-shrink: 0;

}

/* ======================================
   METHOD TEXT
====================================== */

.contact-method h3 {

    color: var(--white);

    margin-bottom: .35rem;

    font-size: 1.05rem;

}

.contact-method p {

    color:

        rgba(255,255,255,.85);

    margin-bottom: 0;

}

/* ======================================
   NOTE
====================================== */

.contact-note {

    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1.5rem;

    margin-top: auto;

    border-radius: var(--radius);

    background:

        rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

}

.contact-note i {

    color: #FFD166;

    font-size: 1.5rem;

    margin-top: .2rem;

}

.contact-note p {

    margin-bottom: 0;

    color:

        rgba(255,255,255,.95);

}

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

.contact-form-wrapper {

    padding: 3rem;

    background: var(--white);

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .contact-form-grid{

        grid-template-columns:1fr;

    }

}

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

@media (max-width:768px){

    .contact-information,

    .contact-form-wrapper{

        padding:2rem;

    }

    .contact-information{

        text-align:center;

    }

    .contact-method{

        text-align:left;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .contact-information,

    .contact-form-wrapper{

        padding:1.5rem;

    }

    .contact-method{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .contact-note{

        flex-direction:column;

        text-align:center;

    }

}

/* ======================================================
   CONTACT FORM
   Part 5B
   Form Controls
====================================================== */

/* ======================================
   FORM
====================================== */

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 1.75rem;

}

/* ======================================
   TWO COLUMN ROWS
====================================== */

.form-row {

    display: grid;

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

    gap: 1.5rem;

}

/* ======================================
   GROUP
====================================== */

.form-group {

    display: flex;

    flex-direction: column;

    gap: .65rem;

}

/* ======================================
   LABELS
====================================== */

.form-group label {

    display: flex;

    align-items: center;

    gap: .5rem;

    font-weight: 700;

    color: var(--heading);

    font-size: .95rem;

}

.form-group label i {

    color: var(--primary);

    width: 18px;

    text-align: center;

}

/* ======================================
   INPUTS
====================================== */

.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 1rem 1.1rem;

    font-size: 1rem;

    font-family: inherit;

    color: var(--text);

    background: var(--white);

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

    border-radius: var(--radius);

    transition:

        border-color .25s ease,

        box-shadow .25s ease,

        background .25s ease,

        transform .25s ease;

}

/* ======================================
   PLACEHOLDER
====================================== */

.form-group input::placeholder,

.form-group textarea::placeholder {

    color: var(--gray-500);

}

/* ======================================
   FOCUS
====================================== */

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary);

    background: #fcfffd;

    transform: translateY(-1px);

    box-shadow:

        0 0 0 4px rgba(47,133,90,.15);

}

/* ======================================
   TEXTAREA
====================================== */

.form-group textarea {

    min-height: 180px;

    resize: vertical;

    line-height: 1.7;

}

/* ======================================
   SELECT
====================================== */

.form-group select {

    appearance: none;

    cursor: pointer;

    background-image:

        linear-gradient(45deg, transparent 50%, var(--primary) 50%),

        linear-gradient(135deg, var(--primary) 50%, transparent 50%);

    background-position:

        calc(100% - 22px) calc(50% - 3px),

        calc(100% - 16px) calc(50% - 3px);

    background-size:

        6px 6px,

        6px 6px;

    background-repeat: no-repeat;

    padding-right: 3rem;

}

/* ======================================
   HELP TEXT
====================================== */

.form-help {

    font-size: .9rem;

    color: var(--gray-500);

}

/* ======================================
   REQUIRED
====================================== */

.required {

    color: var(--danger);

    margin-left: .2rem;

}

/* ======================================
   CHECKBOXES
====================================== */

.checkbox-group {

    display: flex;

    align-items: flex-start;

    gap: .85rem;

}

.checkbox-group input[type="checkbox"] {

    width: 20px;

    height: 20px;

    accent-color: var(--primary);

    margin-top: .2rem;

    flex-shrink: 0;

}

.checkbox-group label {

    font-weight: 500;

    cursor: pointer;

    line-height: 1.6;

}

/* ======================================
   SUBMIT BUTTON
====================================== */

.contact-form button[type="submit"] {

    align-self: flex-start;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .75rem;

    min-width: 220px;

    padding: 1rem 2rem;

    border: none;

    border-radius: var(--radius-pill);

    background: var(--primary);

    color: var(--white);

    font-size: 1rem;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);

}

.contact-form button[type="submit"]:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow-lg);

}

.contact-form button[type="submit"]:active {

    transform: translateY(0);

}

/* ======================================
   BUTTON ICON
====================================== */

.contact-form button i {

    transition: transform .3s ease;

}

.contact-form button:hover i {

    transform: translateX(5px);

}

/* ======================================
   VALIDATION
====================================== */

.form-group input:invalid:not(:placeholder-shown),

.form-group textarea:invalid:not(:placeholder-shown),

.form-group select:invalid {

    border-color: var(--danger);

}

.form-group input:valid,

.form-group textarea:valid,

.form-group select:valid {

    border-color: var(--success);

}

/* ======================================
   DISABLED
====================================== */

.contact-form button:disabled {

    opacity: .65;

    cursor: not-allowed;

    transform: none;

}

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

@media (max-width:768px){

    .form-row{

        grid-template-columns:1fr;

    }

    .contact-form button[type="submit"]{

        width:100%;

        justify-content:center;

    }

}

/* ======================================================
   CONTACT FORM
   Part 5C
   Alerts • Loading • Final Polish
====================================================== */

/* ======================================
   SUCCESS MESSAGE
====================================== */

.form-success {

    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1.25rem 1.5rem;

    border-radius: var(--radius);

    background: #ecfdf3;

    border-left: 5px solid var(--success);

    color: #166534;

    margin-bottom: 2rem;

}

.form-success i {

    font-size: 1.5rem;

    color: var(--success);

    flex-shrink: 0;

}

.form-success h3 {

    margin-bottom: .35rem;

    color: #166534;

}

.form-success p {

    margin-bottom: 0;

    color: #166534;

}

/* ======================================
   ERROR MESSAGE
====================================== */

.form-error {

    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1.25rem 1.5rem;

    border-radius: var(--radius);

    background: #fef2f2;

    border-left: 5px solid var(--danger);

    color: #991b1b;

    margin-bottom: 2rem;

}

.form-error i {

    font-size: 1.5rem;

    color: var(--danger);

    flex-shrink: 0;

}

.form-error h3 {

    margin-bottom: .35rem;

    color: #991b1b;

}

.form-error p {

    margin-bottom: 0;

    color: #991b1b;

}

/* ======================================
   FIELD ERROR
====================================== */

.field-error {

    color: var(--danger);

    font-size: .875rem;

    font-weight: 600;

    margin-top: .35rem;

}

/* ======================================
   LOADING BUTTON
====================================== */

.contact-form button.loading {

    pointer-events: none;

    opacity: .85;

}

.contact-form button.loading i {

    animation: spin 1s linear infinite;

}

@keyframes spin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/* ======================================
   INPUT TRANSITIONS
====================================== */

.form-group {

    position: relative;

}

.form-group input,

.form-group textarea,

.form-group select {

    transition:

        border-color .25s ease,

        box-shadow .25s ease,

        transform .25s ease,

        background-color .25s ease;

}

/* ======================================
   INPUT HOVER
====================================== */

.form-group input:hover,

.form-group textarea:hover,

.form-group select:hover {

    border-color: var(--gray-400);

}

/* ======================================
   AUTOFILL FIX
====================================== */

input:-webkit-autofill,

textarea:-webkit-autofill,

select:-webkit-autofill {

    -webkit-box-shadow:

        0 0 0 1000px #ffffff inset;

    -webkit-text-fill-color: var(--text);

    transition: background-color 9999s;

}

/* ======================================
   PLACEHOLDER ANIMATION
====================================== */

.form-group input::placeholder,

.form-group textarea::placeholder {

    transition: opacity .25s ease;

}

.form-group input:focus::placeholder,

.form-group textarea:focus::placeholder {

    opacity: .45;

}

/* ======================================
   FORM ANIMATION
====================================== */

.contact-form-wrapper {

    animation: formFade .8s ease;

}

@keyframes formFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ======================================
   CONTACT INFO ANIMATION
====================================== */

.contact-information {

    animation: infoFade .8s ease;

}

@keyframes infoFade {

    from {

        opacity: 0;

        transform: translateX(-30px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

/* ======================================
   CONTACT METHOD HOVER
====================================== */

.contact-method i {

    transition:

        transform .3s ease,

        background-color .3s ease;

}

.contact-method:hover i {

    transform: scale(1.08);

    background:

        rgba(255,255,255,.28);

}

/* ======================================
   SUBMIT BUTTON SHINE
====================================== */

.contact-form button[type="submit"] {

    position: relative;

    overflow: hidden;

}

.contact-form button[type="submit"]::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.35),
            transparent);

    transform: translateX(-120%);

}

.contact-form button[type="submit"]:hover::before {

    transform: translateX(120%);

    transition: transform .8s ease;

}

/* ======================================
   INVALID SHAKE
====================================== */

.form-group.invalid {

    animation: shake .35s ease;

}

@keyframes shake {

    0%,100% {

        transform: translateX(0);

    }

    20% {

        transform: translateX(-5px);

    }

    40% {

        transform: translateX(5px);

    }

    60% {

        transform: translateX(-4px);

    }

    80% {

        transform: translateX(4px);

    }

}

/* ======================================
   REDUCED MOTION
====================================== */

@media (prefers-reduced-motion: reduce) {

    .contact-form-wrapper,

    .contact-information,

    .contact-method,

    .contact-form button,

    .form-group,

    .form-success,

    .form-error {

        animation: none !important;

        transition: none !important;

    }

}


/* ======================================================
   FAQ
====================================================== */

.faq-section{

    background:linear-gradient(
        180deg,
        #f8fcf9 0%,
        #ffffff 100%);

}

.faq-container{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:var(--white);

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

    border-radius:var(--radius-lg);

    margin-bottom:1.5rem;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.faq-item:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.faq-item[open]{

    border-color:var(--primary);

    box-shadow:0 15px 40px rgba(47,133,90,.12);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:1rem;

    padding:1.5rem 2rem;

    font-size:1.15rem;

    font-weight:700;

    color:var(--heading);

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::marker{

    display:none;

}

.faq-item summary::after{

    content:"\f078";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    color:var(--primary);

    transition:.35s ease;

}

.faq-item[open] summary::after{

    transform:rotate(180deg);

}

.faq-item p{

    margin:0;

    padding:0 2rem 2rem;

    color:var(--gray-600);

    line-height:1.8;

}

.faq-item[open] summary{

    background:rgba(47,133,90,.04);

}

.faq-item::before{

    content:"";

    display:block;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s ease;

}

.faq-item[open]::before{

    transform:scaleX(1);

}

@media (max-width:768px){

    .faq-item summary{

        padding:1.25rem 1.5rem;

    }

    .faq-item p{

        padding:0 1.5rem 1.5rem;

    }

}

@media (max-width:480px){

    .faq-item summary{

        padding:1rem 1.25rem;

        font-size:1rem;

    }

    .faq-item p{

        padding:0 1.25rem 1.25rem;

    }

}


/* ======================================================
   PARTNERSHIPS
   Part 7
====================================================== */

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

.partnerships {

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcf9 100%);

}

/* ======================================
   GRID
====================================== */

.partnership-grid {

    display: grid;

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

    gap: 2rem;

    margin-top: 3rem;

}

/* ======================================
   CARD
====================================== */

.partnership-card {

    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    padding: 2.5rem;

    background: var(--white);

    border-radius: var(--radius-lg);

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

    box-shadow: var(--shadow);

    overflow: hidden;

    transition: var(--transition);

}

.partnership-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

    border-color: var(--primary);

}

/* ======================================
   ACCENT BAR
====================================== */

.partnership-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}

.partnership-card:hover::before {

    transform: scaleX(1);

}

/* ======================================
   ICON
====================================== */

.partnership-card .card-icon {

    width: 80px;

    height: 80px;

    display: grid;

    place-items: center;

    margin-bottom: 1.75rem;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 2rem;

    transition: var(--transition);

}

.partnership-card:hover .card-icon {

    transform: rotate(-8deg) scale(1.08);

}

/* ======================================
   TEXT
====================================== */

.partnership-card h3 {

    margin-bottom: 1rem;

}

.partnership-card p {

    color: var(--gray-600);

    margin-bottom: 2rem;

    flex-grow: 1;

}

/* ======================================
   FEATURE LIST
====================================== */

.partnership-card ul {

    display: flex;

    flex-direction: column;

    gap: .85rem;

    margin: 0 0 2rem;

    padding: 0;

}

.partnership-card li {

    display: flex;

    align-items: center;

    gap: .75rem;

    color: var(--gray-700);

    font-weight: 500;

}

.partnership-card li i {

    color: var(--primary);

    font-size: .95rem;

}

/* ======================================
   BUTTON
====================================== */

.partnership-card .btn {

    margin-top: auto;

    align-self: flex-start;

}

/* ======================================
   SHIMMER EFFECT
====================================== */

.partnership-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent);

    transform: translateX(-120%);

    pointer-events: none;

}

.partnership-card:hover::after {

    transform: translateX(120%);

    transition: transform .8s ease;

}

/* ======================================
   CALL TO ACTION
====================================== */

.partnership-cta {

    margin-top: 4rem;

    padding: 3rem;

    text-align: center;

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark));

    border-radius: var(--radius-xl);

    color: var(--white);

    box-shadow: var(--shadow-lg);

}

.partnership-cta h2,

.partnership-cta h3 {

    color: var(--white);

    margin-bottom: 1rem;

}

.partnership-cta p {

    max-width: 700px;

    margin: 0 auto 2rem;

    color: rgba(255,255,255,.92);

}

.partnership-cta .btn {

    background: var(--white);

    color: var(--primary);

}

.partnership-cta .btn:hover {

    background: var(--off-white);

}

/* ======================================
   ENTRANCE ANIMATION
====================================== */

.partnership-card {

    animation: partnershipFade .7s ease both;

}

.partnership-card:nth-child(2) {

    animation-delay: .12s;

}

.partnership-card:nth-child(3) {

    animation-delay: .24s;

}

@keyframes partnershipFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .partnership-grid{

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

    }

}

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

@media (max-width:768px){

    .partnership-grid{

        grid-template-columns:1fr;

    }

    .partnership-card{

        text-align:center;

        padding:2rem;

    }

    .partnership-card .card-icon{

        margin-inline:auto;

    }

    .partnership-card li{

        justify-content:center;

    }

    .partnership-card .btn{

        align-self:center;

    }

    .partnership-cta{

        padding:2rem;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .partnership-card{

        padding:1.75rem;

    }

    .partnership-cta{

        padding:1.75rem;

    }

}

/* ======================================
   REDUCED MOTION
====================================== */

@media (prefers-reduced-motion:reduce){

    .partnership-card,

    .partnership-card .card-icon,

    .partnership-cta{

        animation:none !important;

        transition:none !important;

    }

}


/* ======================================================
   JOIN OUR COMMUNITY
   Part 8
====================================================== */

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

.community-section {

    background:
        linear-gradient(
            180deg,
            #f8fcf9 0%,
            #ffffff 100%);

    position: relative;

    overflow: hidden;

}

.community-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -250px;

    right: -250px;

    border-radius: 50%;

    background: rgba(47,133,90,.04);

}

/* ======================================
   LAYOUT
====================================== */

.community-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: center;

    position: relative;

    z-index: 2;

}

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

.community-content h2 {

    margin-bottom: 1.25rem;

}

.community-content p {

    color: var(--gray-600);

    margin-bottom: 2rem;

    max-width: 650px;

}

/* ======================================
   COMMUNITY FEATURES
====================================== */

.community-features {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    margin-bottom: 2.5rem;

}

.community-feature {

    display: flex;

    align-items: center;

    gap: 1rem;

}

.community-feature i {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 1.2rem;

    flex-shrink: 0;

}

.community-feature h3 {

    margin-bottom: .25rem;

    font-size: 1rem;

}

.community-feature p {

    margin-bottom: 0;

    color: var(--gray-600);

    font-size: .95rem;

}

/* ======================================
   SOCIAL GRID
====================================== */

.social-grid {

    display: grid;

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

    gap: 1.5rem;

}

/* ======================================
   SOCIAL CARD
====================================== */

.social-card {

    position: relative;

    padding: 2rem;

    background: var(--white);

    border-radius: var(--radius-lg);

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

    box-shadow: var(--shadow);

    transition: var(--transition);

    overflow: hidden;

}

.social-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: var(--primary);

}

.social-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}

.social-card:hover::before {

    transform: scaleX(1);

}

/* ======================================
   ICON
====================================== */

.social-card .card-icon {

    width: 72px;

    height: 72px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 1.8rem;

    margin-bottom: 1.5rem;

    transition: var(--transition);

}

.social-card:hover .card-icon {

    transform: rotate(-8deg) scale(1.08);

}

/* ======================================
   TEXT
====================================== */

.social-card h3 {

    margin-bottom: .75rem;

}

.social-card p {

    color: var(--gray-600);

    margin-bottom: 1.5rem;

}

.social-card .btn {

    margin-top: auto;

}

/* ======================================
   FEATURED CARD
====================================== */

.social-card.featured {

    grid-column: span 2;

    display: flex;

    align-items: center;

    gap: 2rem;

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark));

    color: var(--white);

}

.social-card.featured h3,

.social-card.featured p {

    color: var(--white);

}

.social-card.featured .card-icon {

    background: rgba(255,255,255,.18);

    color: var(--white);

    margin-bottom: 0;

}

.social-card.featured .btn {

    background: var(--white);

    color: var(--primary);

}

.social-card.featured .btn:hover {

    background: var(--off-white);

}

/* ======================================
   STATS
====================================== */

.community-stats {

    display: grid;

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

    gap: 1rem;

    margin-top: 3rem;

}

.community-stat {

    text-align: center;

    padding: 1.5rem;

    background: var(--white);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

}

.community-stat h3 {

    color: var(--primary);

    margin-bottom: .35rem;

}

.community-stat p {

    margin-bottom: 0;

    color: var(--gray-600);

}

/* ======================================
   ENTRANCE ANIMATION
====================================== */

.social-card {

    animation: socialFade .7s ease both;

}

.social-card:nth-child(2) {

    animation-delay: .12s;

}

.social-card:nth-child(3) {

    animation-delay: .24s;

}

.social-card:nth-child(4) {

    animation-delay: .36s;

}

@keyframes socialFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .community-grid{

        grid-template-columns:1fr;

        gap:3rem;

    }

}

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

@media (max-width:768px){

    .community-content{

        text-align:center;

    }

    .community-feature{

        align-items:flex-start;

        text-align:left;

    }

    .social-grid{

        grid-template-columns:1fr;

    }

    .social-card.featured{

        grid-column:span 1;

        flex-direction:column;

        text-align:center;

    }

    .community-stats{

        grid-template-columns:1fr;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .social-card{

        padding:1.75rem;

    }

}

/* ======================================================
   NEWSLETTER
====================================================== */

.newsletter-section{
    background:linear-gradient(180deg,#f8fcf9 0%,#ffffff 100%);
    padding:6rem 0;
}

.newsletter-grid{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(360px,.9fr);
    gap:5rem;
    align-items:start;
}

.newsletter-content h2{
    margin:.75rem 0 1.25rem;
    max-width:14ch;
}

.newsletter-content p{
    color:var(--gray-600);
    font-size:1.05rem;
    line-height:1.8;
    max-width:700px;
}

.newsletter-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
    margin-top:2.5rem;
}

.newsletter-benefits div{
    display:flex;
    align-items:center;
    gap:.85rem;
    padding:1.15rem 1.25rem;
    background:#fff;
    border:1px solid var(--gray-200);
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.newsletter-benefits div:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.newsletter-benefits i{
    color:var(--primary);
    font-size:1rem;
}

.newsletter-form-card{
    background:#fff;
    padding:3rem;
    margin-top:1rem;
    border:1px solid var(--gray-200);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-lg);
}

.newsletter-form-card h3{
    margin-bottom:.75rem;
}

.newsletter-form-card>p{
    color:var(--gray-600);
    margin-bottom:2rem;
}

.newsletter-form{
    display:flex;
    flex-direction:column;
    gap:1.5rem;
}

.newsletter-form .form-group{
    display:flex;
    flex-direction:column;
    gap:.5rem;
}

.newsletter-form label{
    font-weight:700;
}

.newsletter-form input{
    width:100%;
    padding:1rem;
    border:2px solid var(--gray-200);
    border-radius:var(--radius);
    transition:var(--transition);
}

.newsletter-form input:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(47,133,90,.15);
}

.newsletter-privacy{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
    margin-top:1.5rem;
    color:var(--gray-500);
    font-size:.9rem;
    text-align:center;
}

.newsletter-privacy i{
    color:var(--primary);
}

@media (max-width:900px){

.newsletter-grid{
    grid-template-columns:1fr;
    gap:3rem;
}

.newsletter-content{
    text-align:center;
}

.newsletter-benefits{
    grid-template-columns:1fr;
}

.newsletter-form-card{
    padding:2rem;
    margin-top:0;
}

}

@media (max-width:600px){

.newsletter-section{
    padding:4rem 0;
}

.newsletter-form-card{
    padding:1.5rem;
}

   .newsletter-section{

    padding-bottom:2rem;

}

}

/* ======================================================
   OUR PROMISE
   Part 10
====================================================== */

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

.promise-section {

    position: relative;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fcf9 100%);
    padding-top:2rem;

}

.promise-section::before {

    content: "";

    position: absolute;

    top: -220px;

    left: -220px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: rgba(47,133,90,.05);

}

.promise-section::after {

    content: "";

    position: absolute;

    bottom: -180px;

    right: -180px;

    width: 340px;

    height: 340px;

    border-radius: 50%;

    background: rgba(47,133,90,.04);

}

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

.promise-wrapper {

    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: 0 auto;

}

/* ======================================
   CARD
====================================== */

.promise-card {

    position: relative;

    padding: 4rem;

    background: var(--white);

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);

    overflow: hidden;

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

}

/* ======================================
   TOP ACCENT
====================================== */

.promise-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 6px;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary));

}

/* ======================================
   HEADING
====================================== */

.promise-card h2 {

    text-align: center;

    margin-bottom: 1.25rem;

}

.promise-card>p {

    max-width: 760px;

    margin: 0 auto 3rem;

    text-align: center;

    color: var(--gray-600);

}

/* ======================================
   GRID
====================================== */

.promise-grid {

    display: grid;

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

    gap: 2rem;

}

/* ======================================
   ITEM
====================================== */

.promise-item {

    text-align: center;

    padding: 2rem;

    border-radius: var(--radius-lg);

    transition: var(--transition);

}

.promise-item:hover {

    transform: translateY(-8px);

    background: var(--gray-50);

}

/* ======================================
   ICON
====================================== */

.promise-item i {

    width: 82px;

    height: 82px;

    display: inline-grid;

    place-items: center;

    margin-bottom: 1.5rem;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 2rem;

    transition: var(--transition);

}

.promise-item:hover i {

    transform: rotate(-8deg) scale(1.08);

}

/* ======================================
   TEXT
====================================== */

.promise-item h3 {

    margin-bottom: .9rem;

}

.promise-item p {

    margin-bottom: 0;

    color: var(--gray-600);

}

/* ======================================
   PROMISE QUOTE
====================================== */

.promise-quote {

    margin-top: 3rem;

    padding: 2.5rem;

    border-radius: var(--radius-lg);

    background: var(--primary-light);

    text-align: center;

}

.promise-quote blockquote {

    margin: 0;

    font-size: 1.25rem;

    font-style: italic;

    color: var(--heading);

    line-height: 1.8;

}

.promise-quote cite {

    display: block;

    margin-top: 1rem;

    font-style: normal;

    font-weight: 700;

    color: var(--primary);

}

/* ======================================
   CALL TO ACTION
====================================== */

.promise-actions {

    display: flex;

    justify-content: center;

    gap: 1rem;

    margin-top: 3rem;

    flex-wrap: wrap;

}

/* ======================================
   SHIMMER
====================================== */

.promise-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.35),
            transparent);

    transform: translateX(-120%);

    pointer-events: none;

}

.promise-card:hover::after {

    transform: translateX(120%);

    transition: transform .9s ease;

}

/* ======================================
   ENTRANCE
====================================== */

.promise-item {

    animation: promiseFade .7s ease both;

}

.promise-item:nth-child(2) {

    animation-delay: .12s;

}

.promise-item:nth-child(3) {

    animation-delay: .24s;

}

@keyframes promiseFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ======================================
   TABLET
====================================== */

@media (max-width:992px){

    .promise-grid{

        grid-template-columns:1fr;

    }

}

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

@media (max-width:768px){

    .promise-card{

        padding:2.5rem;

    }

    .promise-quote{

        padding:2rem;

    }

    .promise-quote blockquote{

        font-size:1.15rem;

    }

    .promise-actions{

        flex-direction:column;

        align-items:center;

    }

    .promise-actions .btn{

        width:100%;

        max-width:320px;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .promise-card{

        padding:2rem;

    }

    .promise-item{

        padding:1.5rem;

    }

    .promise-item i{

        width:70px;

        height:70px;

        font-size:1.75rem;

    }

}

/* ======================================
   REDUCED MOTION
====================================== */

@media (prefers-reduced-motion:reduce){

    .promise-item,

    .promise-card,

    .promise-item i{

        animation:none !important;

        transition:none !important;

    }

}


/* ======================================
   FOOTER
====================================== */

.site-footer {

    position: relative;

    overflow: hidden;

    padding: 4rem 0 2rem;

    background: linear-gradient(
        135deg,
        #183b2a 0%,
        #10281d 100%);

    color: rgba(255,255,255,.92);

}

.site-footer::before {

    content: "";

    position: absolute;

    top: -220px;

    right: -220px;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

}

.site-footer::after {

    content: "";

    position: absolute;

    bottom: -160px;

    left: -160px;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(255,255,255,.03);

}

/* ======================================
   CONTAINER
====================================== */

.site-footer .container {

    position: relative;

    z-index: 2;

    padding-inline: clamp(2rem,4vw,4rem);

}

/* ======================================
   GRID
====================================== */

.footer-grid {

    display: grid;

    grid-template-columns: minmax(300px, 2.1fr) 1fr 1fr 1fr;

    gap: 4rem;

    align-items: start;

    padding-bottom: 2rem;

}

/* ======================================
   BRAND
====================================== */

.footer-brand img {

    width: 72px;

    height: 72px;

    display: block;

    margin-bottom: 1rem;

}

.footer-brand p {

    max-width: 380px;

    line-height: 1.75;

    margin-bottom: 2rem;

}

.footer-brand h3 {

    margin: 0 0 1rem;

    font-size: 1.9rem;

    line-height: 1.2;

}

/* ======================================
   SOCIAL
====================================== */

.footer-social {

    display: flex;

    gap: .9rem;

    margin-top: 1.5rem;

}

.footer-social a {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: var(--white);

    transition: var(--transition);

}

.footer-social a:hover {

    background: var(--primary);

    transform: translateY(-4px);

}

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

.footer-column h3 {

    color: var(--white);

    margin-bottom: 1.5rem;

    font-size: 1.5rem;

}

/* ======================================
   LINKS
====================================== */

.footer-links,
.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li,
.footer-contact li {

    margin-bottom: 1.15rem;

}

.footer-links a {

    position: relative;

    transition: color .3s ease;

}

.footer-links a:hover {

    color: var(--white);

}

/* ======================================
   CONTACT
====================================== */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 1rem;

}

.footer-contact div {

    display: flex;

    align-items: flex-start;

    gap: .85rem;

}

.footer-contact i {

    color: var(--secondary);

    width: 20px;

    text-align: center;

    margin-top: .15rem;

}

.footer-contact p,

.footer-contact a {

    color: rgba(255,255,255,.82);

    margin: 0;

}

.footer-contact li {

    display: flex;

    align-items: center;

    gap: .75rem;

}

.footer-contact i {

    width: 22px;

    margin-top: 0;

    flex-shrink: 0;

}

/* ======================================
   DIVIDER
====================================== */

.footer-divider {

    height: 1px;

    background: rgba(255,255,255,.12);

    margin: 2.5rem 0;

}

/* ======================================
   BOTTOM
====================================== */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    row-gap: 1rem;

}

.footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.72);

}

.footer-bottom-links {

    display: flex;

    gap: 1.5rem;

    flex-wrap: wrap;

}

.footer-bottom-links a {

    color: rgba(255,255,255,.72);

    transition: var(--transition);

}

.footer-bottom-links a:hover {

    color: var(--white);

}

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

.back-to-top {

    position: absolute;

    right: 2rem;

    top: -26px;

    width: 56px;

    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    box-shadow: var(--shadow-lg);

    transition: var(--transition);

}

.back-to-top:hover {

    transform: translateY(-4px);

    background: var(--primary-dark);

}

/* ======================================
   TABLET
====================================== */

@media (max-width: 992px) {

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 3rem;

    }

}

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

@media (max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-contact div{

        justify-content:center;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        justify-content:center;

    }

    .back-to-top{

        right:50%;

        transform:translateX(50%);

    }

    .back-to-top:hover{

        transform:translateX(50%) translateY(-4px);

    }

}

@media (max-width: 640px) {

    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-brand {

        margin-inline: auto;

    }

    .footer-social {

        justify-content: center;

    }

    .footer-contact li {

        justify-content: center;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    .footer-grid{

        gap:2rem;

    }

    .footer-bottom-links{

        flex-direction:column;

        gap:.75rem;

    }

}

/* ======================================
   REDUCED MOTION
====================================== */

@media (prefers-reduced-motion:reduce){

    .footer-social a,

    .footer-links a,

    .back-to-top{

        transition:none !important;

    }

}

/* ======================================================
   FINAL UTILITIES & OPTIMIZATIONS
   Part 12
====================================================== */

/* ======================================
   SECTION SPACING
====================================== */

.contact-options,
.custom-resources,
.contact-form-section,
.faq-section,
.partnerships,
.community-section,
.newsletter-section,
.promise-section {

    scroll-margin-top: 110px;

}

/* ======================================
   IMAGE DEFAULTS
====================================== */

img {

    max-width: 100%;

    height: auto;

    display: block;

}

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

iframe,
video,
embed,
object {

    max-width: 100%;

    border: 0;

}

/* ======================================
   TEXT SELECTION
====================================== */

::selection {

    background: var(--primary);

    color: var(--white);

}

::-moz-selection {

    background: var(--primary);

    color: var(--white);

}

/* ======================================
   SMOOTH SCROLL
====================================== */

html {

    scroll-behavior: smooth;

}

/* ======================================
   ANCHOR OFFSET
====================================== */

[id] {

    scroll-margin-top: 100px;

}

/* ======================================
   UTILITIES
====================================== */

.text-center {

    text-align: center;

}

.text-left {

    text-align: left;

}

.text-right {

    text-align: right;

}

.hidden {

    display: none !important;

}

.visually-hidden {

    position: absolute !important;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}

.w-100 {

    width: 100%;

}

.mt-0 {

    margin-top: 0 !important;

}

.mb-0 {

    margin-bottom: 0 !important;

}

.mt-1 {

    margin-top: 1rem;

}

.mt-2 {

    margin-top: 2rem;

}

.mt-3 {

    margin-top: 3rem;

}

.mb-1 {

    margin-bottom: 1rem;

}

.mb-2 {

    margin-bottom: 2rem;

}

.mb-3 {

    margin-bottom: 3rem;

}

/* ======================================
   LOADING STATE
====================================== */

.loading {

    pointer-events: none;

    opacity: .7;

}

/* ======================================
   DISABLED ELEMENTS
====================================== */

:disabled {

    cursor: not-allowed;

}

/* ======================================
   ACCESSIBILITY
====================================== */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }

    *,

    *::before,

    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;

    }

}

/* ======================================
   LARGE DESKTOPS
====================================== */

@media (min-width:1600px){

    .container{

        max-width:1500px;

    }

    .section{

        padding:7rem 0;

    }

}

/* ======================================
   LAPTOPS
====================================== */

@media (max-width:1200px){

    .container{

        width:min(94%,1200px);

    }

}

/* ======================================
   TABLETS
====================================== */

@media (max-width:992px){

    .section{

        padding:5rem 0;

    }

}

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

@media (max-width:768px){

    .section{

        padding:4rem 0;

    }

    h1{

        font-size:clamp(2.2rem,7vw,3rem);

    }

    h2{

        font-size:clamp(1.8rem,5vw,2.5rem);

    }

    h3{

        font-size:1.2rem;

    }

    p{

        font-size:1rem;

    }

}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

    body{

        font-size:.95rem;

    }

    .btn{

        width:100%;

        justify-content:center;

    }

}

/* ======================================
   PRINT
====================================== */

@media print{

    *{

        background:transparent !important;

        color:#000 !important;

        box-shadow:none !important;

        text-shadow:none !important;

        animation:none !important;

        transition:none !important;

    }

    .mobile-menu,

    .hero-buttons,

    .scroll-indicator,

    .newsletter-form,

    .contact-form,

    .footer-social,

    .back-to-top,

    button{

        display:none !important;

    }

    a{

        text-decoration:none;

        color:#000 !important;

    }

    .contact-card,

    .partnership-card,

    .promise-card,

    .social-card,

    .newsletter-form-card{

        border:1px solid #ccc;

        break-inside:avoid;

    }

    .site-footer{

        background:#fff !important;

        color:#000 !important;

        padding-top: 5rem;

    }

}

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

.site-header {

    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);

}

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

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

    min-height: 100px;

    padding: 0 1rem;

}

/* ==========================================
   LOGO
========================================== */

.logo {

    display: flex;

    align-items: center;

    gap: 1rem;

    flex-shrink: 0;

    text-decoration: none;

    min-width: 280px;

}

.logo img {

    width: 64px;

    height: 64px;

    object-fit: contain;

}

.logo-text {

    display: flex;

    flex-direction: column;

}

.logo-text h1 {

    margin: 0;

    font-size: 1.6rem;

    font-family: var(--font-heading);

    font-weight: 800;

    line-height: 1.1;

    color: var(--primary);

}

.logo-text span {

    margin-top: .15rem;

    color: var(--gray-600);

    font-size: 1rem;

}

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

.main-nav ul {

    display: flex;

    align-items: center;

    gap:2.25rem;

    list-style: none;

    margin: 0;

    padding: 0;

}

.main-nav a {

    color: var(--text);

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.main-nav a:hover {

    color: var(--primary);

}

.main-nav a.active{

    color:var(--primary);

    font-weight:700;

}

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

.header-actions {

    display: flex;

    align-items: center;

    gap: .75rem;

    flex-shrink: 0;

}

.search-toggle {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--gray-700);

    text-decoration: none;

    transition: var(--transition);

}

.search-toggle:hover {

    background: var(--primary-light);

    color: var(--primary);

}

/* ======================================================
   MOBILE BUTTON
====================================================== */

.mobile-menu {

    display: none;

    border: 0;

    background: transparent;

    color: var(--gray-700);

    font-size: 1.5rem;

    cursor: pointer;

}

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

@media (max-width: 992px) {

    .mobile-menu {

        display: block;

    }

    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: #ffffff;

        display: none;

        border-top: 1px solid #e5e7eb;

        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        
        flex: 1;

    }

    .main-nav.active {

        display: block;

    }

   .main-nav ul {

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    list-style: none;

    margin: 0;

    padding: 1rem 0;

}

    .main-nav li {

        width: 100%;

    }

   .main-nav a {

    display: block;

    width: 100%;

    padding: 1rem 1.5rem;

    font-family: var(--font-heading);

    font-size: 1rem;

    font-weight: 700;

    color: var(--gray-700);

    text-decoration: none;

    transition: var(--transition);

}

.main-nav a:hover {

    color: var(--primary);

}

.main-nav a.active {

    color: var(--primary);

}

}

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

@media (max-width: 992px) {

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 3rem;

    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

}

@media (max-width: 640px) {

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 2.5rem;

        text-align: center;

    }

    .footer-brand {

        margin: 0 auto;

    }

    .footer-social {

        justify-content: center;

    }

    .footer-contact li {

        justify-content: center;

    }

    .footer-bottom-links {

        justify-content: center;

    }

}
/* ======================================
   END OF STYLESHEET
====================================== */
