
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-regular/GolosText-Regular.woff2") format("woff2"), url("fonts/golfont/golos/golos-regular/GolosText-Regular.woff") format("woff");
    font-weight: 400; /* normal */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-medium/GolosText-Medium.woff2") format("woff2"), url("fonts/golfont/golos/golos-medium/GolosText-Medium.woff") format("woff");
    font-weight: 500; /* medium */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-semibold/GolosText-SemiBold.woff2") format("woff2"), url("fonts/golfont/golos/golos-semibold/GolosText-SemiBold.woff") format("woff");
    font-weight: 600; /* semibold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-bold/GolosText-Bold.woff2") format("woff2"), url("fonts/golfont/golos/golos-bold/GolosText-Bold.woff") format("woff");
    font-weight: 700; /* bold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-extrabold/GolosText-ExtraBold.woff2") format("woff2"), url("fonts/golfont/golos/golos-extrabold/GolosText-ExtraBold.woff") format("woff");
    font-weight: 800; /* extrabold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Golos Text";
    src: url("fonts/golfont/golos/golos-black/GolosText-Black.woff2") format("woff2"), url("fonts/golfont/golos/golos-black/GolosText-Black.woff") format("woff");
    font-weight: 900; /* black */
    font-style: normal;
    font-display: swap;
}


:root {
    --color-primary: #297373; /* Dark Teal */
    --color-secondary: #85FFC7; /* Mint Green */
    --color-accent: #FF8552; /* Coral/Orange */
    --color-light: #E6E6E6; /* Light Gray */
    --color-text: #333333;
    --color-white: #FFFFFF;

    --font-heading: 'Golos Text', sans-serif;
    --font-body: 'Golos Text', sans-serif;

    --container-width: 1200px;
    --spacing-unit: 1rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

section {
    padding: calc(var(--spacing-unit) * 6) 0;
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.section-title {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* ======================= Header & Navigation ======================= */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-light);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
}

.nav-links a {
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    position: relative;
    transition: background-color 0s 0.3s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ======================= Reusable Components ======================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: #e6784a;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ======================= Hero Section ======================= */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #eafdf4, #d7f8ef);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    background: -webkit-linear-gradient(45deg, #41eded, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-primary);
    opacity: 0.8;
    margin: 2rem 0;
}

#hero-animation-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

/* ======================= Achievements Section ======================= */
.achievements-section {
    background-color: var(--color-light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.achievement-card {
    background-color: var(--color-white);
    padding: calc(var(--spacing-unit) * 2.5);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(41, 115, 115, 0.1);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--color-secondary);
    background-color: var(--color-primary);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-unit);
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--color-accent);
}

/* ======================= Process Section ======================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.process-step {
    text-align: center;
}

.process-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-secondary), #a4fbe1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.process-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.process-icon-wrapper:hover {
    transform: scale(1.1) rotate(10deg);
}

.process-step h3 {
    color: var(--color-primary);
}

/* ======================= Reviews Section ======================= */
.reviews-section {
    background-color: var(--color-primary);
    color: var(--color-light);
}

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

.slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    padding: 0 1rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.reviewer-info {
    text-align: right;
}

.reviewer-name {
    font-weight: 700;
    display: block;
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}
.slider-btn:hover {
    background-color: var(--color-accent);
}
.slider-btn.prev { left: 0px; }
.slider-btn.next { right: 0px; }

/* ======================= Who We Are Section ======================= */
.who-we-are-section {
    background: var(--color-white);
}

.who-we-are-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: calc(var(--spacing-unit) * 5);
    align-items: center;
}

.who-we-are-image {
    background-image: url('images/we-are.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.who-we-are-image img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.who-we-are-content .section-title {
    text-align: left;
}



/* ======================= Feats/Commitment Section ======================= */
.feats-section {
    background-color: var(--color-light);
}

.feats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.feat-item {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--color-secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.feat-item i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* ======================= Benefits Section ======================= */
.benefits-section {
    background: linear-gradient(to bottom, var(--color-primary) 0%, #1c5252 100%);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.benefit-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    color: var(--color-white);
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: transform 0.4s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.benefit-card:nth-child(1) { background: url('images/bene-1.jpg') center/cover; }
.benefit-card:nth-child(2) { background: url('images/bene-2.jpg') center/cover; }
.benefit-card:nth-child(3) { background: url('images/bene-3.jpg') center/cover; }


.benefit-card:hover {
    transform: scale(1.05);
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-content h3 {
    color: var(--color-white);
}

/* ======================= Sustainability & FAQ Sections ======================= */
.sustainability-content, .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.sustainability-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.sustainability-content strong {
    color: var(--color-primary);
}

.faq-section {
    background-color: var(--color-light);
}

details {
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
}
summary {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--color-primary);
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-content {
    padding: 0 1.5rem 1.5rem;
}

/* ======================= STORE PAGE STYLES ======================= */

/* Store Hero Section */
.store-hero-section {
    min-height: 50vh;
    background-image: linear-gradient(rgba(41, 115, 115, 0.7), rgba(41, 115, 115, 0.7)), url('images/store-bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.store-hero-section .hero-content h1,
.store-hero-section .hero-content p {
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#store-hero-animation {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

/* Products Section */
.products-section {
    background-color: var(--color-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.product-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(41, 115, 115, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.3rem;
}

.product-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #666;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-add-to-cart {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
    position: relative; /* For mo.js */
}

.btn-add-to-cart:hover {
    background-color: #e6784a;
}

.btn-add-to-cart i {
    margin-right: 0.5rem;
}

/* Detailed Process / Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 65px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 65px;
    text-align: left;
}
.timeline-icon {
    position: absolute;
    top: 20px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 3px solid var(--color-white);
}
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--color-light);
    border-radius: 8px;
    position: relative;
}
.timeline-content h3 { color: var(--color-primary); }

/* Subscription Showcase Section */
.subscription-showcase-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/subs-bg.webp') center/cover fixed;
    text-align: center;
    color: var(--color-white);
}
.showcase-content {
    max-width: 700px;
    margin: 0 auto;
}
.showcase-content h2 {
    font-size: 2.8rem;
    color: var(--color-white);
}
.showcase-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Cooking Tips section adjustments */
#cooking-tips .benefit-card {
    background: var(--color-white) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
#cooking-tips .benefit-card::before {
    display: none;
}
#cooking-tips .benefit-content {
    color: var(--color-text);
}
#cooking-tips .benefit-content h3 {
    color: var(--color-accent);
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 6px;
    }
}

/* ======================= ABOUT PAGE STYLES ======================= */

/* About Hero Section */
#about-hero {
    background-image: linear-gradient(rgba(41, 115, 115, 0.7), rgba(41, 115, 115, 0.7)), url('images/about-bg.webp');
}

#about-hero-animation {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

/* Mission Section */
.mission-section {
    background: var(--color-primary);
    padding: 4rem 0;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-unit) * 4;
    max-width: 1000px;
    margin: auto;
}
.mission-item {
    text-align: center;
    color: var(--color-light);
}
.mission-item i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}
.mission-item h3 {
    color: var(--color-white);
}

/* Team Section */
.team-section {
    background-color: var(--color-light);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.team-card {
    background: var(--color-white);
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.team-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 5px solid var(--color-secondary);
    position: relative; /* for mo.js */
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-title {
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 1rem;
}
.team-bio {
    font-size: 0.95rem;
    color: #666;
}

/* Recognition Section */
.recognition-section {
    background: var(--color-white);
}
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}
.recognition-item {
    text-align: center;
}
.recognition-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), #a4fbe1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    position: relative;
}
.recognition-item h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
}
.recognition-item span {
    color: #777;
    font-style: italic;
}

/* Partners Section */
.partners-section {
    background: var(--color-light);
    padding: 4rem 0;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    align-items: center;
}
.partner-logo {
    text-align: center;
}
.partner-logo img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


/* ======================= CONTACT PAGE STYLES ======================= */

/* Contact Hero Section */
#contact-hero {
    min-height: 50vh;
    background-image: linear-gradient(rgba(41, 115, 115, 0.7), rgba(41, 115, 115, 0.7)), url('images/contact-bg.webp');
}

/* Main Contact Section */
.contact-main-section {
    padding: 6rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info h2, .contact-form-wrapper h2 {
    margin-bottom: 1rem;
}
.contact-info > p, .contact-form-wrapper > p {
    margin-bottom: 2.5rem;
    color: #666;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
}
.contact-details h3 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}
.contact-details p {
    margin-bottom: 0.5rem;
}
.contact-details a {
    font-weight: 700;
}

/* Contact Form */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}
.form-input, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background-color: var(--color-white);
    transition: border-color 0.3s ease;
}
.form-input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating Label Effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-primary);
    background-color: var(--color-white);
    padding: 0 0.25rem;
}
/* Select menus don't work with placeholder, so we style it differently */
.form-group select {
    color: #333; /* Default text color */
}
.form-group select:required:invalid {
    color: #999; /* Placeholder text color */
}
.form-group select option[value=""] {
    display: none;
}
.form-group select option {
    color: #333;
}
#form-submit-btn {
    width: 100%;
    padding: 1.2rem;
}

/* ======================= FORM CHECKBOX STYLES ======================= */

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 1.25em;
    height: 1.25em;
    accent-color: var(--color-primary); /* Modern way to style the checkbox color */
    flex-shrink: 0;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.form-group-checkbox label a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.form-group-checkbox label a:hover {
    color: var(--color-primary);
}


/* Responsive for Contact Grid */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* ======================= THANK YOU PAGE STYLES ======================= */

.thank-you-page {
    background: linear-gradient(135deg, #eafdf4, #d7f8ef);
    font-family: var(--font-body);
    color: var(--color-text);
}

.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.thank-you-card {
    background: var(--color-white);
    padding: 3rem 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(41, 115, 115, 0.1);
    text-align: center;
    max-width: 550px;
    width: 100%;
}

.thank-you-card h1 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.thank-you-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #555;
}

.thank-you-card .btn {
    padding: 1rem 2.5rem;
}

/* Animated Checkmark SVG Styles */
.checkmark-wrapper {
    margin: 0 auto;
}

.checkmark-svg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff; /* Initial stroke color */
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--color-secondary);
    animation: fill-circle 0.4s ease-in-out 0.4s forwards, scale-up 0.3s ease-in-out 0.9s both;
}

/* The circle path that gets drawn */
.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--color-secondary);
    fill: none;
    animation: draw-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

/* The checkmark path that gets drawn */
.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Keyframe Animations */

/* 1. Scale the SVG container */
@keyframes scale-up {
    from {
        transform: none;
    }
    to {
        transform: scale(1.05);
    }
}

/* 2. Fill the circle with color */
@keyframes fill-circle {
    from {
        box-shadow: inset 0px 0px 0px var(--color-secondary);
    }
    to {
        box-shadow: inset 0px 0px 0px 50px var(--color-secondary);
    }
}

/* 3. Draw the circle border */
@keyframes draw-circle {
    from {
        stroke-dashoffset: 166;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* 4. Draw the checkmark */
@keyframes draw-check {
    from {
        stroke-dashoffset: 48;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 600px) {
    .thank-you-card {
        padding: 2rem 1.5rem;
    }
    .thank-you-card h1 {
        font-size: 2.5rem;
    }
}

/* ======================= Footer ======================= */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: calc(var(--spacing-unit) * 4) 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.footer-container h3 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.footer-about .logo {
    color: var(--color-white);
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-legal a {
    color: var(--color-light);
    opacity: 0.8;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-white);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}
.social-icons a {
    color: var(--color-light);
    font-size: 1.5rem;
}
.social-icons a:hover {
    color: var(--color-secondary);
}

/* ======================= Animations ======================= */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(50px);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-50px);
}
.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(50px);
}
.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* ======================= Responsive Design ======================= */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .hero-content h1 { font-size: 3.5rem; }
    .who-we-are-container { grid-template-columns: 1fr; }
    .who-we-are-image { min-height: 300px; }
    .who-we-are-content .section-title { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        opacity: 0;
        visibility: hidden;
    }
    .nav-links.is-active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        color: var(--color-white);
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: block;
    }
    .nav-toggle.is-active .hamburger {
        background-color: transparent;
        transition: all ease-in-out .4s;
    }
    .nav-toggle.is-active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background-color: #fff;
        transition: all ease-in-out .4s;
    }
    .nav-toggle.is-active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
        background-color: #fff;
        transition: all ease-in-out .4s;
    }
    
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    section { padding: 4rem 0; }

    .slider-btn.prev { left: 0; }
    .slider-btn.next { right: 0; }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-about, .footer-links, .footer-legal, .footer-social {
        margin-bottom: 2rem;
    }
    .social-icons {
        justify-content: center;
    }
}