@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Brand Colors */
    --primary-green: #295334;
    --primary-green-rgb: 41, 83, 52;
    --text-brown: #534631;
    --text-brown-rgb: 83, 70, 49;
    --accent-yellow: #FDCE3C;
    --light-beige: #EFEEE7;
    --white: #ffffff;

    /* Semantic Colors */
    --bg-main: var(--light-beige);
    --bg-dark: var(--primary-green);
    --text-main: var(--text-brown);
    --text-light: #EFEEE7;
    --navbar-bg: rgba(var(--text-brown-rgb), 0.93);

    /* Spacing & Sizing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Fonts */
    --font-alegreya: 'Alegreya', serif;
    --font-merriweather: 'Merriweather', serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-alegreya);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: var(--section-padding);
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1.5rem;
}

.serif-body {
    font-family: var(--font-merriweather);
}

/* Common Headings */
.Headings {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    margin-top: 30px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.Headings::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.description-text {
    font-family: var(--font-merriweather);
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 960px;
    margin: 0 auto 24px;
}

/* Buttons & Interactive */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--accent-yellow);
    color: var(--text-brown);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    color: #8E7D63;
    font-family: var(--font-merriweather);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.btn-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary::before {
    content: '←';
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover::before {
    transform: translateX(-4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--border-radius-pill);
    transition: var(--transition-fast);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Navbar */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    z-index: 1000;
    padding: 0 20px;
}

.navbar {
    height: 72px;
    background: var(--navbar-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-logo img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-cta .btn-apply {
    height: 44px;
    padding: 10px 25px;
    font-size: 1.15rem;
    background: var(--accent-yellow);
    color: var(--text-brown);
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    border: 2px solid var(--white);
}

/* Hero Section */
.hero {
    padding-top: 10%;
    padding-bottom: 5%x;
    text-align: center;
    background: radial-gradient(circle at top, rgba(var(--primary-green-rgb), 0.05) 0%, transparent 70%);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-brown);
    margin-bottom: 32px;
    letter-spacing: 0.01em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-container {
    margin-bottom: 48px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    line-height: 1;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0.2em;
    opacity: 0.9;
    text-align: center;
}

.hero-illustration {
    max-width: 516px;
    /* Reduced by 40% from 860px */
    margin: 48px auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    transition: var(--transition-slow);
}

.hero-illustration:hover {
    transform: translateY(-10px);
}

.hero-short-desc {
    font-family: var(--font-merriweather);
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-brown);
    max-width: 840px;
    margin: 0 auto 40px;
}

.hero-info-pill {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    font-family: var(--font-merriweather);
    padding: 14px 48px;
    border-radius: var(--border-radius-pill);
    font-size: 1.1rem;
    margin-bottom: 48px;
    box-shadow: 0 4px 15px rgba(var(--primary-green-rgb), 0.2);
}

.hero-btn-apply {
    font-size: 1.4rem;
    padding: 20px 48px;
}

.what-this-is-section {
    margin-top: 120px;
    text-align: center;
}

.what-this-is-sub {
    opacity: 0.85;
}

/* Experience Section */
.experience-section {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-main), transparent);
    opacity: 0.1;
}

.experience-title {
    color: var(--white);
    letter-spacing: 0.1em;
}

.experience-subtitle {
    font-family: var(--font-merriweather);
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 80px;
    opacity: 0.9;
    font-style: italic;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure left alignment */
    gap: 12px;
    transition: var(--transition-slow);
    width: 100%;
}

.experience-item:hover {
    transform: translateX(10px);
}

.item-number {
    font-family: var(--font-merriweather);
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.6;
    margin-left: 0;
    text-align: left;
}

.item-pill {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 32px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-merriweather);
    font-size: 1.2rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.experience-item:hover .item-pill {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.experience-footer {
    grid-column: span 2;
    text-align: center;
    margin-top: 80px;
    font-family: var(--font-merriweather);
    font-size: 1.6rem;
    font-style: italic;
    opacity: 0.8;
}

/* Modules Section */
.modules-section {
    padding: 140px 0;
    background: var(--bg-main);
}

.modules-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
}

.modules-subtitle {
    font-family: var(--font-merriweather);
    font-size: 1.3rem;
    color: var(--text-brown);
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.8;
}

.modules-desc strong {
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}

.modules-desc strong::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-yellow);
    opacity: 0.3;
    z-index: -1;
}

/* Carousel */
.modules-carousel-container {
    padding: 20px 0 0;
    margin: 0 -30px;
    position: relative;
}

.modules-carousel-scroll-area {
    overflow: hidden;
}

.modules-carousel {
    display: flex;
    gap: 28px;
    padding: 20px 40px 60px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.modules-carousel::-webkit-scrollbar {
    display: none;
}

.modules-carousel.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* Scroll Indicator */
.carousel-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0 0;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.carousel-scroll-hint span {
    font-family: var(--font-merriweather);
    font-size: 0.85rem;
    color: var(--text-brown);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.carousel-scroll-hint .scroll-arrow {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
    position: relative;
    opacity: 0.4;
}

.carousel-scroll-hint .scroll-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-green);
    border-top: 2px solid var(--primary-green);
    transform: rotate(45deg);
}

@keyframes nudge-scroll {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

.carousel-scroll-hint .scroll-arrow {
    animation: nudge-scroll 2s ease-in-out infinite;
}

.module-card {
    flex: 0 0 373px;
    height: 550px;
    background: var(--white);
    border-radius: 24px;
    position: relative;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(83, 70, 49, 0.06);
    overflow: hidden;
    text-align: left;
    user-select: none;
}

.module-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(41, 83, 52, 0.1);
    border-color: rgba(41, 83, 52, 0.15);
}

/* Image zone — top half of card */
.module-illustration {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(239, 238, 231, 0.5) 0%, rgba(41, 83, 52, 0.06) 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.module-illustration::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(253, 206, 60, 0.06);
    border-radius: 50%;
    filter: blur(50px);
    bottom: -20px;
    right: -20px;
}

.module-illustration img {
    height: 240px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.1));
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.module-card:hover .module-illustration img {
    transform: scale(1.08) translateY(-6px);
}

/* Card body — below the image */
.module-card-left {
    padding: 24px 28px 0;
    display: flex;
    justify-content: flex-start;
}

.module-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    opacity: 0.35;
    font-family: var(--font-merriweather);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.module-number::before {
    content: '0';
}

.module-card:hover .module-number {
    opacity: 0.8;
}

.module-card-content {
    flex: 1;
    padding: 8px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.module-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.module-card-text {
    font-family: var(--font-merriweather);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-brown);
    opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .experience-footer {
        grid-column: 1;
    }

    .module-card {
        flex: 0 0 340px;
        height: 520px;
    }

    .module-illustration {
        height: 220px;
    }

    .module-illustration img {
        height: 170px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

    .navbar {
        height: 64px;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .modules-carousel-container {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-short-desc {
        font-size: 1.2rem;
    }

    .hero-info-pill {
        padding: 12px 32px;
        font-size: 0.95rem;
    }

    .experience-title,
    .modules-title {
        font-size: 1.8rem;
    }

    .experience-subtitle,
    .modules-desc,
    .what-this-is-desc {
        font-size: 1.1rem;
    }

    .module-card {
        flex: 0 0 85vw;
        height: auto;
        min-height: 480px;
        border-radius: 20px;
    }

    .module-card-left {
        padding: 20px 24px 0;
    }

    .module-card-content {
        padding: 4px 24px 24px;
    }

    .module-illustration {
        height: 240px;
    }

    .module-illustration img {
        height: 190px;
    }

    .carousel-scroll-hint {
        padding: 12px 0 0;
    }

    .nav-logo img {
        width: 110px;
    }

    .hero-illustration {
        margin: 32px auto;
    }

    .nav-cta .btn-apply {
        height: 36px;
        padding: 6px 16px;
        font-size: 0.95rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-green-rgb), 0.2);
    border-radius: 10px;
    border: 3px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-green-rgb), 0.4);
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-main);
    text-align: center;
}

.team-header {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-8px);
}

.member-image-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin-bottom: 24px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.team-card:hover .member-image {
    filter: grayscale(0%);
}

.member-info {
    max-width: 280px;
}

.member-name {
    font-family: var(--font-alegreya);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-brown);
    margin-bottom: 6px;
    line-height: 1.2;
}

.member-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.member-quote {
    font-family: var(--font-merriweather);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-brown);
    opacity: 0.8;
    line-height: 1.6;
}

/* Show More Functionality */
.hidden-member {
    display: none !important;
}

.team-grid.show-all .hidden-member {
    display: flex !important;
}

.team-cta {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

.team-btn {
    background: transparent;
    border: 2px solid var(--text-brown);
    color: var(--text-brown);
    font-family: var(--font-merriweather);
    font-size: 1.1rem;
    padding: 14px 48px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition-slow);
}

.team-btn:hover {
    background: var(--text-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(83, 70, 49, 0.15);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
}

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

    .member-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .member-name {
        font-size: 1.6rem;
    }
}

/* For Whom Section */
.for-whom-section {
    padding: var(--section-padding);
    background: var(--white);
}

.for-whom-header {
    text-align: center;
    margin-bottom: 60px;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.for-whom-text {
    text-align: left;
}

.for-whom-text .description-text {
    margin-bottom: 24px;
    max-width: 100%;
}

.for-whom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.for-whom-list li {
    font-family: var(--font-merriweather);
    font-size: 1.2rem;
    color: var(--text-brown);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.for-whom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.for-whom-disclaimer {
    font-style: italic;
    opacity: 0.8 !important;
}

.for-whom-image-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.for-whom-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.for-whom-image-wrapper:hover .for-whom-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .for-whom-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .for-whom-text {
        order: 1;
    }

    .for-whom-image-wrapper {
        order: 2;
    }

    .for-whom-list li {
        font-size: 1.1rem;
    }
}

/* Why Section */
.why-section {
    padding: var(--section-padding);
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-text {
    text-align: left;
}

.why-text .description-text {
    margin-bottom: 24px;
    max-width: 100%;
    font-size: 1.2rem;
    color: var(--text-brown);
}

.why-image-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-image-wrapper:hover .why-image {
    transform: scale(1.05);
}

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

    .why-image-wrapper {
        order: 2;
    }

    .why-text {
        order: 1;
    }
}

/* Venue Section */
.venue-section {
    padding: var(--section-padding);
    background: var(--bg-main);
    overflow: hidden;
}

.venue-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.venue-desc {
    margin-top: 24px;
}

.venue-carousel-container {
    position: relative;
    margin: 0 -30px;
}

.venue-carousel-scroll-area {
    overflow: hidden;
}

.venue-carousel {
    display: flex;
    gap: 32px;
    padding: 20px 40px 60px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.venue-carousel::-webkit-scrollbar {
    display: none;
}

.venue-carousel.is-dragging {
    cursor: grabbing;
}

.venue-slide {
    flex: 0 0 720px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-slow);
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venue-carousel-container:hover .venue-slide {
    transform: scale(0.98);
}

.venue-carousel-container:hover .venue-slide:hover {
    transform: scale(1.02);
}

.venue-scroll-hint {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .venue-slide {
        flex-basis: 600px;
        height: 400px;
    }
}

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

    .venue-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .venue-carousel-container {
        margin: 0 -20px;
    }

    .venue-carousel {
        padding: 10px 20px 40px;
        gap: 20px;
    }

    .venue-slide {
        flex-basis: 85vw;
        height: 320px;
        border-radius: 16px;
    }
}

/* Details Section */
.details-section {
    padding: var(--section-padding);
    background: var(--white);
    text-align: center;
}

.details-header {
    margin-bottom: 60px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

.detail-item {
    padding: 24px;
    background: var(--bg-main);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-slow);
}

.detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-value {
    font-family: var(--font-merriweather);
    font-size: 1.25rem;
    color: var(--text-brown);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto 60px;
    background: var(--text-brown);
    color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    padding: 48px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.early-bird-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    display: block;
    margin-bottom: 12px;
}

.price {
    font-family: var(--font-alegreya);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-yellow);
}

.pricing-note {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

.pricing-footer {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.pricing-footer strong {
    color: var(--accent-yellow);
}

.details-notes {
    max-width: 800px;
    margin: 0 auto;
}

.details-notes {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

.note-box {
    margin-bottom: 32px;
    display: inline-block;
}

.note-box.highlight {
    background: #FFFAF0;
    border: 2px solid var(--accent-yellow);
    color: var(--text-brown);
    padding: 12px 40px;
    border-radius: var(--border-radius-pill);
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.note-box.highlight.meals-highlight {
    display: block;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px 40px;
    font-family: var(--font-merriweather);
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
}

.note-box.highlight p {
    margin: 0;
}

.note-content p {
    margin: 0 auto 24px;
    max-width: 700px;
    line-height: 1.8;
}

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

    .detail-item {
        padding: 20px;
    }

    .price {
        font-size: 3rem;
    }

    .pricing-header {
        padding: 32px 24px;
    }
}

/* Pathways Section */
.pathways-section {
    padding: var(--section-padding);
    background: var(--bg-main);
    text-align: center;
}

.pathways-header {
    max-width: 850px;
    margin: 0 auto 64px;
}

.pathways-desc {
    margin-top: 24px;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pathway-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: var(--transition-slow);
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: var(--text-brown);
}

.pathway-name {
    font-family: var(--font-alegreya);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-brown);
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.pathway-tagline {
    font-size: 1.05rem;
    color: #8E7D63;
    transition: color 0.4s ease;
}

.pathway-arrow {
    font-size: 2rem;
    color: var(--primary-green);
    transition: transform 0.4s ease, color 0.4s ease;
}

.pathway-card:hover .pathway-name,
.pathway-card:hover .pathway-tagline,
.pathway-card:hover .pathway-arrow {
    color: var(--white);
}

.pathway-card:hover .pathway-arrow {
    transform: translateX(8px);
}

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

    .pathway-card {
        padding: 30px;
    }

    .pathway-name {
        font-size: 1.6rem;
    }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--white);
}

.cta-card {
    display: flex;
    background: #295334;
    border-radius: 24px;
    overflow: hidden;
    min-height: 540px;
    box-shadow: 0 40px 100px rgba(41, 83, 52, 0.15);
}

.cta-image-side {
    flex: 1.1;
    position: relative;
    overflow: hidden;
}

.cta-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.cta-card:hover .cta-banner-image {
    transform: scale(1.05);
}

.cta-content-side {
    flex: 0.9;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-family: var(--font-alegreya);
    font-size: 2.8rem;
    color: #FDCE3C;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-text {
    font-family: var(--font-merriweather);
    font-size: 1.25rem;
    color: #EFEEE7;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 440px;
}

.btn-touch {
    display: inline-block;
    background: #FDCE3C;
    color: #2E2B26;
    padding: 18px 56px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-system);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-slow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFFFFF;
}

.btn-touch:hover {
    background: #e5b935;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .cta-card {
        min-height: auto;
    }

    .cta-content-side {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
    }

    .cta-image-side {
        height: 320px;
    }

    .cta-content-side {
        padding: 60px 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .btn-touch {
        padding: 16px 40px;
        width: 100%;
    }
}



/* Multi-step Form Section */
.apply-section {
    padding: var(--section-padding);
    background: #F9F7F2;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.container-narrow {
    max-width: 1050px;
}

.apply-header {
    text-align: center;
    margin-bottom: 60px;
}

.apply-camp-meta {
    font-family: var(--font-alegreya);
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 16px 0 24px;
    font-weight: 700;
}

.apply-intro {
    max-width: 1050px;
    margin: 0 auto;
    font-size: 14px;
}

.apply-note {
    font-style: italic;
    color: var(--text-brown);
    margin-top: 24px;
    font-weight: 500;
    font-size: 14px;
}

.apply-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: #E8E4D9;
    border-radius: 2px;
    margin-bottom: 50px;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-green);
    width: 14.28%;
    /* 1/7 */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.progress-steps-labels {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -12px;
    width: 100%;
}

.progress-steps-labels span {
    width: 28px;
    height: 28px;
    background: #E8E4D9;
    color: #8E7D63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-steps-labels span.active {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.progress-steps-labels span.completed {
    background: var(--primary-green);
    color: var(--white);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-alegreya);
    font-size: 1.8rem;
    color: var(--text-brown);
    margin-bottom: 40px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F0ECE4;
}

/* Form Styling */
.form-group {
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.apply-form-container label {
    display: block;
    font-family: var(--font-merriweather);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-brown);
    margin-bottom: 10px;
}

.input-hint {
    display: block;
    font-size: 0.85rem;
    color: #8E7D63;
    margin-bottom: 10px;
    font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #E8E4D9;
    border-radius: 12px;
    font-family: var(--font-merriweather);
    font-size: 14px;
    color: var(--text-brown);
    background: #FCFBF9;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(41, 83, 52, 0.05);
}

textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

/* Radio & Checkbox Block Styling */
.radio-group,
.checkbox-group-block,
.radio-group-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-group.horizontal {
    flex-direction: row;
    gap: 32px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    background: #FCFBF9;
    padding: 16px;
    border: 1.5px solid #E8E4D9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkbox-label:hover,
.radio-label:hover {
    border-color: #D8D4C9;
}

.checkbox-label input,
.radio-label input {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-text,
.radio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-brown);
}

.word-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #8E7D63;
    margin-top: 8px;
}

.word-counter.warning {
    color: #E63946;
}

.conditional-input {
    margin-top: 16px;
    animation: slideDown 0.3s ease;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #F0ECE4;
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: 60px 0;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

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

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

@media (max-width: 768px) {
    .apply-form-container {
        padding: 40px 24px;
    }

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

    .form-navigation {
        flex-direction: column-reverse;
    }

    .form-navigation button:not(.btn-secondary) {
        width: 100%;
    }

    .btn-secondary {
        justify-content: center;
        margin-bottom: 10px;
    }

    .radio-group.horizontal {
        flex-direction: column;
        gap: 12px;
    }

    .apply-section {
        padding: 60px 0;
    }
}

.hidden {
    display: none !important;
}

/* Guidelines Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 43, 38, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    padding: 50px;
    border-radius: 32px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-title {
    font-family: var(--font-alegreya);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.modal-body {
    font-family: var(--font-merriweather);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-brown);
    margin-bottom: 40px;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.btn-modal-cancel {
    background: #F0ECE4;
    color: var(--text-brown);
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-agree {
    background: var(--primary-green);
    color: var(--white);
    padding: 14px 40px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-cancel:hover {
    background: #E8E4D9;
}

.btn-modal-agree:hover {
    background: #1e3d26;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(41, 83, 52, 0.2);
}

@media (max-width: 768px) {
    .modal-container {
        padding: 40px 24px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

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

    .modal-actions button {
        width: 100%;
    }
}

/* Footer Section */
.footer {
    background: #453E33;
    color: #fdf6e9;
    padding: 80px 0 40px;
    font-family: var(--font-merriweather);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-alegreya);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fdf6e9;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    opacity: 1;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info a {
    color: #fdf6e9;
    text-decoration: none;
}

/* Social icons row */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(239, 238, 231, 0.3);
    color: rgba(239, 238, 231, 0.85);
    text-decoration: none;
    transition: background-color 0.25s, border-color 0.25s, color 0.25s;
    flex-shrink: 0;
}

.footer-social-icon:hover {
    background-color: var(--color-accent-3);
    border-color: var(--color-accent-3);
    color: var(--color-dark);
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(253, 246, 233, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdf6e9;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e5b935;
    border-color: #e5b935;
    color: #e5b935;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 246, 233, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.legal-links {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #fdf6e9;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.separator {
    opacity: 0.3;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.partner-label {
    font-size: 0.85rem;
    opacity: 0.6;
}

.partner-logo {
    height: 32px;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--bg-main);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 20px;
    border: 1.5px solid #E8E4D9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(41, 83, 52, 0.05);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(41, 83, 52, 0.08);
}

.faq-question {
    width: 100%;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    outline: none;
}

.faq-question h3 {
    font-family: var(--font-alegreya);
    font-size: 1.4rem;
    color: var(--text-brown);
    margin: 0;
    font-weight: 700;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.faq-toggle-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-toggle-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 40px 32px;
    font-family: var(--font-merriweather);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-brown);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-answer-content {
    opacity: 0.9;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 24px 28px;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer-content {
        padding: 0 28px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-desc {
        max-width: 280px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .legal-links {
        justify-content: center;
    }

    .footer-partner {
        flex-direction: column;
        gap: 8px;
    }
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
}

.glass-dark {
    background: rgba(var(--text-brown-rgb), 0.93);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}