/* CSS Variables */
:root {
    --sunshine-yellow: #efcd05;
    --sunshine-yellow-dark: #e5b804;
    --sky-blue: #90d7f7;
    --sky-blue-dark: #006ABA;
    --cherry-red: #eb322e;
    --cherry-red-dark: #a51414;
    --fresh-green: #9af625;
    --fresh-green-dark: #6bb31a;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
}

[data-aos] {
    overflow: hidden !important; /* keep overflow hidden */
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
}

html, body{
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: "Comfortaa", sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

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

/* Utility Classes */
.container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--sky-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 150px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: "Patrick Hand", cursive;
    text-decoration: none;
    color: var(--light-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--cherry-red);
}

.nav-link.active {
    color: var(--fresh-green);
    font-weight: 600;
}

/* CTA Button - Reusable */
.cta-btn {
    display: inline-block;
    padding: 9px 30px;
    background: var(--sunshine-yellow-dark);
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 400;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(154, 246, 37, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Patrick Hand", cursive;
    font-size: 1.3rem;
    border-bottom: 5px var(--cherry-red) solid;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(154, 246, 37, 0.5);
}

/* Menu Icon (Hamburger) */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background: var(--cherry-red);
    margin: 2.7px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-icon .menu-icon-middle{
    width: 20px;
    margin-left: 10px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {

    .logo-img {
        width: 100px;
    }

    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cherry-red-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s ease-in-out;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.5rem;
        border-bottom: var(--sunshine-yellow) solid 1px;
        text-align: start;
        margin-left: 1rem;
        color: white;
        letter-spacing: 5px;
    }

    .cta-btn {
        margin-top: 1rem;
        display: inline-block;
    }

    /* Animate hamburger to X when menu open */
    .menu-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--sky-blue-dark), #1ac3e8);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.hero-content {
    padding-left: 15rem;
}

.welcome-text {
    font-family: "Patrick Hand", cursive;
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: bold;
}

.hero-title {
    font-family: "Nunito", sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--sunshine-yellow);
    font-weight: bolder;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 2;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 15px 35px;
}

.hero-images {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smiley-bg {
    position: absolute;
    width: 60vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    margin-left: 10rem;
    margin-bottom: 4rem;
}

.smiley-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kid-image-wrapper {
    position: absolute;
    z-index: 2;
    margin-top: 10rem;
    margin-left: 15rem;
    width: 40rem;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Update mobile responsive */
@media screen and (max-width: 968px) {
    .hero-images {
        height: 500px;
    }
    
    .kid-image-wrapper {
        width: 300px;
        height: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {

    .hero-images {
        height: 400px;
    }
    
    .kid-image-wrapper {
        width: 250px;
        height: 350px;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding-left: 0;
        text-align: start;
        padding-top: 8rem;
        z-index: 999;
    }

    .hero{
        height: 120vh;
    }

    .welcome-text{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

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

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .smiley-bg{
        height: auto;
        margin-left: 25rem;
        margin-bottom: 90rem;
        width: 80vw;
        opacity: 0.7;
    }

    .kid-image-wrapper {
        margin: -4rem 0 0 8rem;
        width: 20rem;
    }

}

@media screen and (max-width: 480px) {

    .hero{
        height: 120vh;
    }

    .welcome-text{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

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

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .smiley-bg{
        height: auto;
        margin-left: 25rem;
        margin-bottom: 90rem;
        width: 80vw;
        opacity: 0.7;
    }

    .kid-image-wrapper {
        margin: -4rem 0 0 8rem;
        width: 20rem;
    }
}

/* Cloud Transition */
.cloud-transition {
    position: relative;
    width: 100%;
    height: 150px; /* adjust based on your cloud image */
    margin-top: -130px; /* overlap with hero slightly */
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or 'contain' depending on your image */
}
/* Mobile */
@media screen and (max-width: 768px) {
    .cloud-transition {
        height: 100px;
        margin-top: -100px;
    }
}

/* Trust Section */
.trust-section {
    max-width: 1450px;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
    border-left: dotted var(--dark-gray) 1px;
}

.trust-title {
    font-family: "Patrick Hand", cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-number {
    font-size: 5rem;
    color: var(--cherry-red);
    line-height: 1.2;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-title{
        font-size: 1rem;
    }

    .trust-item {
        padding: 0.3rem;
        border: none;
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
}

.custom-section{
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    padding: 10rem 0;
    padding-top: 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding-right: 2rem;
}

.about-label {
    font-family: "Patrick Hand", cursive;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cherry-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-weight: 700;
}

.about-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: bolder;
    color: var(--dark-gray);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-cta:hover .arrow {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-content {
        padding-right: 0;
        text-align: start;
    }

    .about-features {
        align-items: start; 
        flex-direction: column;
    }

    .feature-item {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 1rem;
    }
}

/* link Transition */
.link-transition {
    position: relative;
    width: 100%;
    height: 150px; /* adjust based on your cloud image */
    margin-top: -130px; /* overlap with hero slightly */
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-img {
    width: 100%;
    height: 100%;
    background-color: var(--cherry-red);
    object-fit: cover; /* or 'contain' depending on your image */
}
/* Mobile */
@media screen and (max-width: 768px) {
    .link-transition {
        height: 100px;
        margin-top: -100px;
    }
}


/* Programs Section */
.programs-section {
    padding: 3rem 0;
    background: var(--cherry-red);
}

.programs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-family: "Patrick Hand", cursive;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding: 1rem;
}

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

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

.card-content {
    padding: 1.5rem;
}

.age-range {
    font-family: "Patrick Hand", cursive;
    font-size: 0.9rem;
    color: var(--cherry-red);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.program-name {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: bolder;
}

.program-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--cherry-red-dark);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-right: auto;
    margin-left: auto;
}

.program-btn:hover {
    background: var(--fresh-green);
    transform: scale(1.1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Why Choose Us Section */
.why-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 7rem;
    border-top-left-radius: 5rem;
    border-top-right-radius: 7rem;
    background-color: #fef7c0;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 1rem 0;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card-title {
    font-family: "Patrick Hand", cursive;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.why-card-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.6;
}

.why-label {
    font-family: "Patrick Hand", cursive;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cherry-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.why-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.9;
    margin: 0 auto;
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-title{
        font-size: 1.5rem;
    }

    .why-description{
        font-size: 0.85rem;
    }
}

/* Emotional Section */
.emotional-section {
    height: 100vh;
    background-image: url('/images/emotional-bg.png');
    background-size: cover;
    background-position: center;
    background-color: white;
    position: relative;
}

.emotional-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.emotional-content {
    max-width: 700px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.emotional-text {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-family: "Patrick Hand", cursive;
}

.emotional-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.emotional-cta {
    font-size: 1.1rem;
    padding: 15px 35px;
    background: var(--cherry-red);
    color: var(--light-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.emotional-cta:hover {
    background: var(--sunshine-yellow);
    color: var(--dark-gray);
}

.call-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.call-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sunshine-yellow-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.call-number:hover {
    color: var(--fresh-green);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .emotional-text {
        font-size: 1.5rem;
    }
    
    .emotional-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .emotional-section {
        height: 70vh;
    }
    
    .emotional-text {
        font-size: 1.3rem;
    }
    
    .call-number {
        font-size: 1.1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    padding: 20px 0 20px;
}

.carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    height: 17rem;
}

.stars {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-weight: bold;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.quote-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    position: relative;
    bottom: -30px;
    right: -10px;
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.parent-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.parent-details {
    text-align: left;
}

.parent-name {
    font-family: "Patrick Hand", cursive;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.parent-title {
    font-size: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--sunshine-yellow);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--cherry-red);
    width: 25px;
    border-radius: 10px;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 968px) {
    .carousel-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media screen and (max-width: 600px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .carousel-btn {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-height: 15rem;
        padding: 1rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        bottom: -20px;
        right: -5px;
    }
    
    .parent-info {
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
    }
    
    .parent-img {
        width: 40px;
        height: 40px;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    padding-top: 0;
    background: var(--white);
    position: relative;
    max-width: 1300px;
    margin-bottom: 5rem;
}

.cta-card {
    background: #ffe5b3;
    border-radius: 30px;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 500px;
    margin: 4rem 0 5rem 1rem;
}

.cta-small {
    font-family: "Patrick Hand", cursive;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cherry-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-weight: bolder;
}

.cta-text {
    font-size: 1rem;
    color: var(--dark-gray);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-content .cta-btn{
    background-color: var(--cherry-red);
    border: none;
}

.cta-arrow {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-img {
    width: 320px;
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}

/* Bottom linking image */
.cta-bottom-link {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100px;
}

.bottom-linking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .cta-card {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 2rem;
    }
    
    .cta-content {
        margin: 0 auto;
    }
    
    .cta-image-wrapper {
        order: -1;
    }
    
    .vertical-img {
        width: 250px;
        height: 350px;
    }
    
    .cta-bottom-link {
        bottom: -15px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .vertical-img {
        display: none;
    }
    
    .cta-bottom-link {
        bottom: -10px;
        height: 30px;
    }
}

/* Footer */
.footer {
    background: var(--sunshine-yellow-dark);
    color: var(--dark-gray);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-motto {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
    max-width: 250px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--cherry-red);
}

.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-link:hover img {
    filter: none;
}

/* Footer Titles */
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: black
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--cherry-red);
}

/* Quick Links */
.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--cherry-red);
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 7px;
}

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

.contact-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

.contact-info {
    color: black;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-info:hover {
    color: var(--cherry-red);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-motto {
        max-width: 100%;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links, .footer-contact {
        text-align: left;
    }

    .footer-menu a:hover {
        padding-left: 0;
    }

    .contact-item {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }
}