#corp-landing-page {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #4e362d;
    background-color: white;
}

#corp-landing-page h1,
#corp-landing-page h2,
#corp-landing-page h3,
#corp-landing-page h4,
#corp-landing-page h5,
#corp-landing-page h6 {
    color: #222222;
    margin-top: 0;
    margin-bottom: 20px;
}

#corp-landing-page p {
    margin-bottom: 15px;
}

#corp-landing-page a {
    color: #96634F;
    text-decoration: none;
}

#corp-landing-page a:hover {
    text-decoration: underline;
}

/* [062325TIN] Fix override css of Divi */
body:not(.et-tb) #main-content #corp-landing-page .container,
#corp-landing-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* Section styles */
#corp-landing-page .section {
    padding: 40px 0;
    text-align: center;
}

#corp-landing-page .section .container {
    text-align: center;
}

#corp-landing-page .hero .get-ready__button {
    margin-top: 60px;
}

#corp-landing-page .hero__cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: #96634F;
    color: #ffffff;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

#corp-landing-page .hero__cta:hover {
    background-color: #7a4f3e;
    text-decoration: none;
}

/* Hero Section */
#corp-landing-page .hero {
    /* Background image related to pottery/art */
    /* background: radial-gradient(#96634fc2, rgba(255, 255, 255, .2)), url('https://happyhandspottery.ca/wp-content/uploads/2025/06/Terracotta-Pottery-Display.jpeg') no-repeat center center/cover; */
    color: #ffffff;
    /* padding: 80px 20px 80px; */
    position: relative;
}

#corp-landing-page .hero__content {
    z-index: 1;
    /* Ensure text is above images if they overlap */
}

#corp-landing-page .hero__title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #96634F;
    /* -webkit-text-fill-color: white;
    -webkit-text-stroke: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    line-height: 1.2;
}

#corp-landing-page .hero__description {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #96634F;
    font-weight: 500;
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
}

/* Our Valued Partners Section (integrated into Hero visually) */
#corp-landing-page .partners-logos {
    /* background-color: rgba(255, 255, 255, 0.7); */
    /* Slightly transparent white */
    border-radius: 32px;
    margin-top: 40px;
    /* Space from hero text */
    /* padding: 40px 0; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

#corp-landing-page .partners-logos__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #96634F;
    line-height: 1.5;
}

#corp-landing-page .partners-logos__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 20px;
}

@media (max-width: 1024px) {
    #corp-landing-page .partners-logos__grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    #corp-landing-page .hero .get-ready__button {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    #corp-landing-page .partners-logos__title {
        font-size: 18px;
    }

    #corp-landing-page .partners-logos__grid {
        grid-template-columns: repeat(3, minmax(50px, 1fr));
        gap: 10px;
    }
}

#corp-landing-page .partners-logos__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px;
}

#corp-landing-page .partners-logos__logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
}

#corp-landing-page .partners-logos .splide__pagination {
    bottom: -1.5rem;
    padding: 0;
}

#corp-landing-page .partners-logos .splide__pagination__page {
    background: #935d4a29;
}

#corp-landing-page .partners-logos .splide__pagination__page.is-active {
    background: #96634F;
}

/* Services Section */
#corp-landing-page .services {
    /* padding: 80px 0; */
    /* background-color: #fff5f1; */
}

#corp-landing-page .services__title {
    margin-bottom: 40px;
}

#corp-landing-page .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 42px;
    padding: 0;
}

#corp-landing-page .service-card {
    background-color: #ffffff;
    border-radius: 12px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* transition: transform 0.3s ease; */
}

/* #corp-landing-page .service-card:hover {
    transform: translateY(-5px);
} */

#corp-landing-page .service-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

#corp-landing-page .service-card__content {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #96634f;
    flex: 1;
}

#corp-landing-page .service-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #96634f;
    line-height: 1.5;
}

#corp-landing-page .service-card__description {
    font-size: 15px;
    color: #96634f;
    margin-bottom: 15px;
}

/* Testimonials Section */
#corp-landing-page .testimonials {
    background-color: #ffffff;
    /* padding: 80px 0; */
}

#corp-landing-page .testimonials .splide__pagination {
    bottom: -3.5rem;
}

#corp-landing-page .testimonials .splide__pagination__page.is-active {
    background: #935d4a;
}

#corp-landing-page .testimonials__title {
    margin-bottom: 40px;
}

#corp-landing-page .testimonial-card {
    background-color: transparent;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    min-height: 220px;
    height: 100%;
    border: 2px solid #a3715f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#corp-landing-page .testimonial-card__quote {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

#corp-landing-page .testimonial-card__author {
    font-weight: 600;
    color: #96634F;
    font-size: 16px;
}

#corp-landing-page .testimonial-card__company {
    font-size: 14px;
    color: #777777;
}

/* Team Building Gallery Section */
#corp-landing-page .team-building-gallery {
    /* padding: 80px 0; */
    /* background-color: #fff5f1; */
}

#corp-landing-page .team-building-gallery__title,
#corp-landing-page .final-product-image__title {
    margin-bottom: 10px;
}

#corp-landing-page .team-building-gallery__subtitle,
#corp-landing-page .final-product-image__subtitle {
    font-size: 18px;
    color: #4e362d;
    margin-bottom: 40px;
}

#corp-landing-page .team-building-gallery__layout,
#corp-landing-page .final-product-image__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    /* Left pane wider than right pane */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

#corp-landing-page .final-product-image__layout {
    grid-template-columns: 3fr 2fr;
}

#corp-landing-page .team-building-gallery__left-pane,
#corp-landing-page .final-product-image__left-pane {
    /* background-color: #ffffff; */
    background-color: transparent;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    /* Fixed height for the main image container */
}

#corp-landing-page .final-product-image__left-pane {
    height: fit-content;
}

#corp-landing-page .team-building-gallery__main-image,
#corp-landing-page .final-product-image__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

#corp-landing-page .final-product-image__main-image {
    display: block;
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#corp-landing-page .team-building-gallery__right-pane,
#corp-landing-page .final-product-image__right-pane {
    background-color: transparent;
    padding: 0;
    box-sizing: border-box;
    height: 500px;
    /* Match height of left pane */
    display: flex;
    /* Flexbox for internal spacing */
    flex-direction: column;
    /* Splide will handle its own internal direction */
    justify-content: center;
    /* Center splide if it doesn't fill height */
}

#corp-landing-page .final-product-image__right-pane {
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}

#team-building-thumbnails-carousel .splide__arrows--ttb .splide__arrow--prev,
#final-product-thumbnails-carousel .splide__arrows--ttb .splide__arrow--prev {
    top: -2em;
}

#team-building-thumbnails-carousel .splide__arrows--ttb .splide__arrow--next,
#final-product-thumbnails-carousel .splide__arrows--ttb .splide__arrow--next {
    bottom: -2em;
}

#team-building-thumbnails-carousel .splide__arrow,
#final-product-thumbnails-carousel .splide__arrow {
    background-color: transparent;
    opacity: 1;
}

#team-building-thumbnails-carousel .splide__arrow:disabled,
#final-product-thumbnails-carousel .splide__arrow:disabled {
    opacity: 0.5;
}

#team-building-thumbnails-carousel .splide__arrow svg,
#final-product-thumbnails-carousel .splide__arrow svg {
    fill: #906455;
}

#corp-landing-page .final-product-image__thumbnail-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

#corp-landing-page .team-building-gallery__thumbnail,
#corp-landing-page .final-product-image__thumbnail {
    width: 100%;
    /* Thumbnail fills its slide width */
    height: 100%;
    /* Fixed height for thumbnails */
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, border 0.2s ease;
    border: 2px solid transparent;
}

#corp-landing-page .final-product-image__thumbnail {
    height: 100%;
    max-height: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

#corp-landing-page .team-building-gallery__thumbnail:hover,
#corp-landing-page .team-building-gallery__thumbnail.active,
#corp-landing-page .final-product-image__thumbnail:hover,
#corp-landing-page .final-product-image__thumbnail.active {
    border: 2px solid #906455;
    box-shadow: 0 4px 20px #7a4f3e16;
}

/* Adjust Splide styles for vertical thumbnails */
#corp-landing-page .team-building-gallery__right-pane .splide__track,
#corp-landing-page .final-product-image__right-pane .splide__track {
    height: 100%;
    /* Allow track to fill parent height */
}

#corp-landing-page .team-building-gallery__right-pane .splide__list,
#corp-landing-page .final-product-image__right-pane .splide__list {
    box-sizing: border-box;
}

#corp-landing-page .team-building-gallery__right-pane .splide__slide,
#corp-landing-page .final-product-image__right-pane .splide__slide {
    /* No fixed width/height here; Splide manages it with gap and perPage */
    margin-bottom: 15px;
    box-sizing: border-box;
    padding: 10px;
    /* Adjust vertical gap between thumbnails */
}

/* Remove last margin from slide */
#corp-landing-page .team-building-gallery__right-pane .splide__slide:last-child,
#corp-landing-page .final-product-image__right-pane .splide__slide:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
#corp-landing-page .faq {
    background-color: white;
    /* padding: 80px 0; */
    padding-bottom: 80px;
}

#corp-landing-page .faq__title {
    margin-bottom: 40px;
}

#corp-landing-page .faq__accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
}

#corp-landing-page .accordion {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#corp-landing-page .accordion-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#corp-landing-page .accordion-item__label {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    min-width: fit-content;
    max-width: calc(100% - 10px);
    font-size: 20px;
    color: #202020;
}

#corp-landing-page .accordion-item__arrow {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

#corp-landing-page .accordion-item__arrow svg {
    transform: rotate(-90deg);
    transition: all 0.4s ease-in-out;
}

#corp-landing-page .accordion-item__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
    gap: 15px;
    outline: none;
    color: #686868;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
}

#corp-landing-page .accordion-item__content-wrap {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* [062725TIN] Make links bold to easy see */
#corp-landing-page .accordion-item__content-wrap a {
    font-weight: 600;
}

#corp-landing-page .accordion-item:has(input[name=accordion-radio]:checked) .accordion-item__arrow svg {
    transform: rotate(0deg);
}

#corp-landing-page .accordion-item:has(input[name=accordion-radio]:checked) .accordion-item__content {
    grid-template-rows: 1fr;
}

/* CTA Section */
#corp-landing-page .cta-section {
    /* Subtle gradient */
    box-sizing: border-box;
    margin: 0 auto;
    /* background-color: #fff5f1; */
}

#corp-landing-page .cta-container {
    padding: 80px 20px;
    display: block;
    max-width: 1000px;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 24px;
    /* background: #96634f2e; */
    background-color: transparent;
    border: 1px solid #96634F;
    box-shadow: 2px 4px 10px 0 #33333342;
}

#corp-landing-page .cta-section__title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #96634F;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

#corp-landing-page .cta-section__description {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #96634F;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

#corp-landing-page .cta-section__button {
    display: inline-block;
    padding: 10px 24px;
    /* background-color: #ffffff; */
    /* color: #96634F; */
    background-color: #96634F;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

#corp-landing-page .cta-section__button:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #96634f5b;
}

/* title font for sections */
#corp-landing-page .services__title,
#corp-landing-page .testimonials__title,
#corp-landing-page .team-building-gallery__title,
#corp-landing-page .final-product-image__title,
#corp-landing-page .faq__title {
    font-size: 42px;
    font-weight: 500;
    color: #96634F;
    line-height: 1.4;
}


/* Responsive Design */

/* Breakpoint: Less than 1024px */
@media (max-width: 1023px) {
    #corp-landing-page .hero__title {
        font-size: 42px;
        font-weight: 600;
    }

    #corp-landing-page .hero__description {
        font-size: 18px;
    }

    #corp-landing-page .services__title,
    #corp-landing-page .testimonials__title,
    #corp-landing-page .team-building-gallery__title,
    #corp-landing-page .final-product-image__title,
    #corp-landing-page .faq__title {
        font-size: 32px;
        font-weight: 600;
    }

    #corp-landing-page .section {
        padding: 30px 0;
    }

    #corp-landing-page .testimonials__title {
        margin-bottom: 20px;
    }

    #corp-landing-page .header-1 {
        display: none;
        /* Hide desktop header */
    }

    #corp-landing-page .header-mobile-1 {
        display: flex;
        /* Show mobile header */
    }

    #corp-landing-page .partners-logos__logo img {
        max-height: 50px;
    }

    #corp-landing-page .cta-section__title {
        font-size: 36px;
    }

    #corp-landing-page .cta-section__description {
        font-size: 18px;
    }
}

/* Breakpoint: Less than 786px */
@media (max-width: 785px) {
    #corp-landing-page .hero {
        padding: 100px 20px 60px;
    }

    #corp-landing-page .hero__title {
        font-size: 36px;
    }

    #corp-landing-page .hero__description {
        font-size: 16px;
    }

    #corp-landing-page .services__title,
    #corp-landing-page .testimonials__title,
    #corp-landing-page .team-building-gallery__title,
    #corp-landing-page .final-product-image__title,
    #corp-landing-page .faq__title {
        font-size: 28px;
    }

    /* #corp-landing-page .section {
        padding: 30px 0;
    } */

    #corp-landing-page .testimonial-card {
        padding: 25px;
    }

    #corp-landing-page .testimonial-card__quote {
        font-size: 16px;
    }

    #corp-landing-page .services__grid {
        grid-template-columns: 1fr;
    }

    /* Team Building Gallery responsive adjustments */
    #corp-landing-page .team-building-gallery__layout,
    #corp-landing-page .final-product-image__layout {
        grid-template-columns: 1fr;
        /* Stack columns vertically */
        gap: 10px;
        /* More gap when stacked */
    }

    #corp-landing-page .team-building-gallery__left-pane,
    #corp-landing-page .final-product-image__left-pane {
        height: fit-content;
    }

    #corp-landing-page .team-building-gallery__main-image,
    #corp-landing-page .final-product-image__main-image {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    #corp-landing-page .team-building-gallery__right-pane,
    #corp-landing-page .final-product-image__right-pane {
        height: auto;
        /* Allow height to adjust for vertical carousel content */
        padding: 10px;
        /* Smaller padding on mobile */
    }

    #corp-landing-page .team-building-gallery__thumbnail,
    #corp-landing-page .final-product-image__thumbnail {
        height: 120px;
        width: 100%;
    }

    #corp-landing-page .team-building-gallery__right-pane .splide__track,
    #corp-landing-page .final-product-image__right-pane .splide__track {
        height: auto;
        /* Track height can be auto for horizontal arrangement */
    }

    #corp-landing-page .team-building-gallery__right-pane .splide__list,
    #corp-landing-page .final-product-image__right-pane .splide__list {
        /* Splide will revert to horizontal if direction is changed */
        /* display: flex; */
        /* Explicitly ensure horizontal flow if needed */
        /* flex-direction: row; */
        /* Ensure horizontal for mobile */
    }

    #corp-landing-page .team-building-gallery__right-pane .splide__slide,
    #corp-landing-page .final-product-image__right-pane .splide__slide {
        /* width: 120px; */
        /* Keep thumbnails visible */
        margin-bottom: 0;
        /* Remove vertical margin */
        /* margin-right: 10px; */
        /* Add horizontal margin back */
    }

    #team-building-thumbnails-carousel .splide__arrows--ltr .splide__arrow--prev,
    #final-product-thumbnails-carousel .splide__arrows--ltr .splide__arrow--prev {
        left: -1.5em;
    }

    #team-building-thumbnails-carousel .splide__arrows--ltr .splide__arrow--next,
    #final-product-thumbnails-carousel .splide__arrows--ltr .splide__arrow--next {
        right: -1.5em;
    }

    #corp-landing-page .cta-section__description {
        font-size: 18px;
    }

    #corp-landing-page .cta-section__title {
        font-size: 32px;
    }

    #corp-landing-page .cta-section__description {
        font-size: 16px;
    }

    #corp-landing-page .cta-section__button {
        /* padding: 15px 30px; */
        /* font-size: 18px; */
    }

}

/* Breakpoint: Less than 480px */
@media (max-width: 479px) {
    #corp-landing-page .hero {
        padding: 80px 15px 40px;
    }

    #corp-landing-page .hero__title {
        font-size: 26px;
    }

    #corp-landing-page .hero__description {
        font-size: 15px;
    }

    #corp-landing-page .services__title,
    #corp-landing-page .testimonials__title,
    #corp-landing-page .team-building-gallery__title,
    #corp-landing-page .final-product-image__title,
    #corp-landing-page .faq__title {
        font-size: 24px;
    }

    #corp-landing-page .section {
        /* padding: 30px 0; */
    }

    #corp-landing-page .partners-logos__logo img {
        max-height: 40px;
    }

    #corp-landing-page .testimonial-card {
        padding: 20px;
    }

    #corp-landing-page .service-card__content {
        padding: 20px;
    }

    #corp-landing-page .service-card__title {
        font-size: 20px;
    }

    #corp-landing-page .service-card__description {
        font-size: 14px;
    }

    #corp-landing-page .cta-section__button {
        /* padding: 12px 25px; */
        padding: 8px 16px;
        font-size: 16px;
    }

    #corp-landing-page .cta-container {
        padding: 40px 15px;
    }

    #corp-landing-page .faq__question-icon {
        font-size: 20px;
    }

    #corp-landing-page .final-product-image__left-pane,
    #corp-landing-page .final-product-image__right-pane {
        height: fit-content;
        max-width: calc(100% - 20px);
    }
}

#corp-landing-page .get-ready {
    text-align: center;
}

#corp-landing-page .get-ready__title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
    padding: 0;
    background: linear-gradient(135deg, #f19e7e, #8e5945);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
}

@media (max-width: 1023px) {
    #corp-landing-page .get-ready__title {
        font-size: 24px;
        font-weight: 600;
    }
}

#corp-landing-page .get-ready__button {
    display: inline-block;
    /* padding: 10px 24px; */
    padding: 16px 50px;
    background-color: #96634F;
    color: #ffffff;
    border: none;
    /* border-radius: 40px; */
    border-radius: 8px;
    cursor: pointer;
    /* font-size: 18px; */
    font-size: 24px;
    /* font-weight: 700; */
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

#corp-landing-page .get-ready__button:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #96634f5b;
}

@media (max-width: 479px) {
    #corp-landing-page .get-ready__button {
        /* padding: 8px 16px; */
        padding: 12px 30px;
        font-size: 18px;
        border-radius: 6px;
    }

}

#corp-landing-page .faq .get-ready,
#corp-landing-page .testimonials .get-ready {
    margin-top: 40px;
}