:root {
    /* Brand Colors */
    --color-primary-green: #86c440;
    --color-primary-blue: #2fa1d7;
    --color-accent-pink: #e41a7d;

    /* Functional Colors */
    --color-bg-soft: #f9fbfb;
    --color-text-main: #2d3436;
    --color-text-muted: #636e72;
    --color-white: #ffffff;

    /* Design Tokens */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    --font-size-base: 18px;
    --font-size-h1: clamp(2.8rem, 8vw, 4.5rem);
    --font-size-h2: clamp(2rem, 5vw, 3rem);
    --font-size-h3: clamp(1.6rem, 4vw, 2.2rem);
    --font-size-p: 1.15rem;
    --font-size-tag: 1.1rem;
    --border-radius: 16px;
    --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-standard);
    height: 80px;
    display: flex;
    align-items: center;
}

header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-standard);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--color-primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary-blue);
    transition: var(--transition-standard);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mission Pop */
.mission-highlight {
    background: linear-gradient(135deg, rgba(47, 161, 215, 0.1) 0%, rgba(134, 196, 64, 0.1) 100%);
    border: 3px solid var(--color-primary-blue);
    padding: 2.5rem 3.5rem;
    border-radius: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 2.5rem 0;
    box-shadow: 0 15px 40px rgba(47, 161, 215, 0.15);
    text-align: center;
    line-height: 1.4;
    transition: var(--transition-standard);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.mission-highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(47, 161, 215, 0.2);
}



.nav-cta {
    background-color: var(--color-accent-pink);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-standard);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 26, 125, 0.3);
}

.header-social {
    display: flex;
    gap: 1.2rem;
    margin: 0 1.5rem;
}

.header-social a {
    color: var(--color-text-main);
    font-size: 1.2rem;
    transition: var(--transition-standard);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-social a:hover {
    color: var(--color-primary-blue);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--color-text-main);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tagline {
    color: var(--color-primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: var(--font-size-tag);
    margin-bottom: 1.5rem;
    display: block;
}

h1.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-primary-blue);
    text-shadow: none;
}

h1.hero-title span {
    color: var(--color-primary-green);
    font-weight: 700;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 3.5rem;
    max-width: 750px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: none;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-standard);
}

.btn-primary {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #2689b7;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 161, 215, 0.25);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text-main);
    border: 2px solid #eee;
}

.btn-secondary:hover {
    border-color: var(--color-primary-green);
    color: var(--color-primary-green);
}

@media (max-width: 768px) {
    h1.hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* About Section */
.about-section {
    background-color: var(--color-bg-soft);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-label {
    color: var(--color-accent-pink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--font-size-tag);
    letter-spacing: 2.5px;
    margin-bottom: 1.2rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-grid {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5rem;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1.2;
    text-align: left;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: block;
}

.testimonial-video-box {
    margin-top: 6rem;
    background: var(--color-white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.video-label {
    color: var(--color-accent-pink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--font-size-tag);
    letter-spacing: 2.5px;
    margin-bottom: 0.8rem;
}

.video-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
        gap: 3rem;
        max-width: 800px;
    }
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.location-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    transition: var(--transition-standard);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-bg-soft);
    /* Fallback */
}

.location-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    border-color: var(--color-primary-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    color: var(--color-primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.location-card h3 {
    color: var(--color-primary-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.venue {
    font-weight: 700;
    color: var(--color-text-main);
}

.address {
    margin: 1rem 0;
    color: var(--color-text-muted);
}

.meeting-note {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.location-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--color-primary-green);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-standard);
}

.location-link:hover {
    color: var(--color-primary-blue);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--color-primary-blue);
}

.testimonial-card.pink-accent {
    border-top-color: var(--color-accent-pink);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text-main);
    z-index: 1;
    position: relative;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 2rem auto 0;
    gap: 2.5rem;
}

.news-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-body {
    padding: 2rem;
}

.news-date {
    font-size: 1rem;
    color: var(--color-accent-pink);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.news-section {
    background-color: var(--color-white);
}

.news-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.news-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.news-link {
    font-weight: 600;
    color: var(--color-primary-blue);
}

/* Contact Section */
.contact-section {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.contact-section .section-label {
    color: var(--color-primary-green);
}

.contact-section .section-title {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-top: 2rem;
}

.contact-info p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: var(--color-white);
    flex-grow: 1;
}

.newsletter-form button {
    background-color: var(--color-primary-green);
    color: var(--color-white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
}

.newsletter-form button:hover {
    background-color: #74a938;
}

.contact-form-container {
    background-color: var(--color-white);
    padding: 4rem;
    border-radius: var(--border-radius);
    color: var(--color-text-main);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-standard);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.main-form button {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

footer {
    padding: 5rem 0 3rem;
    text-align: center;
    background-color: #1a1a1a;
    color: #999;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-social a {
    color: var(--color-white);
    font-size: 1.8rem;
    transition: var(--transition-standard);
    opacity: 0.7;
}

.footer-social a:hover {
    color: var(--color-primary-green);
    transform: translateY(-5px);
    opacity: 1;
}

.copyright {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    font-size: 0.85rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.5;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

/* Stagger animation delays */
.location-card:nth-child(1) {
    animation-delay: 0.1s;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-img:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-img:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-img:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-img:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-img:nth-child(5) {
    animation-delay: 0.5s;
}

/* Photo Gallery */
.photo-gallery {
    margin-top: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-standard);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

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

    .gallery-img {
        height: 120px;
    }

    .custom-cursor,
    .cursor-follower {
        display: none;
    }
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-accent-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease-out, top 0.1s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower.active {
    width: 50px;
    height: 50px;
    background-color: rgba(233, 30, 99, 0.1);
    border-color: transparent;
}

.cursor-follower.clicked {

    width: 20px;
    height: 20px;
    background-color: rgba(233, 30, 99, 0.3);
}

/* Membership Section */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.membership-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.membership-card h3 {
    color: var(--color-primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.membership-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-accent-pink);
    border-radius: 2px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary-green);
    font-weight: bold;
}

.membership-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(33, 147, 176, 0.05);
    border-radius: var(--border-radius);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.membership-cta p {
    font-size: 1.25rem;
    color: var(--color-text-main);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-highlight {
        padding: 2rem;
        border-radius: 40px;
        font-size: 1.15rem;
        margin: 2.5rem 0;
    }
}