/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #363636;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

.container {
    width: 100%;
    max-width: 1398px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop container */
@media (min-width: 1440px) {
    .container {
        padding: 0 40px;
    }
}

/* ==========================================
   HEADER SECTION
   ========================================== */

.header {
    background-color: #FFFFFF;
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    width: 60px;
    height: auto;
}

.contact-info {
    display: none;
}

.mobile-menu-toggle {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #6B002E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Tablet */
@media (min-width: 768px) {
    .logo img {
        width: 80px;
    }

    .header {
        padding: 12px 0;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .logo img {
        width: 100px;
    }

    .contact-info {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.875rem;
        color: #363636;
    }

    .contact-link {
        transition: color 0.3s ease;
    }

    .contact-link:hover {
        color: #CB0058;
    }

    .separator {
        color: #D9D9D9;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    padding: 60px 0 0;
    overflow: hidden;
    background: url('../images/hero-background.png') center center / cover no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-text {
    color: #FFFFFF;
}

.hero-title {
    font-size: clamp(28px, 8vw, 40px);
    font-weight: 700;
    line-height: 1.075;
    margin-bottom: 20px;
    background: linear-gradient(93.36deg, #FFF9E6 2.89%, #F4C24E 78.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 40px;
        line-height: 43px;
    }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.hero-description {
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #FFFFFFad;
}

.hero-description em {
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(90deg, #831E4A 0%, #1D0710 100%);
    background-blend-mode: overlay;
    color: #FFFFFF;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 600;
    line-height: 1.4;
    padding: 0 20px;
    height: 64px;
    border-radius: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    width: 100%;
    max-width: 481px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background: linear-gradient(90deg, #A00B4C 0%, #4E061B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 30, 74, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-meta {
    font-size: 0.813rem;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-button-secondary {
    background-color: #4C071B;
    color: #FFFFFF;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 600;
    line-height: 1.4;
    padding: 0 20px;
    height: 64px;
    border-radius: 32px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    max-width: 847px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-button-secondary:hover {
    background-color: #6E193E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 7, 27, 0.4);
}

@media (min-width: 768px) {

    .cta-button,
    .cta-button-secondary {
        font-size: 16px;
    }
}

.hero-image {
    width: 100%;
    max-width: 676px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: 396px;
    object-fit: cover;
    border-radius: 26px;
}



/* Tablet */
@media (min-width: 768px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        width: auto;
        min-width: 400px;
    }

    .cta-button-secondary {
        width: auto;
        min-width: 500px;
    }

    .hero-edge {
        height: 80px;
        background-size: 100% 80px;
    }

    .hero-image img {
        height: auto;
        min-height: 300px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 120px;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 0 0 676px;
        max-width: 676px;
    }

    .hero-image img {
        height: 396px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 43px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 40px;
        line-height: 43px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ==========================================
   CURRICULUM SECTION
   ========================================== */

.curriculum {
    background-color: #EDEDED;
    padding: 0 0 60px;
}

.curriculum-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1D0710;
    text-align: center;
    margin-bottom: 20px;
}

.curriculum-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #363636;
    text-align: center;
    margin-bottom: 30px;
}

.curriculum-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.curriculum-card {
    background-color: #6B002E;
    color: #FFFFFF;
    padding: 20px 30px;
    border-radius: 16px;
    border-left: 6px solid #FCB704;
    text-align: center;
    font-size: 0.938rem;
    font-weight: 500;
    font-style: italic;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 0, 46, 0.2);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curriculum-card:hover {
    background-color: #831E4A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 0, 46, 0.3);
}

.curriculum-card p {
    margin: 0;
}

.curriculum-footer {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: #1D0710;
    text-align: center;
}

/* Tablet */
@media (min-width: 768px) {
    .curriculum {
        padding: 80px 0;
    }

    .curriculum-title {
        font-size: 2.25rem;
    }

    .curriculum-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }

    .curriculum-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

    .curriculum-card {
        padding: 25px 35px;
        font-size: 1rem;
    }

    .curriculum-footer {
        font-size: 1.125rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .curriculum-title {
        font-size: 2.5rem;
    }

    .curriculum-cards {
        gap: 30px;
    }
}

/* ==========================================
   WHY NORMAL BOOKS FAIL SECTION
   ========================================== */

.why-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative gradient blur circle */
.why-section::before {
    content: '';
    position: absolute;
    width: 365px;
    height: 365px;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-23.81deg);
    background: linear-gradient(180deg, #6E193E 0%, #CB0058 100%);
    background-blend-mode: overlay;
    filter: blur(22.55px);
    z-index: 0;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.why-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFFFFF;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.why-card {
    background: #ffcfdd;
    background-blend-mode: luminosity;
    padding: 50px 30px 30px;
    border-radius: 22px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.why-card-title {
    background: #881245;
    border: 2px solid #CE4D85;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 31px;
    padding: 8px 30px;
    border-radius: 23.5px;
    text-align: center;
    position: absolute;
    top: -23.5px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.why-card-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 25px;
    margin: 0;
}

.why-card-list li {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 21px;
    color: #000000;
    padding: 10px 0;
    padding-left: 10px;
}

.why-card-list li::marker {
    color: #000000;
    font-size: 1.2rem;
}

.why-footer {
    font-size: 1rem;
    font-style: italic;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.8;
}

.why-footer em {
    font-weight: 600;
    font-style: italic;
}

/* Tablet */
@media (min-width: 768px) {
    .why-section {
        padding: 80px 0;
    }

    .why-title {
        font-size: 2.25rem;
    }

    .why-description {
        font-size: 1.125rem;
        margin-bottom: 50px;
    }

    .why-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .why-card {
        padding: 60px 30px 30px;
    }

    .why-card-title {
        font-size: 1.5rem;
        padding: 8px 40px;
    }

    .why-card-list li {
        font-size: 1.25rem;
        line-height: 21px;
        padding: 12px 0;
    }

    .why-footer {
        font-size: 1.125rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .why-title {
        font-size: 2.5rem;
    }

    .why-cards {
        gap: 30px;
    }
}

/* ==========================================
   BETTER CURRICULUM SECTION
   ========================================== */

.better-curriculum {
    background-color: #EDEDED;
    padding: 60px 0;
}

.better-curriculum-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #6B002E;
    text-align: center;
    margin-bottom: 40px;
}

.better-curriculum-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.better-curriculum-text {
    flex: 1;
}

.better-curriculum-card {
    background-color: #DFDFDF;
    padding: 30px;
    border-radius: 16px;
    border-left: 10px solid #6B002E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.question-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1D0710;
    margin-bottom: 10px;
}

.question-old {
    font-size: 1.375rem;
    font-weight: 600;
    color: #CB0058;
    margin-bottom: 25px;
}

.question-new {
    font-size: 1.375rem;
    font-weight: 600;
    color: #CB0058;
    margin-bottom: 25px;
    line-height: 1.5;
}

.question-footer {
    font-size: 1.125rem;
    font-weight: 500;
    font-style: italic;
    color: #1D0710;
    margin: 0;
}

.better-curriculum-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.better-curriculum-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (min-width: 768px) {
    .better-curriculum {
        padding: 80px 0;
    }

    .better-curriculum-title {
        font-size: 2.25rem;
        margin-bottom: 50px;
    }

    .better-curriculum-content {
        flex-direction: row;
        gap: 0;
        align-items: center;
    }

    .better-curriculum-card {
        padding: 40px;
    }

    .question-label {
        font-size: 1.25rem;
    }

    .question-old,
    .question-new {
        font-size: 1.5rem;
    }

    .question-footer {
        font-size: 1.25rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .better-curriculum-title {
        font-size: 2.5rem;
    }

    .better-curriculum-content {
        gap: 0;
    }

    .better-curriculum-image {
        max-width: 550px;
    }
}

/* ==========================================
   MODERN CURRICULUM DELIVERY METHOD SECTION
   ========================================== */

.modern-curriculum {
    background-color: #FFFFFF;
    padding: 60px 0 40px;
}

.modern-curriculum-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #6B002E;
    text-align: center;
    margin-bottom: 10px;
}

.modern-curriculum-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1D0710;
    display: block;
    margin-top: 10px;
}

.modern-curriculum-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.modern-curriculum-text {
    flex: 1;
}

.modern-curriculum-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 25px;
    margin: 0 0 25px 0;
}

.modern-curriculum-list li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
    color: #1D0710;
    padding: 8px 0;
    padding-left: 10px;
}

.modern-curriculum-list li::marker {
    color: #6B002E;
}

.modern-curriculum-footer {
    font-size: 1.063rem;
    font-style: italic;
    color: #1D0710;
    text-align: center;
    margin-top: 40px;
}

.modern-curriculum-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.modern-curriculum-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (min-width: 768px) {
    .modern-curriculum {
        padding: 80px 0 50px;
    }

    .modern-curriculum-title {
        font-size: 2.25rem;
    }

    .modern-curriculum-subtitle {
        font-size: 1.5rem;
    }

    .modern-curriculum-content {
        flex-direction: row;
        gap: 40px;
        margin-top: 50px;
    }

    .modern-curriculum-list li {
        font-size: 1.25rem;
    }

    .modern-curriculum-footer {
        font-size: 1.125rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .modern-curriculum-title {
        font-size: 2.5rem;
    }

    .modern-curriculum-image {
        max-width: 550px;
    }
}

/* ==========================================
   SMARTSPEAK SECTION
   ========================================== */

.smartspeak {
    background-color: #EDEDED;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Yellow gradient circles */
.smartspeak::before,
.smartspeak::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #FCB704 0%, rgba(252, 183, 4, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.smartspeak::before {
    width: 400px;
    height: 400px;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.smartspeak::after {
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: -100px;
}

.smartspeak .container {
    position: relative;
    z-index: 1;
}

.smartspeak-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #6B002E;
    text-align: center;
    margin-bottom: 10px;
}

.smartspeak-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1D0710;
    display: block;
    margin-top: 10px;
}

.smartspeak-description {
    font-size: 1.063rem;
    line-height: 1.6;
    color: #1D0710;
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
}

.smartspeak-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
}

.smartspeak-text {
    flex: 1;
    background: #FFFFFF;
    border-radius: 48px;
    padding: 50px 35px 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.smartspeak-badge {
    background-color: #A00B4C;
    color: #FFFFFF;
    font-size: 1.063rem;
    font-weight: 700;
    line-height: 50px;
    padding: 0 35px;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: -25px;
    left: 30px;
    white-space: nowrap;
}

.smartspeak-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 25px;
    margin: 0;
}

.smartspeak-list li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #000000;
    padding: 5px 0;
    padding-left: 10px;
}

.smartspeak-list li::marker {
    color: #6B002E;
}

.smartspeak-footer {
    font-size: 0.938rem;
    font-style: italic;
    color: #1D0710;
    text-align: center;
    margin: 25px 0 0 0;
}

.smartspeak-image {
    flex: 1;
    width: 100%;
    max-width: 400px;
}

.smartspeak-image img {
    width: 100%;
    height: auto;
}

/* Tablet */
@media (min-width: 768px) {
    .smartspeak {
        padding: 80px 0;
    }

    .smartspeak-title {
        font-size: 2.25rem;
    }

    .smartspeak-subtitle {
        font-size: 1.5rem;
    }

    .smartspeak-description {
        font-size: 1.125rem;
    }

    .smartspeak-content {
        flex-direction: row;
        gap: 40px;
    }

    .smartspeak-badge {
        font-size: 1.25rem;
        padding: 0 45px;
        line-height: 60px;
        top: -30px;
        left: 40px;
        transform: none;
    }

    .smartspeak-list li {
        font-size: 1.125rem;
    }

    .smartspeak-footer {
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .smartspeak-title {
        font-size: 2.5rem;
    }

    .smartspeak-image {
        max-width: 450px;
    }
}

/* ==========================================
   WHY PRESCHOOLS CHOOSE SMARTSPEAK SECTION
   ========================================== */

.why-choose {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.why-choose-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #6B002E;
    text-align: center;
    margin-bottom: 15px;
}

.why-choose-subtitle {
    font-size: 1.063rem;
    font-weight: 400;
    color: #1D0710;
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.why-choose-image {
    flex: 1;
    width: 100%;
    max-width: 400px;
}

.why-choose-image img {
    width: 100%;
    height: auto;
}

.why-choose-text {
    flex: 1;
}

.why-choose-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 25px;
    margin: 0 0 25px 0;
}

.why-choose-list li {
    font-size: 1.063rem;
    font-weight: 400;
    line-height: 1.8;
    color: #1D0710;
    padding: 8px 0;
    padding-left: 10px;
}

.why-choose-list li::marker {
    color: #6B002E;
}

.why-choose-footer {
    font-size: 1rem;
    color: #1D0710;
    margin: 0;
}

.why-choose-footer strong {
    font-weight: 700;
}

/* Tablet */
@media (min-width: 768px) {
    .why-choose {
        padding: 80px 0;
    }

    .why-choose-title {
        font-size: 2.25rem;
    }

    .why-choose-subtitle {
        font-size: 1.125rem;
        margin-bottom: 50px;
    }

    .why-choose-content {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .why-choose-image {
        max-width: 450px;
    }

    .why-choose-list li {
        font-size: 1.125rem;
    }

    .why-choose-footer {
        font-size: 1.063rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .why-choose-title {
        font-size: 2.5rem;
    }

    .why-choose-image {
        max-width: 500px;
    }

    .why-choose-list li {
        font-size: 1.25rem;
    }
}

/* ==========================================
   EXPERIENCE IT SECTION
   ========================================== */

.experience-it {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.experience-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-it .container {
    position: relative;
    z-index: 1;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.experience-text {
    flex: 1;
    color: #FFFFFF;
}

.experience-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.075;
    color: #FFFFFF;
    margin-bottom: 20px;
    background: linear-gradient(93.36deg, #FFF9E6 2.89%, #F4C24E 78.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-description {
    font-size: 1.063rem;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.experience-cta {
    background: linear-gradient(90deg, #831E4A 0%, #1D0710 100%);
    background-blend-mode: overlay;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 35px;
    height: 64px;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.experience-cta:hover {
    background: linear-gradient(90deg, #A00B4C 0%, #4E061B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 30, 74, 0.4);
}

.experience-meta {
    font-size: 0.875rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.experience-form {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.form-card {
    background-color: #FCB704;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D0710;
    text-align: center;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 0.938rem;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1D0710;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: 2px solid #6B002E;
    outline-offset: 2px;
}

.form-input::placeholder {
    color: #999999;
}

.form-submit {
    background-color: #6B002E;
    color: #FFFFFF;
    font-size: 1.063rem;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #881245;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 0, 46, 0.4);
}

.form-note {
    font-size: 0.813rem;
    color: #1D0710;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

/* Tablet */
@media (min-width: 768px) {
    .experience-it {
        padding: 80px 0;
    }

    .experience-content {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .experience-title {
        font-size: 2.5rem;
        line-height: 1.075;
    }

    .experience-description {
        font-size: 1.125rem;
    }

    .experience-cta {
        font-size: 1.063rem;
        padding: 0 40px;
    }

    .experience-meta {
        font-size: 0.938rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-card {
        padding: 35px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .experience-title {
        font-size: 3rem;
        line-height: 1.075;
    }

    .experience-form {
        max-width: 550px;
    }
}

/* ==========================================
   JOIN COMMUNITY SECTION
   ========================================== */

.join-community {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.join-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.join-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-community .container {
    position: relative;
    z-index: 1;
}

.join-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #6B002E;
    text-align: center;
    margin-bottom: 15px;
}

.join-subtitle {
    font-size: 1.063rem;
    font-weight: 400;
    color: #1D0710;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.join-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.join-text {
    flex: 1;
    text-align: left;
}

.join-label {
    font-size: 1.063rem;
    font-weight: 600;
    color: #1D0710;
    margin-bottom: 15px;
}

.join-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 25px;
    margin: 0 0 20px 0;
}

.join-list li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #1D0710;
    padding: 5px 0;
    padding-left: 10px;
}

.join-list li::marker {
    color: #6B002E;
}

.join-footer {
    font-size: 0.938rem;
    font-style: italic;
    color: #1D0710;
    margin-bottom: 25px;
    text-align: center;
}

.join-community .container>.cta-button-secondary {
    display: inline-block;
}

.join-community .container {
    text-align: center;
}

.join-image {
    flex: 1;
    width: 100%;
    max-width: 450px;
}

.join-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Closing CTA Card */
.closing-cta {
    position: relative;
    padding: 50px 30px;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 40px;
}

.closing-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.closing-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.closing-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closing-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Tablet */
@media (min-width: 768px) {
    .join-community {
        padding: 80px 0;
    }

    .join-title {
        font-size: 2.25rem;
    }

    .join-subtitle {
        font-size: 1.525rem;
        font-weight: 500;
        margin-bottom: 50px;
    }

    .join-content {
        flex-direction: row;
        gap: 50px;
        margin-bottom: 60px;
    }

    .join-label {
        font-size: 1.125rem;
    }

    .join-list li {
        font-size: 1.063rem;
    }

    .join-footer {
        font-size: 1rem;
    }

    .join-image {
        max-width: 500px;
    }

    .closing-cta {
        padding: 60px 50px;
    }

    .closing-text {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .join-title {
        font-size: 2.5rem;
    }

    .join-image {
        max-width: 550px;
    }

    .closing-text {
        font-size: 1.5rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #FCB704;
    outline-offset: 2px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #540720;
    color: #FFFFFF;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 60px;
    padding: 60px 0 40px;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-links-section {
    display: flex;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FCB704;
}

.footer-contact-section h4 {
    color: #FCB704;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #FCB704;
}

.footer-bottom {
    background: #FCB704;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 14px;
    color: #1D0710;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-links-section {
        justify-content: center;
    }

    .footer-contact-section {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
        gap: 30px;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}