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

/* Style <sup> tags for trademark symbols */
sup {
    font-size: 20px;
    line-height: 0;
    vertical-align: super;
}

/* Team Member block - center on tablet & mobile */
@media (max-width: 968px) {
    .team-member-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .team-member-image {
        flex: 1;
        max-width: 500px;
        order: -1;
        margin-left: auto;
        margin-right: auto;
    }

    .team-member-image,
    .team-member-content {
        width: 100%;
    }

    .team-member-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    .team-member-content h2 {
        font-size: 32px;
    }

    .team-member-content p,
    .team-member-content h2,
    .team-member-section .wavy-divider {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .team-member-section {
        padding: 60px 20px;
    }

    .team-member-content h2 {
        font-size: 28px;
    }

    .team-member-content p {
        font-size: 15px;
    }

    .team-member-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-member-image,
    .team-member-content {
        width: 100%;
    }

    .team-member-content p,
    .team-member-content h2,
    .team-member-section .wavy-divider {
        text-align: center;
    }
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFFFF;
    line-height: 1.5;
    font-size: 1rem;
    color: #333;
    overflow-x: hidden;
}

/* Top Contact Bar */
.top-bar {
    background: #5DADE2;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}

.contact-item:hover {
    opacity: 0.9;
}

/* Hero Container - Contains both navbar and hero content */
.hero-container {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background-image 1.5s ease-in-out;
}

.hero-container-internal {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    max-height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.logo-column {
    width: 280px;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
}

.nav-column {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    transform: translateY(-60px); /* Move nav links up to align with hero content */
}

.empty-column {
    /* Balances the logo column width for perfect nav centering */
    width: 280px;
    flex-shrink: 0;
}

.logo {
    width: 300px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s, border-color 0.3s;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #5DADE2;
    border-bottom-color: #5DADE2;
}

/* Dropdown arrow */
.has-submenu > a {
    display: inline-flex;
    align-items: center;
}

.has-submenu > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    margin-top: 2px;
}

/* Submenu styles */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    padding: 15px 20px;
    color: #666;
    font-size: 13px;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
    border-bottom: none;
    width: 100%;
    display: block;
}

.submenu a:hover {
    background: #5DADE2;
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

/* Hamburger animation */
.mobile-toggle.active {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center; /* Center vertically now that navbar is absolute */
    justify-content: center;
    text-align: center;
    padding: 20px 20px 0px;
    flex: 1; /* Take remaining space in flex container */
    width: 100%; /* Ensure full width */
    box-sizing: border-box;
    position: relative; /* Ensure proper positioning */
}

.hero-content {
    max-width: 700px;
    color: white;
}

/* Internal Page Hero Section */
.internal-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex: 1;
}

.internal-hero-content {
    max-width: 600px;
    color: white;
}

.internal-hero h1 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3em;
}

.hero h1 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3em;
}

.hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero h2 strong {
    font-weight: 700;
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    background: #47A4DE;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    border-radius: 2px;
}

.cta-button:hover {
    background: #800080;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button .fa-arrow-right {
    margin-left: 10px;
}

/* Hero fade-up animations */
.hero-content h1,
.internal-hero-content h1 {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
    transition-duration: 0.6s, 0.6s;
    transition-timing-function: ease, ease;
    transition-delay: 0.2s, 0.2s;
}

.hero-content p {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
    transition-duration: 0.6s, 0.6s;
    transition-timing-function: ease, ease;
    transition-delay: 0.4s, 0.4s;
}

.hero-content .cta-button {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform, background, border, border-radius, box-shadow;
    transition-duration: 0.6s, 0.6s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-timing-function: ease, ease, ease, ease, ease, ease;
    transition-delay: 0.6s, 0.6s, 0s, 0s, 0s, 0s;
}

/* Trigger animations when loaded */
.hero-container.loaded .hero-content h1,
.hero-container.loaded .internal-hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-container.loaded .hero-content p {
    opacity: 1;
    transform: translateY(0);
}

.hero-container.loaded .hero-content .cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Section h2 fade-up animations */
section.fade-animate h2,
.what-is-daycation-content.fade-animate h2,
.about-content.fade-animate h2,
.about-section.fade-animate .about-content h2,
.benefits-accordion-container.fade-animate h2,
.mission-content.fade-animate h2,
.mission-section.fade-animate .mission-content h2,
.mission-credentials.fade-animate h2,
.mission-section.fade-animate .mission-credentials h2,
.content-image-text.fade-animate h2,
.special-days-content.fade-animate h2,
.special-days-section.fade-animate .special-days-content h2,
.schedule-intro-section.fade-animate h2,
.pricing-section.fade-animate h2,
.contact-info.fade-animate h2,
.contact-form-section.fade-animate .contact-info h2,
.services-section.fade-animate .services-heading,
.team-member-content.fade-animate h2,
.contact-cta-section.fade-animate .contact-cta-text h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Trigger animations when section is visible */
section.animate-in h2,
.what-is-daycation-content.animate-in h2,
.about-content.animate-in h2,
.about-section.animate-in .about-content h2,
.benefits-accordion-container.animate-in h2,
.mission-content.animate-in h2,
.mission-section.animate-in .mission-content h2,
.mission-credentials.animate-in h2,
.mission-section.animate-in .mission-credentials h2,
.content-image-text.animate-in h2,
.special-days-content.animate-in h2,
.special-days-section.animate-in .special-days-content h2,
.schedule-intro-section.animate-in h2,
.pricing-section.animate-in h2,
.contact-info.animate-in h2,
.contact-form-section.animate-in .contact-info h2,
.services-section.animate-in .services-heading,
.team-member-content.animate-in h2,
.contact-cta-section.animate-in .contact-cta-text h2 {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Bottom Accent Lines */
.hero-accents {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.hero-accent-blue {
    width: 50%;
    background: #47A4DE;
    height: 100%;
}

.hero-accent-purple {
    width: 50%;
    background: #800080;
    height: 100%;
}

/* Adjust hero content margin on shorter viewports */
@media (max-height: 700px) {
    .hero-content {
        margin-top: -30px; /* Less aggressive on short screens */
    }
    }
 
@media (max-width: 1200px) {
    /* Reduce logo and column sizes on smaller desktops/tablets */
    .logo {
        width: 200px;
    }
    
    .logo-column {
        width: 200px;
    }
    
    .empty-column {
        width: 200px;
    }

    .nav-column {
        transform: translateY(-40px); /* Reduce vertical shift on tablets */
    }

    .nav-menu {
        gap: 12px;
    }
}

/* Responsive Design - Mobile menu */
@media (max-width: 1250px) {
    .nav-content {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-column {
        width: auto;
        justify-content: flex-start;
    }

    .nav-column {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        transform: none; /* Remove transform on mobile */
        flex-grow: 0;
    }

    .empty-column {
        display: none;
    }

    .mobile-toggle {
        display: block;
        position: static;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        top: 100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 0;
        gap: 0;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    }

    .nav-menu.active {
        max-height: 100vh;
        padding: 0;
    }

    /* Float in animation for menu items */
    .nav-menu > li {
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        width: 100%;
    }

    /* Mobile menu link colors */
    .nav-menu a {
        color: #666;
        padding: 15px 20px;
        display: block;
        width: 100%;
        transition: background 0.3s, color 0.3s;
        border-bottom: none;
        text-align: center;
    }

    .has-submenu > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: #5DADE2;
        color: white !important;
        border-bottom-color: transparent;
    }

    .nav-menu.active > li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered delay for each menu item */
    .nav-menu.active > li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active > li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active > li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active > li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active > li:nth-child(5) {
        transition-delay: 0.5s;
    }

    /* Mobile submenu styles */
    .submenu {
        position: static;
        display: none;
        background: white;
        width: 100%;
        box-shadow: none;
        margin-top: 10px;
    }

    .submenu a {
        color: #666;
    }

    .submenu a:hover {
        background: #5DADE2;
        color: white;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .has-submenu > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .has-submenu > a::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        margin-left: 6px;
        margin-top: 0;
        transition: transform 0.3s;
        align-self: center;
    }

    .has-submenu.active > a::after {
        transform: rotate(180deg);
        display: inline-block;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero-content {
        margin-top: 20px; /* Positive margin on mobile to prevent overlap */
    }

    .hero-accent-blue,
    .hero-accent-purple {
        width: 50%;
    }

    .logo {
        width: 170px; /* Better size for mobile */
    }
}

@media (max-width: 640px) {
    .top-bar-content {
        font-size: 12px;
        justify-content: center;
    }

    .contact-item {
        flex-basis: 100%;
        justify-content: center;
    }

    .logo {
        width: 140px;
    }

    .hero-container {
        min-height: 600px;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-accent-blue,
    .hero-accent-purple {
        width: 50%;
    }

    .hero-accents {
        height: 6px;
    }

    /* Internal Hero Mobile Styles */
    .hero-container-internal {
        min-height: 60vh;
        max-height: 60vh;
    }

    .internal-hero {
        padding: 30px 20px;
    }

    .internal-hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
        line-height: 1.2em;
    }
}

/* About Section */
.about-section {
    padding: 120px 20px 80px;
    background: #FFFFFF;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-media {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    max-width: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.section-label {
    font-family: 'Roboto', sans-serif;
    color: #47A4DE;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.wavy-divider {
    width: 68px;
    height: 15px;
    margin-bottom: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='%23800080' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 15px 100%;
}

.wavy-divider-white {
    width: 68px;
    height: 15px;
    margin: 0 auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 15px 100%;
}

.about-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.learn-more-button {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    background: #47A4DE;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border-radius: 0px 0px 0px 0px;
    margin-top: 10px;
}

.learn-more-button:hover {
    background: #800080;
    transform: translateY(-8px);
}

/* Video decorative boxes */
.video-decoration {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.video-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-box-blue {
    width: 155px;
    height: auto;
    bottom: -20px;
    left: -20px;
    opacity: 0;
    transform: scale(0.85);
}

.video-box-purple {
    width: 155px;
    height: auto;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0.85);
}

/* Animated state for video boxes */
.video-decoration.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.video-box-blue.visible {
    transition-delay: 0.15s;
}

.video-box-purple.visible {
    transition-delay: 0.3s;
}

/* Mission decorative boxes */
.mission-decoration {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.mission-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission-box-blue {
    width: 155px;
    height: auto;
    bottom: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0.85);
}

.mission-box-purple {
    width: 155px;
    height: auto;
    top: -20px;
    left: -20px;
    opacity: 0;
    transform: scale(0.85);
}

/* Animated state for mission boxes */
.mission-decoration.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.mission-box-blue.visible {
    transition-delay: 0.15s;
}

.mission-box-purple.visible {
    transition-delay: 0.3s;
}

/* iPad and tablet specific fixes for video poster alignment */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-video {
        width: 100% !important;
        height: auto;
        display: block;
    }
    
    /* Force poster to fill width like video does */
    .about-media {
        width: 100%;
    }
    
    video.about-video {
        object-fit: contain;
    }
    
    video.about-video[poster] {
        object-fit: cover;
    }
}

@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .about-media,
    .about-content {
        width: 100%;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-content p,
    .about-content h2,
    .section-label,
    .learn-more-button {
        text-align: center;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 90px 20px 60px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }

    .video-box-blue,
    .video-box-purple {
        width: 100px;
    }

    .mission-box-blue,
    .mission-box-purple {
        width: 100px;
    }
    /* Center about section content on small/mobile screens */
    .about-container {
        /* keep stacked layout but center items */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-media,
    .about-content {
        width: 100%;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-content p,
    .about-content h2,
    .section-label,
    .learn-more-button {
        text-align: center;
    }
}

/* What is Daycation Section */
@media (max-width: 640px) {
    /* Center mission section on small/mobile screens while keeping decorations unchanged */
    .mission-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mission-image-left,
    .mission-image-right,
    .mission-credentials,
    .mission-content {
        width: 100%;
    }

    .mission-image-left .mission-img,
    .mission-image-right .mission-img {
        margin: 0 auto;
    }
    /* Center the wavy divider inside mission rows on mobile */
    .mission-row .wavy-divider {
        margin: 0 auto 30px;
    }
}

.what-is-daycation-section {
    padding: 80px 20px;
    background: white;
}

.what-is-daycation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.what-is-daycation-content {
    flex: 1;
    min-width: 0;
}

.what-is-daycation-content h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.what-is-daycation-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.benefits-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.benefits-list li::before {
    content: "\2605";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 20px;
}

/* Benefits Accordion Section */
.benefits-accordion-section {
    padding: 80px 20px;
    background: white;
}

.benefits-accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-accordion-container h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.wavy-divider-center {
    margin-left: auto;
    margin-right: auto;
}

.wavy-divider-center-small {
    margin: 0 auto 30px;
}

.benefits-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    max-width: 900px;
    margin: 30px auto 50px;
}

.accordion-grid {
    display: flex;
    gap: 20px;
    text-align: left;
}

.accordion-column {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    align-self: start;
}

.accordion-header {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    background: #FAFBFF;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #47A4DE;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #80BE43;
}

.accordion-item.active .accordion-header {
    color: #800080;
}

.accordion-header i {
    color: #800080;
    font-size: 14px;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    background: white;
}

.accordion-item.active .accordion-content {
    padding: 0;
}

.accordion-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin: 20px;
}

@media (max-width: 968px) {
    /* Add to existing 968px media query */
    .accordion-grid {
        gap: 15px;
    }

    .benefits-accordion-container h2 {
        font-size: 36px;
    }

    .accordion-column {
        gap: 15px;
    }
}

@media (max-width: 640px) {
    /* Add to existing 640px media query */
    .benefits-accordion-section {
        padding: 60px 20px;
    }

    .benefits-accordion-container h2 {
        font-size: 32px;
    }

    .benefits-intro {
        font-size: 15px;
    }

    .accordion-grid {
        flex-direction: column;
    }

    .accordion-column {
        width: 100%;
    }

    .accordion-header {
        font-size: 15px;
    }

    .accordion-content p {
        font-size: 15px;
    }
}

.what-is-daycation-image {
    flex: 1;
    min-width: 0;
    position: relative;
}

.performer-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.image-caption {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #47A4DE;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

/* Image decorative boxes */
.image-decoration {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.image-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-box-blue {
    width: 155px;
    height: auto;
    bottom: 35px;
    left: -20px;
    opacity: 0;
    transform: scale(0.85);
}

.image-box-purple {
    width: 155px;
    height: auto;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0.85);
}

/* Animated state for image boxes */
.image-decoration.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.image-box-blue.visible {
    transition-delay: 0.15s;
}

.image-box-purple.visible {
    transition-delay: 0.3s;
}

/* Responsive for What is Daycation */
@media (max-width: 968px) {
    .what-is-daycation-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .what-is-daycation-image {
        order: -1;
    }

    .what-is-daycation-image,
    .what-is-daycation-content {
        width: 100%;
    }

    .what-is-daycation-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .what-is-daycation-content h2 {
        font-size: 32px;
    }

    .what-is-daycation-content p,
    .section-label,
    .image-caption,
    .what-is-daycation-content .wavy-divider {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    /* Keep the benefits list items left-aligned while centering the list block */
    .what-is-daycation-content .benefits-list {
        text-align: left;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .what-is-daycation-section {
        padding: 60px 20px;
    }

    .what-is-daycation-content h2 {
        font-size: 28px;
    }

    .what-is-daycation-content p,
    .benefits-list li {
        font-size: 15px;
    }

    .image-box-blue,
    .image-box-purple {
        width: 100px;
    }
    /* Center what-is-daycation content on small screens */
    .what-is-daycation-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .what-is-daycation-image,
    .what-is-daycation-content {
        width: 100%;
    }

    .what-is-daycation-content p,
    .what-is-daycation-content h2,
    .section-label,
    .image-caption {
        text-align: center;
    }
    /* Keep the benefits list items left-aligned while centering the list block on small screens */
    .what-is-daycation-content .benefits-list {
        text-align: left;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Services Section */
.services-section {
    padding: 20px 20px;
    background: #FAFBFF;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-heading {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.wavy-divider-center {
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.service-card {
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
}

.service-card h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-heading {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 60px 20px;
    }

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

    .services-heading {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 15px;
    }
}

/* Mission Statement Section */
.mission-section {
    padding: 80px 20px;
    background: #FAFBFF;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.mission-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mission-row-bottom {
    margin-bottom: 0;
}

.mission-image-left,
.mission-image-right {
    flex: 1;
    min-width: 0;
    position: relative;
}

.mission-img {
    width: 100%;
    display: block;
    position: relative;
    max-height: 500px;
    object-fit: cover;
    z-index: 2;
}

.mission-content {
    flex: 1;
    min-width: 0;
}

.mission-content h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.mission-content p {
    font-family: 'Roboto', sans-serif;
    margin-top: 30px;
}

.mission-credentials {
    flex: 1;
    min-width: 0;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.credentials-list li {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 2px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.entry-content .credentials-list li,
.entry-content .credentials-list p {
    margin-bottom: 2px;
}

.credentials-list li::before {
    content: "\2605";
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .mission-row {
        flex-direction: column;
        gap: 40px;
        align-items: center; /* Center items horizontally */
        text-align: center; /* Center text content */
    }

    .mission-content h2 {
        font-size: 36px;
    }

    /* Center the wavy divider on mobile */
    .mission-content .wavy-divider,
    .mission-credentials .wavy-divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile order: Heading → Wavy → Text → Image1 → Image2 → Wavy → List */
    .mission-image-left {
        order: 3; /* After heading and text */
    }

    .mission-content {
        order: 1; /* First: heading, wavy, text */
    }

    .mission-image-right {
        order: 4; /* After first image */
    }

    .mission-credentials {
        order: 5; /* Last: wavy divider and list */
    }

    /* Make sure both rows stack properly */
    .mission-container {
        display: flex;
        flex-direction: column;
    }

    .mission-row,
    .mission-row-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center credentials list items */
    .credentials-list {
        display: inline-block; /* Keep items aligned while centering the block */
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    /* Ensure list items keep the star and text aligned on small screens */
    .credentials-list li {
        justify-content: flex-start;
        max-width: 680px;
        box-sizing: border-box;
    }
    /* Mobile sizing and image rules for mission block */
    .mission-image-left,
    .mission-image-right {
        width: 100%;
        max-width: 600px; /* Prevent images from becoming too wide on larger small screens */
    }

    .mission-content,
    .mission-credentials {
        width: 100%;
    }

    /* Ensure images maintain proper aspect ratio and don't get cropped on mobile */
    .mission-image-left .mission-img,
    .mission-image-right .mission-img,
    .mission-img {
        width: 100%;
        height: auto;
        max-height: none;
        display: block;
        object-fit: cover;
    }

}

@media (max-width: 640px) {
    .mission-section {
        padding: 60px 20px;
    }

    .mission-content h2 {
        font-size: 32px;
    }

    .mission-content p {
        font-size: 15px;
    }

    .credentials-list {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .credentials-list li {
        font-size: 15px;
        justify-content: flex-start;
    }

}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('testimonials-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-heading {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: white;
}

.testimonials-description {
    font-family: 'Roboto', sans-serif;
    color: white;
    max-width: 900px;
    margin: 0 auto
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px 30px;
    text-align: left;
    position: relative;
    border-top: 5px solid;
}

.testimonial-card-purple {
    border-top-color: #800080;
}

.testimonial-card-blue {
    border-top-color: #5DADE2;
}

.testimonial-card-pink {
    border-top-color: #E91E63;
}

.testimonial-text {
    font-family: 'Playfair Display', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
    color: #333333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid;
}

.author-photo-purple {
    border-color: #800080;
}

.author-photo-blue {
    border-color: #5DADE2;
}

.author-photo-pink {
    border-color: #E91E63;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 968px) {
    .testimonials-section {
        background-attachment: scroll;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-heading {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-heading {
        font-size: 32px;
    }

    .testimonials-description {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 30px 20px 20px;
    }
}

/* Get In Touch Section */
.contact-cta-section {
    padding: 80px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-cta-content {
    background: #FAFBFF;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.contact-cta-text h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 15px;
}

.contact-cta-text p {
    font-family: 'Roboto', sans-serif;
}

.contact-cta-button {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    background: #47A4DE;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border-radius: 0px 0px 0px 0px;
    white-space: nowrap;
}

.contact-cta-button:hover {
    background: #800080;
    transform: translateY(-8px);
}

/* Decorative animated corner boxes */
.cta-decoration {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.cta-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-box-blue {
    width: 155px;
    height: auto;
    bottom: -20px;
    left: -20px;
    opacity: 0;
    transform: scale(0.85);
}

.cta-box-purple {
    width: 155px;
    height: auto;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0.85);
}

/* Animated state */
.cta-decoration.visible {
    opacity: 1;
    transform: scale(1);
}

.cta-box-blue.visible {
    transition-delay: 0.15s;
}

.cta-box-purple.visible {
    transition-delay: 0.3s;
}

@media (max-width: 968px) {
    .contact-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }

    .contact-cta-text h2 {
        font-size: 36px;
    }

    .contact-cta-button-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .contact-cta-section {
        padding: 60px 20px;
    }

    .contact-cta-content {
        padding: 40px 30px;
    }

    .contact-cta-text h2 {
        font-size: 28px;
    }

    .contact-cta-text p {
        font-size: 15px;
    }

    .contact-cta-button {
        padding: 15px 40px;
        font-size: 14px;
    }

    .cta-box-blue,
    .cta-box-purple {
        width: 100px;
    }
}

/* Footer */
.footer {
    background: #47A4DE;
    padding: 6em 0em 4em 0em;
    color: white;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

.footer-brand {
    width: 40%;
    margin: 0px 40px 0px 0px;
}

.footer-brand > a {
    display: inline-block;
    margin-bottom: 20px;
    margin-top: -90px;
    line-height: 0;
}

.footer-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-tagline {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 25px;
    color: white;
    line-height: 1.7;
    font-size: 16px;
    max-width: 900px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Footer Award Logo */
.footer-award {
    margin-top: 30px;
    display: inline-block;
}

.award-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-column h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 40px;
    color: white;
    margin-top: 0;
}

.footer-column:not(.footer-brand) {
    width: 20%;
}

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

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

.footer-links a {
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    line-height: 1.7;
}

.footer-links a:hover {
    color:#54595F;
    transition: color 0.3s;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.footer-contact i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact a {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 16px;
    line-height: 1.7;
}

.footer-contact a:hover {
    color:#54595F;
    transition: color 0.3s;
}

/* Footer Accent Lines */
.footer-accents-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    display: flex;
    pointer-events: none;
}

.footer-accent-top-purple {
    width: 40%;
    background: #800080;
    height: 100%;
}

.footer-accents-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.footer-accent-bottom-purple {
    width: 40%;
    background: #800080;
    height: 100%;
}

@media (max-width: 968px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-brand > a {
        margin-top: -60px;
    }
    
    /* Center footer content on smaller screens */
    .footer-container {
        justify-items: center;
        text-align: center;
    }

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

    .footer-award {
        margin-top: 20px;
    }

    .award-logo {
        width: 90px;
        height: 90px;
    }

    .footer-contact li {
        justify-content: center;
    }

    /* Stack footer links vertically (column) on mobile */
    .footer-links {
        text-align: center;
        padding: 0;
    }

    .footer-links li {
        display: block;
        margin: 0 0 12px;
    }

    .footer-links a {
        display: inline-block;
    }

    /* Stack the map icon above the address and center it */
    .footer-contact li:first-child {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact li:first-child i {
        display: block;
        margin-bottom: 8px;
        font-size: 20px; /* keep icon size reasonable */
    }
    
    /* Allow tagline to use full width on smaller screens */
    .footer-tagline {
        max-width: 100%;
    }
    
    /* Additional mobile-friendly overrides for footer */
    .footer-container {
        gap: 20px; /* reduce vertical gap for mobile */
        justify-content: center;
    }

    /* Make each footer column full width and readable on narrow screens */
    .footer-column,
    .footer-column:not(.footer-brand) {
        width: 100%;
        max-width: 520px;
        box-sizing: border-box;
        margin: 0 auto;
    }

    /* Remove negative logo overlap on smaller screens */
    .footer-brand > a {
        margin-top: 0;
        margin-bottom: 8px;
    }

    /* Make social icons more touch friendly and spaced */
    .social-icons {
        justify-content: center;
        gap: 14px;
        margin-top: 8px;
    }

    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 50%;
    }

    /* Center and stack contact items for easier tapping */
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .footer-contact a {
        display: inline-block;
        padding: 6px 0;
    }

    /* Slightly larger footer links for legibility */
    .footer-links a {
        font-size: 16px;
        padding: 6px 0;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-brand > a {
        margin-top: -40px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-column h3 {
        font-size: 20px;
    }
    /* Mobile refinements */
    .footer-brand > a {
        margin-top: 0; /* remove overlap */
        margin-bottom: 10px;
    }

    .footer-column,
    .footer-column:not(.footer-brand) {
        width: 100%;
        max-width: 520px;
        margin: 0 auto 14px;
    }

    .social-icons {
        gap: 12px;
    }

    .award-logo {
        width: 80px;
        height: 80px;
    }

    .social-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .footer-links a {
        font-size: 17px;
    }
}

/* Show submenu on hover - DESKTOP ONLY */
@media (min-width: 1251px) {
    .has-submenu:hover .submenu {
        display: block;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: white;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.contact-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 30px;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icon-contact {
    width: 50px;
    height: 50px;
    background: #47A4DE;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 20px;
}

.social-icon-contact:hover {
    background: #4A9DD6;
}

.contact-form {
    flex: 1;
    min-width: 0;
}

.form-group {
    margin-bottom: 20px;
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Remove the margin-bottom from form-groups inside form-row since form-row handles spacing */
.form-row .form-group {
    margin-bottom: 0 !important;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 3px;
    margin-top: 0;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #47A4DE;
    background: white;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A9DD6;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    font-family: 'Roboto', sans-serif;
    background: #47A4DE;
    color: white;
    padding: 15px 40px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: #800080;
    transform: translateY(-2px);
}

/* Contact Form 7 Specific Styles - for custom form-group structure */
.contact-form .wpcf7-form {
    margin: 0;
    padding: 0;
}

/* Reset all form elements */
.contact-form .form-group {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

.contact-form .form-row {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

/* CRITICAL: Remove margin from CF7's auto-generated <p> tags */
.contact-form .form-group p,
.contact-form .form-row .form-group p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure consistent spacing for all form-groups */
.contact-form .wpcf7-form > .form-group,
.contact-form .wpcf7-form > .form-row {
    margin: 0 0 20px 0 !important;
}

/* Target ALL labels */
.contact-form .form-group label {
    margin: 0 0 3px 0 !important;
    padding: 0 !important;
    display: block;
}

/* Hide the <br> tag that CF7 adds after labels */
.contact-form .form-group br,
.contact-form br {
    display: none !important;
}

.contact-form p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

/* Ensure CF7 form control wrappers don't add spacing */
.contact-form .wpcf7-form-control-wrap {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

/* Make sure inputs take full width */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    display: block;
    width: 100%;
    margin: 0;
}

/* Hide any br tags or empty paragraphs */
.contact-form br,
.contact-form .wpcf7-form > br {
    display: none !important;
}

.contact-form .wpcf7-form > p:empty {
    display: none !important;
}

.contact-form .wpcf7-text,
.contact-form .wpcf7-email,
.contact-form .wpcf7-tel,
.contact-form .wpcf7-textarea {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #47A4DE;
    background: white;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    margin-top: 0;
}

.contact-form .wpcf7-text:focus,
.contact-form .wpcf7-email:focus,
.contact-form .wpcf7-tel:focus,
.contact-form .wpcf7-textarea:focus {
    outline: none;
    border-color: #4A9DD6;
}

.contact-form .wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .wpcf7-submit {
    font-family: 'Roboto', sans-serif;
    background: #47A4DE;
    color: white;
    padding: 15px 40px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form .wpcf7-submit:hover {
    background: #800080;
    transform: translateY(-2px);
}

.contact-form .wpcf7-spinner {
    margin-left: 10px;
}

.contact-form .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #dc3232;
    margin-top: 5px;
}

.contact-form .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border: 2px solid;
}

.contact-form .wpcf7-mail-sent-ok {
    border-color: #46b450;
    color: #46b450;
}

.contact-form .wpcf7-validation-errors,
.contact-form .wpcf7-mail-sent-ng {
    border-color: #dc3232;
    color: #dc3232;
}

/* Google Maps Section */
.map-section {
    padding: 0;
    background: white;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* About Content Container */
.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-content-image {
    flex: 1;
    min-width: 0;
    position: relative;
}

.about-content-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.about-content-text {
    flex: 1;
    min-width: 0;
}

.about-content-text h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.about-content-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

/* Devoted Senior Care Section */
.devoted-care-section {
    padding: 80px 20px;
    background: white;
}

.devoted-care-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.devoted-care-text {
    flex: 1;
    min-width: 0;
}

.devoted-care-text h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 30px;
    color: #0F0F0F;
}

.devoted-care-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
}

.devoted-care-image {
    flex: 1;
    min-width: 0;
    position: relative;
}

.devoted-care-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Devoted Care decorative boxes */
.devoted-decoration {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.devoted-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.devoted-box-blue {
    width: 155px;
    height: auto;
    bottom: -20px;
    left: -20px;
    opacity: 0;
    transform: scale(0.85);
}

.devoted-box-purple {
    width: 155px;
    height: auto;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0.85);
}

/* Animated state for devoted care boxes */
.devoted-decoration.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.devoted-box-blue.visible {
    transition-delay: 0.15s;
}

.devoted-box-purple.visible {
    transition-delay: 0.3s;
}

/* Experience Daycation Section */
.experience-section {
    padding: 80px 20px;
    background: white;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.experience-text {
    flex: 1;
    min-width: 0;
}

.experience-text h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.experience-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.experience-image {
    flex: 1;
    min-width: 0;
}

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

/* Content with Image Section */
.content-image-section {
    padding: 80px 20px;
    background: white;
}

.content-image-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.content-image-text {
    flex: 1;
    min-width: 0;
}

.content-image-text h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

/* If wavy divider is present, add margin */
.content-image-text .wavy-divider {
    margin-bottom: 30px;
}

/* If no wavy divider, h2 already has margin-bottom: 20px */
.content-image-text h2 + p {
    margin-top: 10px;
}

.content-image-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.content-image-text p:last-child {
    margin-bottom: 0;
}

.content-image-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}

.content-image-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.schedule-intro-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.schedule-intro-container {
    max-width: 1024px;
    margin: 0 auto;
}

.schedule-intro-container h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

/*.schedule-intro-text {
    margin: 0px 250px 0px 250px;
}*/

.schedule-intro-text {
    max-width:600px; /* Instead of fixed margins */
    margin: 0 auto; /* Center it */
}

.schedule-intro-container p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.schedule-item h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.schedule-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
}

.schedule-item {
    background: #FAFBFF;
    padding: 25px 25px 30px 25px;
    border-radius: 5px;
    min-height: 285px;
}

.special-days-section {
    padding: 80px 20px;
    background: white;
}

.special-days-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.special-days-image {
    flex: 1;
    min-width: 0;
    position: relative;
}

.special-days-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Special days decorative boxes */
.special-days-decoration {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.special-days-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.special-days-box-blue {
    width: 155px;
    height: auto;
    bottom: -20px;
    left: -20px;
    opacity: 0;
    transform: scale(0.85);
}

.special-days-box-purple {
    width: 155px;
    height: auto;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: scale(0.85);
}

/* Animated state for special days boxes */
.special-days-decoration.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.special-days-box-blue.visible {
    transition-delay: 0.15s;
}

.special-days-box-purple.visible {
    transition-delay: 0.3s;
}

.special-days-content {
    flex: 1;
    min-width: 0;
}

.special-days-content h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.special-days-content .wavy-divider {
    margin-left: 0;
}

.special-days-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.special-days-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.special-days-list li i {
    color: #47A4DE;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .content-image-container {
        flex-direction: column;
        gap: 40px;
    }

    /* When image is on left, move it to top on mobile */
    .content-image-wrapper {
        order: -1;
    }

    .content-image-text h2 {
        font-size: 32px;
    }
    /* Center content-image block on tablet */
    .content-image-container {
        align-items: center;
        text-align: center;
    }

    .content-image-wrapper,
    .content-image-text {
        width: 100%;
    }

    .content-image-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .content-image-text .wavy-divider,
    .content-image-text h2,
    .content-image-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .content-image-section {
        padding: 60px 20px;
    }

    .content-image-text h2 {
        font-size: 28px;
    }

    .content-image-text p {
        font-size: 15px;
    }

    .devoted-box-blue,
    .devoted-box-purple {
        width: 100px;
    }

    /* Center content-with-image block on small screens */
    .content-image-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-image-wrapper,
    .content-image-text {
        width: 100%;
    }

    .content-image-text p,
    .content-image-text h2,
    .content-image-text .wavy-divider {
        text-align: center;
    }

    .schedule-intro-section {
        padding: 60px 20px;
    }

    .schedule-intro-container h2 {
        font-size: 28px;
    }

    .schedule-intro-container p {
        font-size: 15px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .schedule-item h3 {
        font-size: 20px;
    }

    .schedule-item p {
        font-size: 15px;
    }

}

/* Additional Responsive Styles */
@media (max-width: 968px) {
    .contact-form-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

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

    .about-content-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content-text h2 {
        font-size: 32px;
    }

    .devoted-care-container {
        flex-direction: column;
        gap: 40px;
    }

    .devoted-care-image {
        order: -1;
    }

    .devoted-care-text h2 {
        font-size: 32px;
    }

    .experience-container {
        flex-direction: column;
        gap: 40px;
    }

    .experience-image {
        order: -1;
    }

    .experience-text h2 {
        font-size: 32px;
    }

    .special-days-container {
        flex-direction: column;
        gap: 40px;
    }

    .special-days-image {
        order: -1;
    }

    .special-days-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .special-days-content h2 {
        font-size: 32px;
        width: 100%;
    }

    .special-days-content .wavy-divider {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .special-days-list {
        width: 100%;
        max-width: 600px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .devoted-care-section {
        padding: 60px 20px;
    }

    .devoted-care-text h2 {
        font-size: 28px;
    }

    .devoted-care-text p {
        font-size: 15px;
    }

    .devoted-box-blue,
    .devoted-box-purple {
        width: 100px;
    }

    .experience-section {
        padding: 60px 20px;
    }

    .experience-text h2 {
        font-size: 28px;
    }

    .experience-text p {
        font-size: 15px;
    }

    .special-days-section {
        padding: 60px 20px;
    }

    .special-days-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .special-days-content h2 {
        font-size: 28px;
        width: 100%;
    }

    .special-days-content .wavy-divider {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .special-days-list {
        width: 100%;
        max-width: 500px;
        text-align: left;
    }

    .special-days-list li {
        font-size: 15px;
    }

    /* Reduce decoration box size on mobile */
    .special-days-box-blue,
    .special-days-box-purple {
        width: 80px;
    }

    .special-days-box-blue {
        bottom: -12px;
        left: -12px;
    }

    .special-days-box-purple {
        top: -12px;
        right: -12px;
    }
}

/* Contact Form block - center on tablet & mobile */
@media (max-width: 968px) {
    .contact-form-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-info h2,
    .contact-info p,
    .contact-info .wavy-divider,
    .section-label {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons-contact {
        justify-content: center;
    }

    .contact-form .no-form-notice {
        text-align: center;
    }
    /* Keep form labels left-aligned even when parent is centered */
    .contact-form label,
    .contact-form form label,
    .contact-form .wpcf7-form label {
        display: block;
        text-align: left;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .contact-form-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info h2,
    .contact-info p,
    .contact-info .wavy-divider,
    .section-label {
        text-align: center;
    }
    /* Keep form labels left-aligned on small screens */
    .contact-form label,
    .contact-form form label,
    .contact-form .wpcf7-form label {
        display: block;
        text-align: left;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    /* Make submit buttons full-width on small screens */
    .contact-form .submit-button,
    .contact-form input[type="submit"],
    .contact-form button[type="submit"],
    .contact-form .wpcf7-submit {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Team Member Section (moved from inline styles in team-member.php) */
.team-member-section {
    padding: 80px 20px;
    background: #F5F5F5;
}

.team-member-section.white-bg {
    background: white;
}

.team-member-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.team-member-image {
    flex: 0 0 350px;
}

.team-member-img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member-content {
    flex: 1;
    min-width: 0;
}

.team-member-content h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #0F0F0F;
}

.team-member-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
}

/* Preview placeholder styles (used in block preview) */
.team-member-preview-placeholder {
    padding: 40px;
    background: #f0f0f0;
    text-align: center;
    border: 2px dashed #ccc;
}

.team-member-preview-text {
    margin: 0;
    color: #666;
}

/* News and Media Page Styles */
.news-media-page {
    padding: 80px 0;
    background-color: #FAFBFF;
}

.news-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-media-container .page-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0F0F0F;
    text-align: center;
    margin-bottom: 60px;
}

.news-posts-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-post-item {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-post-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-post-content {
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: flex-start;
}

.news-post-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 260px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-post-thumbnail.clickable-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-post-thumbnail.clickable-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.news-post-thumbnail img,
.news-post-thumbnail canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-preview-canvas {
    display: block;
}

.news-post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-post-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0F0F0F;
    margin: 0;
    line-height: 1.3;
}

.news-post-date {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    margin-top: auto;
    padding-top: 60px;
}

.btn-view-pdf {
    background-color: transparent;
    color: #47A4DE;
    border: 2px solid #47A4DE;
    padding: 12px 32px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.btn-view-pdf:hover {
    background-color: #47A4DE;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 164, 222, 0.3);
}

.no-posts-message {
    text-align: center;
    font-size: 18px;
    color: #6B7280;
    padding: 60px 20px;
}

/* PDF Viewer Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.pdf-modal-content {
    position: relative;
    background-color: #FFFFFF;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.pdf-modal-header {
    padding: 20px 30px;
    background-color: #47A4DE;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header h3 {
    margin: 0;
    font-family: 'Playfair Display', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.pdf-modal-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.pdf-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pdf-modal-body {
    flex: 1;
    overflow: hidden;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Single News Post Styles */
.single-news-post {
    padding: 80px 0;
    background-color: #FAFBFF;
    min-height: 100vh;
}

.single-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    color: #47A4DE;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #800080;
}

.single-news-article {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.single-news-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid #E5E5E5;
}

.single-news-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0F0F0F;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.single-news-date {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
}

.single-news-pdf-viewer {
    width: 100%;
    height: 800px;
    background: #525659;
}

.pdf-embed-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.single-news-actions {
    padding: 30px 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: #f9fafb;
}

.btn-download-pdf,
.btn-open-new-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download-pdf {
    background-color: #47A4DE;
    color: #FFFFFF;
    border: 2px solid #47A4DE;
}

.btn-download-pdf:hover {
    background-color: #3A8FC4;
    border-color: #3A8FC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 164, 222, 0.3);
}

.btn-open-new-tab {
    background-color: transparent;
    color: #47A4DE;
    border: 2px solid #47A4DE;
}

.btn-open-new-tab:hover {
    background-color: #47A4DE;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.no-attachment-message {
    padding: 60px 40px;
    text-align: center;
    font-size: 18px;
    color: #6B7280;
}

/* Default Single Post Styles */
.single-post-default {
    padding: 80px 0;
    background-color: #FAFBFF;
    min-height: 100vh;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0F0F0F;
    margin-bottom: 15px;
}

.entry-meta {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #6B7280;
}

.entry-meta span {
    margin-right: 15px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.entry-content p {
    margin-bottom: 20px;
}

/* Responsive Single Post */
@media (max-width: 1024px) {
    .single-news-post,
    .single-post-default {
        padding: 60px 0;
    }
    
    .single-news-container,
    .single-post-container {
        padding: 0 30px;
    }
    
    .single-news-pdf-viewer {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .single-news-post,
    .single-post-default {
        padding: 40px 0;
    }
    
    .single-news-container,
    .single-post-container {
        padding: 0 20px;
    }
    
    .back-link {
        margin-bottom: 20px;
    }
    
    .back-link a {
        font-size: 15px;
    }
    
    .single-news-article {
        border-radius: 8px;
    }
    
    .single-news-header {
        padding: 25px 20px 20px;
    }
    
    .single-news-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .single-news-date {
        font-size: 14px;
    }
    
    .single-news-pdf-viewer {
        height: 500px;
    }
    
    .single-news-actions {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-download-pdf,
    .btn-open-new-tab {
        justify-content: center;
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .entry-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .single-news-post,
    .single-post-default {
        padding: 30px 0;
    }
    
    .single-news-container,
    .single-post-container {
        padding: 0 15px;
    }
    
    .single-news-header {
        padding: 20px 15px 15px;
    }
    
    .single-news-title {
        font-size: 20px;
    }
    
    .single-news-date {
        font-size: 13px;
    }
    
    .single-news-pdf-viewer {
        height: 400px;
    }
    
    .single-news-actions {
        padding: 15px;
        gap: 10px;
    }
    
    .btn-download-pdf,
    .btn-open-new-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .entry-title {
        font-size: 24px;
    }
}

/* Responsive News and Media */
@media (max-width: 1024px) {
    .news-media-page {
        padding: 60px 0;
    }
    
    .news-media-container {
        padding: 0 30px;
    }
    
    .news-media-container .page-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .news-posts-list {
        gap: 30px;
    }
    
    .news-post-content {
        gap: 25px;
        padding: 30px;
    }
    
    .news-post-thumbnail {
        width: 160px;
        height: 208px;
    }
    
    .news-post-title {
        font-size: 24px;
    }
    
    .news-post-date {
        font-size: 15px;
    }
    
    .btn-view-pdf {
        padding: 10px 28px;
        font-size: 15px;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .news-media-page {
        padding: 40px 0;
    }
    
    .news-media-container {
        padding: 0 20px;
    }
    
    .news-media-container .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .news-posts-list {
        gap: 25px;
    }
    
    .news-post-item {
        border-radius: 8px;
    }
    
    .news-post-content {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        align-items: center;
    }
    
    .news-post-thumbnail {
        width: 100%;
        max-width: 220px;
        height: 286px;
        margin: 0 auto;
    }
    
    .news-post-details {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .news-post-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .news-post-date {
        font-size: 14px;
    }
    
    .btn-view-pdf {
        padding: 12px 32px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        text-align: center;
        max-width: 280px;
        align-self: center;
    }
    
    /* PDF Modal on Mobile */
    .pdf-modal-content {
        width: 98%;
        height: 98vh;
        margin: 1% auto;
        border-radius: 8px;
    }
    
    .pdf-modal-header {
        padding: 15px 15px;
    }
    
    .pdf-modal-header h3 {
        font-size: 16px;
        line-height: 1.3;
        padding-right: 10px;
    }
    
    .pdf-modal-close {
        width: 36px;
        height: 36px;
        font-size: 32px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .news-media-page {
        padding: 30px 0;
    }
    
    .news-media-container {
        padding: 0 15px;
    }
    
    .news-media-container .page-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .news-posts-list {
        gap: 20px;
    }
    
    .news-post-content {
        padding: 20px;
        gap: 15px;
    }
    
    .news-post-thumbnail {
        max-width: 180px;
        height: 234px;
    }
    
    .news-post-title {
        font-size: 20px;
    }
    
    .news-post-date {
        font-size: 13px;
    }
    
    .btn-view-pdf {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        max-width: none;
        align-self: center;
        text-align: center;
    }
    
    .pdf-modal-header h3 {
        font-size: 14px;
    }
}

/* ===================================
   Gallery Grid Block
   =================================== */

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('icecream-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-label-cyan {
    font-family: 'Roboto', sans-serif;
    color: #800080;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.gallery-container h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1666em;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #333;
}

.wavy-divider-purple {
    width: 60px;
    height: 12px;
    margin: 0 auto 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='%23800080' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpolyline points='0,18 12,6 24,18 '/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 24px 100%;
}

.gallery-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4em;
    color: #666;
    letter-spacing: 0.15px;
    margin-bottom: 50px;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    break-inside: avoid;
    background: #fff;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.fade-in-visible {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    opacity: 0.9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Gallery Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.gallery-lightbox-close:hover {
    color: #2fd6a0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Gallery Responsive Design */
@media (max-width: 968px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 15px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    .gallery-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .gallery-container h2 {
        font-size: 28px;
    }

    .gallery-description {
        font-size: 15px;
    }

    .gallery-grid {
        column-count: 1;
        column-gap: 0;
    }

    .gallery-item {
        margin-bottom: 15px;
    }
}

/* ===================================
   Additional Day Pass Block
   =================================== */

.additional-day-section {
    text-align: center;
    padding: 40px 20px;
    background: #FAFBFF;
}

.heart-icons {
    font-size: 24px;
    color: #E91E63;
    margin-bottom: 15px;
}

.additional-day-section h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.additional-day-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 25px;
}

.pricing-button {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    background: #47A4DE;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border-radius: 0px;
    margin-top: 20px;
}

.pricing-button:hover {
    background: #800080;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .additional-day-section h3 {
        font-size: 24px;
    }
}

/* ===================================
   Pricing Cards Block
   =================================== */

.pricing-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Roboto', sans-serif;
    color: #47A4DE;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.pricing-container h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.pricing-section .wavy-divider {
    margin-left: auto;
    margin-right: auto;
}

.pricing-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    position: relative;
    overflow: hidden;
}

.pricing-card-header {
    font-family: 'Playfair Display', sans-serif;
    background: #47A4DE;
    color: white;
    padding: 30px 20px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

.popular-badge {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 15px;
    right: -30px;
    background: #800080;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    transform-origin: center;
}

.pricing-card-body {
    padding: 40px 20px;
    background: #FAFBFF;
}

.pricing-feature {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    color: #333333;
    justify-content: center;
    border-bottom: 1px solid #E0E0E0;
}

.pricing-feature i {
    color: #333;
    font-size: 18px;
    margin-top: 2px;
}

@media (max-width: 968px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-container h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-container h2 {
        font-size: 28px;
    }

    .pricing-description {
        font-size: 15px;
    }
}

/* ===================================
   CTA Section Block
   =================================== */

.volunteer-cta-section {
    padding: 100px 20px;
    background: white;
    text-align: center;
    position: relative;
}

.volunteer-cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    width: 80px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    opacity: 1;
}

.volunteer-cta-section h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 40px;
    color: #333;
}

.volunteer-cta-button {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    background: #800080;
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border-radius: 0px;
}

.volunteer-cta-button:hover {
    background: #6B006B;
    transform: translateY(-2px);
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-up:nth-child(3) {
    transition-delay: 0.2s;
}

@media (max-width: 640px) {
    .volunteer-cta-section {
        padding: 80px 20px;
    }

    .quote-mark {
        width: 60px;
    }

    .volunteer-cta-section h2 {
        font-size: 28px;
    }

    .volunteer-cta-button {
        padding: 15px 40px;
        font-size: 14px;
    }
}

/* ===================================
   Carousel Block
   =================================== */

/* Carousel Section */
.carousel-section {
    padding: 80px 20px;
    background: white;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.carousel-container h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #999;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

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

.carousel-track img {
    width: 33.333%;
    flex-shrink: 0;
    padding: 0 10px;
    object-fit: cover;
    height: 300px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-track img:hover {
    opacity: 0.9;
}

.carousel-track img.clone {
    /* Cloned images for seamless loop */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(47, 214, 160, 0.9);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-btn:hover {
    background: rgba(47, 214, 160, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D3D3D3;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #2fd6a0;
    transform: scale(1.3);
    box-shadow: 0 0 0 2px #2fd6a0;
}

/* Carousel Lightbox Modal */
.carousel-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.carousel-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #2fd6a0;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(47, 214, 160, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(47, 214, 160, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Carousel Responsive Design */
@media (max-width: 968px) {
    .carousel-container h2 {
        font-size: 32px;
    }

    .carousel-track img {
        width: 100%;
        height: 350px;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    .carousel-section {
        padding: 60px 20px;
    }

    .carousel-container h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-track img {
        height: 300px;
        object-fit: contain;
        padding: 0 5px;
    }
}

/* ===================================
   Video Block
   =================================== */

.video-block-section {
    padding: 80px 20px;
    background: white;
}

.video-block-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-block-container h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #333;
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
    z-index: 2;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Video Block Responsive */
@media (max-width: 968px) {
    .video-block-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .video-block-section {
        padding: 60px 20px;
    }

    .video-block-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}