/* ====================================
   WASHIMOYA CUSTOM PAGE STYLES
   Only applies to pages using the custom-page-template body class
   ==================================== */

/* ====================================
   BASE STYLES & RESET
   ==================================== */
.custom-page-template * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-page-template {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6;
    color: #333;
    background-color: #EDEAE3;
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.desktop {
    display: block;
}

.mobile {
    display: none;
}

.custom-page-template .green-highlight {
    color: #2C6E49;
    font-weight: 700;
}

/* ====================================
   WORDPRESS THEME OVERRIDES
   ==================================== */
/* Hide WordPress admin bar and other theme elements for this page */
.custom-page-template #wpadminbar,
.custom-page-template .site-header,
.custom-page-template .site-footer,
.custom-page-template .site-navigation,
.custom-page-template .breadcrumb,
.custom-page-template .sidebar {
    display: none !important;
}

/* Reset any Lightning theme containers */
.custom-page-template .container,
.custom-page-template .site-main,
.custom-page-template .content-area,
.custom-page-template .site-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
.custom-page-template .header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="grad1" cx="50%" cy="30%" r="70%"><stop offset="0%" style="stop-color:%23234a3a"/><stop offset="100%" style="stop-color:%231a2f22"/></radialGradient></defs><rect fill="url(%23grad1)" width="1200" height="800"/><ellipse cx="300" cy="200" rx="150" ry="80" fill="%23345544" opacity="0.3"/><ellipse cx="900" cy="300" rx="200" ry="100" fill="%23234433" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
}

.booking-page-template .header {
    height: 100%;
}

.custom-page-template .video-background {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.booking-page-template .video-background {
    display: none;
}

.custom-page-template .video-background video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

/* Video fallback */
.custom-page-template .video-background.video-fallback {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('<?php echo get_stylesheet_directory_uri(); ?>/assets/images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
}

.custom-page-template .header.video-loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Navigation */
.custom-page-template .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px; /* padding: 10px 40px; */
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid;
}

.booking-page-template .nav {
    position: unset;
    background-color: #EDEAE3;
    padding: 10px 50px;
}

.custom-page-template .nav .logo img, .nav .logo img {
    width: 60px;
    height: 60px; 
    border-radius: 50%;
}

.custom-page-template .nav-links, .nav-links  {
    display: flex;
    gap: 40px;
}

.booking-page-template .nav-links {
    display: none;
}

.custom-page-template .nav-links a, .nav-links a  {
    color: white;
    text-decoration: none;
    font-size: 18px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.booking-page-template .nav-links a {
    color: #2C6E49;
    font-weight: 700;
}

.custom-page-template .nav-links a:hover {
    opacity: 1;
}

.custom-page-template .nav-social a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.booking-page-template .nav-social a {
    color: #2C6E49;
    font-weight: 700;
}

.custom-page-template .nav-social a:hover, .nav-social a:hover  {
    opacity: 1;
}

/* Navigation scroll effect */
.custom-page-template .nav.scrolled {
    background: #EDEAE3;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 20px 50px;
    top: 70px
}

.custom-page-template .nav.scrolled .nav-links a {
    color: #2C6E49;
    font-weight: 700;
}

.custom-page-template .nav.scrolled .logo {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

/* ====================================
   HERO SECTION
   ==================================== */
.custom-page-template .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.custom-page-template .hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.custom-page-template .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.custom-page-template .hero-content .learn-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #4C956C;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s;
}

.custom-page-template .hero-content .learn-more-btn:hover {
    background: #3a7a4a;
}

.custom-page-template .learn-more {
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: border-bottom 0.3s;
}

.custom-page-template .learn-more:hover {
    border-bottom-color: white;
}

/* ====================================
   PROMOTIONAL BANNER
   ==================================== */
.promo-banner {
    background-color: #5ca175;
    color: white;
    padding: 12px 20px;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.promo-banner.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
}

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

.promo-text {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.promo-cta {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-cta:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* ====================================
   EXPERIENCE SECTION
   ==================================== */
.custom-page-template section.experience {
    background: linear-gradient(to bottom, #2C6E49 0%, #8BC588 40%, rgba(139, 197, 136, 0) 100%);
}

.custom-page-template .experience-section {
    padding: 120px 50px;
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-page-template .experience-image {
    flex: 1;
    height: 700px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.custom-page-template .experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.custom-page-template .experience-image p {
    margin-top: 10px;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.8;
}

.custom-page-template .experience-content {
    flex: 1;
}

.custom-page-template .experience-content h2 {
    border-top: none;
    border-bottom: none;
    font-size: 45px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.custom-page-template .experience-content p {
    font-size: 21px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
}

/* ====================================
   VIDEO SECTION
   ==================================== */
.custom-page-template .video-section {
    padding: 80px 50px;
    background-color: #EDEAE3;
}

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

.custom-page-template .video-container .video-content {
    margin-bottom: 30px;
}

.custom-page-template .video-container h2 {
    font-size: 45px;
    color: #2C6E49;
    font-weight: 700;
    text-align: center;
    border: none;
}

.custom-page-template .video-container p {
    font-size: 18px;
}

.custom-page-template .video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* ====================================
   TOUR SCHEDULE SECTION
   ==================================== */
.custom-page-template .schedule-section {
    padding: 120px 50px;
    background-color: #EDEAE3;
}

.custom-page-template .schedule-header {
    text-align: center;
    margin-bottom: 80px;
}

.custom-page-template .schedule-header h2 {
    font-size: 45px;
    color: #2C6E49;
    font-weight: 700;
    margin-bottom: 50px;
    border: none;
}

.custom-page-template .schedule-info-card {
    font-size: 18px;
    background: white;
    border-radius: 15px;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-page-template .schedule-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.custom-page-template .schedule-label {
    font-size: 18px;
    color: #7FB069;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-page-template .schedule-value {
    font-size: 18px;
    color: #2C6E49;
    font-weight: 700;
}

/* Schedule Timeline */
.custom-page-template .schedule-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.custom-page-template .schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, #7FB069 50%, transparent 100%);
    background-size: 2px 20px;
    background-repeat: repeat-y;
    transform: translateX(-50%);
    z-index: 1;
}

.custom-page-template .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 200px;
    position: relative;
}

.custom-page-template .timeline-left,
.custom-page-template .timeline-right {
    height: 250px;
}

.custom-page-template .timeline-content {
    padding: 30px;
    border-radius: 12px;
    max-width: 350px;
    position: relative;
}

.custom-page-template .timeline-left .timeline-content {
    text-align: right;
    position: absolute;
    top: 0;
    left: 10%;
    height: 100%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-page-template .timeline-right .timeline-content {
    text-align: left;
    order: 1;
    position: absolute;
    top: 0;
    right: 10%;
    height: 100%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-page-template .timeline-content h3 {
    font-size: 21px;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 500;
    border: none;
}

.custom-page-template .timeline-content h3:after {
    border-bottom: none;
}

.custom-page-template .timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.custom-page-template .timeline-image {
    width: 250px;
    height: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-page-template .timeline-image p {
    margin-top: 8px;
    font-size: 12px;
    color: #333;
    opacity: 0.7;
    text-align: center;
}

.custom-page-template .timeline-left .timeline-image {
    order: 2;
    position: absolute;
    top: 0;
    right: 10%;
    height: 100%;
    width: 400px;
}

.custom-page-template .timeline-right .timeline-image {
    order: 1;
    position: absolute;
    top: 0;
    left: 10%;
    height: 100%;
    width: 400px;
}

.custom-page-template .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-page-template .timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #7FB069;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */
.custom-page-template .testimonials-section {
    background: #4C956C;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.custom-page-template .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.custom-page-template .testimonials-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    border: none;
    text-align: center;
    margin-bottom: 60px;
}

.custom-page-template .testimonials-section h2 .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    margin-top: 10px;
    opacity: 0.9;
}

.custom-page-template .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.custom-page-template .carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.custom-page-template .carousel-track {
    display: flex;
    transition: transform 0.7s 0.5s ease-in-out; /* transition: transform 0.5s ease-in-out; */
}

.custom-page-template .testimonial-slide {
    flex-shrink: 0;
}

.custom-page-template .testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin: 0 15px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-page-template .testimonial-content {
    margin-bottom: 40px;
		/* width: 90vw; */
}

.custom-page-template .testimonial-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
    font-style: italic;
}

.custom-page-template .testimonial-content p:last-child {
    margin-bottom: 0;
}

.custom-page-template .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.custom-page-template .author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.custom-page-template .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-page-template .author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
    background-color: transparent;
}

.custom-page-template .author-info p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    font-weight: 700;
}

.custom-page-template .carousel-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: transparent;
    border: none;
}

.custom-page-template .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.custom-page-template .carousel-btn:active {
    transform: scale(0.95);
}

.custom-page-template .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.custom-page-template .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-page-template .dot.active {
    background: white;
    transform: scale(1.2);
}

.custom-page-template .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ====================================
   INSTAGRAM GALLERY SECTION
   ==================================== */
.instagram-gallery-section {
    background-color: #f5f3f0;
    padding: 120px 20px;
    margin: 0;
}

.instagram-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.instagram-text-section {
    flex: 0 0 450px;
    padding-right: 40px;
}

.instagram-gallery-title {
    font-size: 64px;
    font-weight: 700;
    color: #2d4a3a;
    line-height: 1.1;
    margin-bottom: 30px;
    border: none;
}

.instagram-handle {
    font-size: 1.5rem;
    color: #2d4a3a;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.8;
}

.instagram-follow-btn {
    background-color: #4C956C;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(123, 164, 133, 0.2);
}

.instagram-follow-btn:hover {
    background-color: #6b9474;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 164, 133, 0.3);
    color: white;
    text-decoration: none;
}

.instagram-gallery-section-inner {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-left: 20px;
}

.instagram-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    grid-template-rows: repeat(3, 180px);
    gap: 12px;
    max-width: 564px;
}

.instagram-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #ffffff;
    cursor: pointer;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.instagram-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.instagram-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.instagram-image-item:hover img {
    transform: scale(1.05);
}

.instagram-placeholder-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
    text-align: center;
    border: 2px dashed #ccc;
}

/* Add subtle animation to grid items */
.instagram-image-item:nth-child(1) { animation-delay: 0.1s; }
.instagram-image-item:nth-child(2) { animation-delay: 0.2s; }
.instagram-image-item:nth-child(3) { animation-delay: 0.3s; }
.instagram-image-item:nth-child(4) { animation-delay: 0.4s; }
.instagram-image-item:nth-child(5) { animation-delay: 0.5s; }
.instagram-image-item:nth-child(6) { animation-delay: 0.6s; }
.instagram-image-item:nth-child(7) { animation-delay: 0.7s; }
.instagram-image-item:nth-child(8) { animation-delay: 0.8s; }
.instagram-image-item:nth-child(9) { animation-delay: 0.9s; }

/* ====================================
   FAQ SECTION
   ==================================== */
.custom-page-template .faq-section {
    padding: 120px 50px;
    background-color: #EDEAE3;
}

.custom-page-template .faq-section h2 {
    font-size: 2.2rem;
    color: #254834;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    border: none;
}

.custom-page-template .faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.custom-page-template .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.custom-page-template .faq-question {
    font-size: 30px;
    color: #254834;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-page-template .faq-question:after {
    content: '+';
    font-size: 20px;
    color: #999;
    transition: transform 0.3s;
}

.custom-page-template .faq-question.active:after {
    transform: rotate(45deg);
}

.custom-page-template .faq-answer {
    padding-top: 10px;
    padding-bottom: 25px;
    color: #2C6E49;
    line-height: 1.6;
    font-size: 18px;
    display: none;
}

.custom-page-template .faq-answer.show {
    display: block;
}

/* ====================================
   BOOKING SECTION
   ==================================== */
.custom-page-template .tour-booking-section {
    position: relative;
    width: 100%;
    background-image: url('../images/booking-bg.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 50px 80px;
    overflow: hidden;
}

.custom-page-template .tour-booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.custom-page-template .tour-booking-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.custom-page-template .booking-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: right;
    max-width: 600px;
}

.custom-page-template .main-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.custom-page-template .booking-details {
    margin-bottom: 3rem;
}

.custom-page-template .detail-item {
    margin-bottom: 2rem;
}

.custom-page-template .detail-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.custom-page-template .detail-value {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.2;
}

.custom-page-template .price {
    font-size: 2.8rem;
    font-weight: 400;
}

.custom-page-template .additional-info {
    margin: 2rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.custom-page-template .info-item {
    margin-bottom: 0.8rem;
}

.custom-page-template .company-info {
    font-weight: 600;
}

.custom-page-template .book-button {
    background: #4C956C;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(72, 204, 108, 0.3);
    margin-top: 1rem;
}

.custom-page-template .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(72, 204, 108, 0.4);
    background: linear-gradient(135deg, #40b85a 0%, #38a54f 100%);
}

.custom-page-template .book-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ====================================
   DETAILED TOUR TIMELINE SECTION
   ==================================== */
.detailed-timeline-section {
    padding: 120px 50px;
    background: linear-gradient(135deg, #f8f6f3 0%, #EDEAE3 100%);
    position: relative;
}

.detailed-timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.detailed-timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.detailed-timeline-header h2 {
    font-size: 45px;
    color: #2C6E49;
    font-weight: 700;
    margin-bottom: 20px;
    border: none;
}

.timeline-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Structure */
.detailed-timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-track {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        #7FB069 0%,
        #4C956C 30%,
        #2C6E49 70%,
        #7FB069 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(44, 110, 73, 0.2);
}

/* Timeline Items */
.detailed-timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInTimeline 0.8s ease forwards;
}

.detailed-timeline-item:nth-child(2) { animation-delay: 0.1s; }
.detailed-timeline-item:nth-child(3) { animation-delay: 0.2s; }
.detailed-timeline-item:nth-child(4) { animation-delay: 0.3s; }
.detailed-timeline-item:nth-child(5) { animation-delay: 0.4s; }
.detailed-timeline-item:nth-child(6) { animation-delay: 0.5s; }
.detailed-timeline-item:nth-child(7) { animation-delay: 0.6s; }
.detailed-timeline-item:nth-child(8) { animation-delay: 0.7s; }
.detailed-timeline-item:nth-child(9) { animation-delay: 0.8s; }
.detailed-timeline-item:nth-child(10) { animation-delay: 0.9s; }

/* Timeline Markers */
.timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.timeline-time-badge {
    background: white;
    border: 3px solid #7FB069;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #2C6E49;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-time-badge.featured {
    background: #4C956C;
    color: white;
    border-color: #2C6E49;
    font-size: 16px;
    padding: 12px 20px;
    box-shadow: 0 6px 20px rgba(76, 149, 108, 0.3);
}

.timeline-marker.main .timeline-time-badge::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #7FB069;
    border-radius: 25px;
    animation: pulse 2s infinite;
}

.timeline-marker.end .timeline-time-badge {
    background: linear-gradient(135deg, #4C956C, #7FB069);
    color: white;
    border-color: #2C6E49;
}

/* Timeline Cards */
.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-left: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
    border-left: 4px solid #E8F5E8;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #7FB069;
}

.timeline-card.featured {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f4 100%);
    border-left: 4px solid #4C956C;
    box-shadow: 0 12px 40px rgba(76, 149, 108, 0.2);
}

.timeline-card.end {
    background: linear-gradient(135deg, #fff9f0 0%, #fef7ef 100%);
    border-left: 4px solid #FFB366;
}

/* Timeline Content */
.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 20px;
    color: #2C6E49;
    font-weight: 600;
    margin-bottom: 12px;
    border: none;
}

.timeline-card.featured .timeline-content h3 {
    font-size: 24px;
    color: #1a4a2e;
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-duration {
    display: inline-block;
    background: #E8F5E8;
    color: #2C6E49;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-duration.main {
    background: linear-gradient(135deg, #4C956C, #7FB069);
    color: white;
    font-size: 14px;
    padding: 6px 16px;
}

.timeline-note {
    background: #f8f9fa;
    border-left: 3px solid #7FB069;
    padding: 12px 16px;
    margin-top: 15px;
    border-radius: 0 8px 8px 0;
}

.timeline-note small {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.completion-note {
    background: linear-gradient(135deg, #FFB366, #FF9A3C);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 179, 102, 0.3);
}

/* Experience Activities */
.experience-activities {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #E8F5E8;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #444;
}

.activity-item:not(:last-child) {
    border-bottom: 1px solid #f0f5f0;
}

.activity-icon {
    font-size: 18px;
    width: 30px;
    text-align: center;
}

/* Timeline Icons */
.timeline-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F5E8;
    border-radius: 50%;
    margin-left: 20px;
    flex-shrink: 0;
}

.timeline-icon.main {
    font-size: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4C956C, #7FB069);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 149, 108, 0.3);
}

/* Time Period Styling */
.detailed-timeline-item.morning .timeline-card {
    border-left-color: #87CEEB;
}

.detailed-timeline-item.morning .timeline-time-badge {
    border-color: #87CEEB;
}

.detailed-timeline-item.afternoon .timeline-card {
    border-left-color: #FFB366;
}

.detailed-timeline-item.afternoon .timeline-time-badge {
    border-color: #FFB366;
}

/* Animations */
@keyframes fadeInTimeline {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ====================================
   ACCESSIBILITY IMPROVEMENTS
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    .detailed-timeline-item {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .timeline-marker.main .timeline-time-badge::after {
        animation: none;
    }

    .timeline-card {
        transition: none;
    }

    .timeline-card:hover {
        transform: none;
    }
}

.timeline-card:focus-within {
    outline: 3px solid #7FB069;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .timeline-track {
        background: #000;
    }

    .timeline-time-badge {
        border-color: #000;
        color: #000;
    }

    .timeline-card {
        border: 2px solid #000;
    }
}

/* ====================================
   FOOTER
   ==================================== */
.custom-page-template .footer, .footer {
    background: #4C956C;
    color: white;
    padding: 60px 50px 40px;
}

.custom-page-template .footer .footer-contact, .footer .footer-contact {
    font-weight: 700;
}

.custom-page-template .footer-content, .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.booking-page-template .footer .nav-social a {
    color: white;
    font-weight: 700;
}

.footer-section.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-page-template .footer-section.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-page-template .footer-section.footer-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.custom-page-template .footer-section h4, .footer-section h4  {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
    background: transparent;
}

.custom-page-template .footer-section p, .footer-section p  {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.custom-page-template .footer-bottom, .footer-bottom  {
    text-align: center;
    border-top: 1px solid #2a3f2a;
    padding-top: 30px;
    font-size: 12px;
    opacity: 0.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================================
   ANIMATIONS & KEYFRAMES
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   INTERACTIVE STATES & ENHANCEMENTS
   ==================================== */
/* Form validation styles */
.custom-page-template .form-group input.error,
.custom-page-template .form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.custom-page-template .form-group input.error:focus,
.custom-page-template .form-group select.error:focus {
    border-color: #e74c3c;
    outline: none;
}

/* Scroll animations */
.custom-page-template .schedule-item,
.custom-page-template .gallery-item,
.custom-page-template .faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.custom-page-template .schedule-item.in-view,
.custom-page-template .gallery-item.in-view,
.custom-page-template .faq-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.custom-page-template .faq-item.in-view {
    background-color: rgb(255 255 255 / 40%);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery hover enhancement */
.custom-page-template .gallery-item.hovered {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Accessibility improvements */
.instagram-image-item:focus-within {
    outline: 3px solid #7ba485;
    outline-offset: 2px;
}

/* ====================================
   RESPONSIVE DESIGN - TABLET
   ==================================== */
@media (max-width: 1200px) {
    .instagram-content-wrapper {
        gap: 60px;
    }
    
    .instagram-gallery-title {
        font-size: 3.5rem;
    }
    
    .instagram-image-grid {
        grid-template-columns: repeat(3, 160px);
        grid-template-rows: repeat(3, 160px);
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .instagram-content-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        padding: 0 20px;
    }
    
    .instagram-text-section {
        flex: none;
        padding-right: 0;
    }
    
    .instagram-gallery-section-inner {
        justify-content: center;
        padding-left: 0;
    }
    
    .instagram-gallery-title {
        font-size: 3rem;
    }

    .custom-page-template .schedule-timeline::before {
        left: 40%;
    }

    .custom-page-template .timeline-left .timeline-content {
        min-width: 300px;
        width: 300px;
        text-align: center !important;
        left: 0 !important;
        padding: 0;
    }

    .custom-page-template .timeline-right .timeline-content {
        min-width: 300px;
        width: 300px;
        text-align: center !important;
        left: 0 !important;
        padding: 0;
    }

    .custom-page-template .timeline-right .timeline-image {
        right: 0 !important;
        left: auto;
    }

    .custom-page-template .timeline-left .timeline-image {
        right: 0 !important;
    }

    .custom-page-template .timeline-dot {
        left: 40% !important;
    }

        .detailed-timeline-section {
        padding: 80px 30px;
    }

    .detailed-timeline-header h2 {
        font-size: 36px;
    }

    .timeline-track {
        left: 60px;
    }

    .timeline-card {
        margin-left: 20px;
        padding: 25px;
    }

    .detailed-timeline-item {
        margin-bottom: 50px;
    }
}

/* ====================================
   RESPONSIVE DESIGN - MOBILE
   ==================================== */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
    
    /* Navigation */
    .custom-page-template .nav {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    /* Hero Section */
    .custom-page-template .hero-content {
        padding: 0 30px;
        text-align: center;
        align-items: center;
    }

    .custom-page-template .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Experience Section */
    .custom-page-template .experience-section {
        flex-direction: column;
        gap: 60px;
        padding: 80px 30px;
    }

    .custom-page-template .timeline-left .timeline-content {
        position: unset !important;
    }

    .custom-page-template .timeline-right .timeline-content {
        position: unset !important;
    }

    .custom-page-template .timeline-left .timeline-image,
    .custom-page-template .timeline-right .timeline-image {
        position: unset !important;
        margin: 0 auto 20px auto !important;
    }

    .custom-page-template .timeline-left, .custom-page-template .timeline-right {
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .custom-page-template .timeline-dot {
        display: none;
    }

    /* Tour Booking Section */
    .custom-page-template .tour-booking-section {
        padding: 40px 20px;
        justify-content: center;
        text-align: center;
    }

    .custom-page-template .booking-content {
        text-align: center;
        max-width: 100%;
    }

    .custom-page-template .main-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .custom-page-template .detail-value {
        font-size: 1.8rem;
    }

    .custom-page-template .price {
        font-size: 2.2rem;
    }

    .custom-page-template .book-button {
        width: 100%;
        max-width: 300px;
    }

    /* Schedule Section */
    .custom-page-template .schedule-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .custom-page-template .schedule-tabs {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .custom-page-template .schedule-info-card {
        flex-direction: column;
        gap: 25px;
        padding: 25px 30px;
    }
    
    .custom-page-template .schedule-timeline::before {
        display: none;
    }
    
    .custom-page-template .timeline-item {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .custom-page-template .timeline-left,
    .custom-page-template .timeline-right {
        justify-content: center;
        align-items: center;
    }
    
    .custom-page-template .timeline-content {
        max-width: 100%;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
    }
    
    .custom-page-template .timeline-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 !important;
        order: 2 !important;
    }
    
    .custom-page-template .timeline-dot {
        left: 30px;
        top: 30px;
    }

    /* Gallery Section */
    .custom-page-template .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 150px);
    }

    .custom-page-template .gallery-item:nth-child(1),
    .custom-page-template .gallery-item:nth-child(4) {
        grid-row: span 1;
    }

    /* Form Section */
    .custom-page-template .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Footer */
    .custom-page-template .footer-content, .footer-content  {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Testimonials Section */
    .custom-page-template .testimonials-section {
        padding: 80px 30px;
    }
    
    .custom-page-template .testimonials-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .custom-page-template .carousel-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .custom-page-template .testimonial-card {
        padding: 30px 0px;
        margin: 0 10px;
    }
    
    .custom-page-template .testimonial-content p {
        font-size: 15px;
				width: 90%;
    }
    
    .custom-page-template .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .custom-page-template .prev-btn {
        left: 10px;
    }
    
    .custom-page-template .next-btn {
        right: 10px;
    }

    /* Instagram Gallery Section */
    .instagram-gallery-section {
        padding: 60px 15px;
    }
    
    .instagram-gallery-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .instagram-handle {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .instagram-follow-btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
    
    .instagram-image-grid {
        grid-template-columns: repeat(3, 120px);
        grid-template-rows: repeat(3, 120px);
        gap: 8px;
    }

    /* Promotional Banner */
    .promo-banner {
        padding: 10px 15px;
    }

    .promo-banner.scrolled {
        height: 120px;
    }
    
    .promo-content {
        gap: 15px;
        text-align: center;
    }
    
    .promo-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .promo-cta {
        font-size: 13px;
        padding: 6px 14px;
    }

        .detailed-timeline-section {
        padding: 60px 20px;
    }

    .detailed-timeline-header h2 {
        font-size: 32px;
    }

    .timeline-subtitle {
        font-size: 16px;
    }

    .timeline-track {
        left: 20px;
        width: 3px;
    }

    .detailed-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        padding-left: 50px;
    }

    .timeline-marker {
        position: absolute;
        top: 0;
    }

    .timeline-time-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .timeline-time-badge.featured {
        font-size: 14px;
        padding: 8px 14px;
    }

    .timeline-card {
        margin-left: 0;
        margin-top: 15px;
        padding: 20px;
        width: 100%;
    }

    .timeline-icon {
        display: none;
    }

    .experience-activities {
        margin-top: 15px;
        padding-top: 15px;
    }

    .activity-item {
        font-size: 14px;
        padding: 8px 0;
    }

    .activity-icon {
        font-size: 16px;
        width: 25px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-card.featured .timeline-content h3 {
        font-size: 20px;
    }

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

/* ====================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ==================================== */
@media (max-width: 480px) {
    .instagram-gallery-title {
        font-size: 2rem;
    }
    
    .instagram-handle {
        font-size: 1.2rem;
    }
    
    .instagram-image-grid {
        grid-template-columns: repeat(3, 100px);
        grid-template-rows: repeat(3, 100px);
        gap: 6px;
    }
    
    .instagram-follow-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .promo-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-text {
        min-width: auto;
    }
    
    .promo-cta {
        align-self: center;
    }
}

/* ====================================
   ACCESSIBILITY & MOTION PREFERENCES
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    .instagram-image-item {
        animation: none;
        opacity: 1;
    }
    
    .instagram-image-item:hover {
        transform: none;
    }
    
    .instagram-image-item:hover img {
        transform: none;
    }

    .custom-page-template .schedule-item,
    .custom-page-template .gallery-item,
    .custom-page-template .faq-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .custom-page-template .carousel-track {
        transition: none;
    }

    .custom-page-template .hero-content .learn-more-btn,
    .custom-page-template .book-button,
    .instagram-follow-btn,
    .promo-cta {
        transition: none;
    }

        .detailed-timeline-header h2 {
        font-size: 28px;
    }

    .timeline-subtitle {
        font-size: 15px;
    }

    .detailed-timeline-item {
        padding-left: 40px;
        margin-bottom: 35px;
    }

    .timeline-marker {
        left: -35px;
    }

    .timeline-time-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .timeline-card {
        padding: 18px;
    }

    .timeline-content h3 {
        font-size: 17px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .activity-item {
        font-size: 13px;
    }
}

/* ====================================
   HIGH CONTRAST MODE SUPPORT
   ==================================== */
@media (prefers-contrast: high) {
    .custom-page-template .testimonial-card {
        border: 2px solid white;
    }

    .custom-page-template .timeline-dot {
        border: 4px solid white;
    }

    .instagram-image-item:focus-within {
        outline: 4px solid #000;
        outline-offset: 4px;
    }
}

/* ====================================
   BURGER MENU STYLES
   ==================================== */

/* Burger Menu Button (Hidden on Desktop) */
.burger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.burger-line {
    width: 24px;
    height: 4px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.scrolled .burger-line {
    background: #2C6E49;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: #EDEAE3;
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 80%;
}

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

.mobile-menu-content {
    position: relative;
    height: 100%;
    padding: 80px 40px 60px; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 400px;
    margin: 10px auto;
    justify-content: space-between;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 42px;
    height: 42px;
    color: #2C6E49;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px; 	/* margin-top: 15px; */
    margin-bottom: 60px; /*  margin-bottom: 25px; */
}

.mobile-nav-link {
    color: #2C6E49;
    text-decoration: none;
    font-size: 16px; /* font-size: 28px; */
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 0; /* padding: 10px 0; */
}

.mobile-nav-link:hover {
    color: #8BC588;
    transform: translateX(10px);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8BC588;
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
    width: 100%;
}

/* Mobile Book Now Button */
.mobile-menu-cta {
    margin-bottom: 50px;
}

.mobile-book-button {
    background: #4C956C;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 149, 108, 0.3);
    display: inline-block;
}

.mobile-book-button:hover {
    background: #3a7a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 149, 108, 0.4);
    color: white;
    text-decoration: none;
}

/* Mobile Social Links */
.mobile-social-links {
    display: flex;
    justify-content: flex-end;
}

.mobile-social-link {
    color: white;
    transition: all 0.3s ease;
    padding: 12px;
}

.mobile-social-link:hover {
    color: #8BC588;
    background: rgba(255, 255, 255, 0.1);
    border-color: #8BC588;
    transform: translateY(-2px);
}

.mobile-social-link svg {
    width: 20px;
    height: 20px;
}

/* ====================================
   NAVIGATION RESPONSIVE UPDATES
   ==================================== */

/* Update existing navigation for better mobile handling */
@media (max-width: 768px) {
    /* Show burger menu and hide desktop nav */
    .burger-menu.mobile {
        display: flex;
    }
    
    .booking-page-template .burger-menu.mobile {
        display: none;
    }
    
    .nav-links.desktop,
    .nav-social.desktop {
        display: none;
    }
    
    /* Navigation adjustments */
    .custom-page-template .nav {
        padding: 20px 30px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .custom-page-template .nav.scrolled {
        top: 120px
    }
    
    .custom-page-template .nav .logo {
        z-index: 1001;
        position: relative;
    }
    
    /* Prevent scrolling when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .custom-page-template .carousel-container {
        width: 100%;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .custom-page-template .nav-links {
        gap: 25px;
    }
    
    .custom-page-template .nav-links a {
        font-size: 16px;
    }
}

/* ====================================
   ACCESSIBILITY ENHANCEMENTS
   ==================================== */

/* Focus styles for keyboard navigation */
.burger-menu:focus,
.mobile-menu-close:focus {
    outline: 2px solid #8BC588;
    outline-offset: 2px;
}

.mobile-nav-link:focus {
    outline: 2px solid #8BC588;
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-book-button:focus {
    outline: 2px solid #8BC588;
    outline-offset: 2px;
}

.mobile-social-link:focus {
    outline: 2px solid #8BC588;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .burger-line,
    .mobile-menu-overlay,
    .mobile-nav-link,
    .mobile-book-button,
    .mobile-social-link,
    .mobile-menu-close {
        transition: none;
    }
    
    .mobile-nav-link:hover {
        transform: none;
    }
    
    .mobile-book-button:hover {
        transform: none;
    }
    
    .mobile-social-link:hover {
        transform: none;
    }
    
    .mobile-menu-close:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-menu-overlay {
        background: #000;
    }
    
    .mobile-nav-link {
        color: #fff;
    }
    
    .mobile-nav-link:hover {
        color: #fff;
        background: #333;
    }
    
    .mobile-book-button {
        border: 2px solid #fff;
    }
    
    .mobile-social-link {
        border: 2px solid #fff;
    }
}

/* ====================================
   ANIMATION ENHANCEMENTS
   ==================================== */

/* Stagger animation for mobile nav links - modified for slide-in effect */
.mobile-menu-overlay.active .mobile-nav-link {
    animation: slideInFromRight 0.3s ease forwards;
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animate the CTA button */
.mobile-menu-overlay.active .mobile-book-button {
    animation: fadeInUp 0.4s ease 0.35s forwards;
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-social-links {
    animation: fadeInUp 0.4s ease 0.4s forwards;
    opacity: 0;
}

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

/* Kashiwa Booking Form Styles */
.kashiwa-booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
}

.kashiwa-form-wrapper {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.form-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 3px solid #2d5a3d;
    display: inline-block;
    border-top: none;
}

.section-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-style: italic;
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-group label {
    min-width: 150px;
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2d5a3d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.small-input {
    max-width: 150px !important;
}

/* Date inputs */
.date-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.date-inputs input {
    width: 60px;
    text-align: center;
    padding: 12px 8px;
}

.date-inputs span {
    color: #666;
    font-weight: bold;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 30px;
    flex: 1;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal !important;
    min-width: auto !important;
}

.radio-option input[type="radio"] {
    margin: 0;
    width: auto;
    flex: none;
}

.radio-label {
    font-size: 1rem;
    color: #333;
}

/* Submit section */
.submit-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.submit-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.css-178qcrb {
    margin: 0 auto !important;
}

/* Payment Section Styles */
.payment-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.payment-notice {
    color: #2d5a3d;
    font-size: 1rem;
    margin-bottom: 20px;
}

.payment-info {
    margin-top: 25px;
}

.payment-info ol {
    color: #555;
    line-height: 1.6;
}

.security-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.terms-section {
    margin: 30px 0;
}

.terms-text {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.terms-link {
    color: #2d5a3d;
    text-decoration: underline;
    font-weight: bold;
}

.terms-link:hover {
    color: #1e3d28;
}

.checkbox-wrapper {
    margin-top: 20px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    font-weight: normal !important;
    min-width: auto !important;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
    flex: none;
}

.submit-button {
    background: linear-gradient(135deg, #2d5a3d, #1e3d28);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e3d28, #0f1e14);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}

/* Success page */
.kashiwa-success {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.success-content {
    background: linear-gradient(135deg, #2d5a3d, #1e3d28);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.3);
}

.success-content h2 {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.success-footer h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: #a8d4a8;
}

.bamboo-decoration {
    font-size: 2rem;
    margin-top: 10px;
}

/* Error messages */
.error-messages {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #f5c6cb;
}

.error-messages ul {
    margin: 0;
    padding-left: 20px;
}

.error-messages li {
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .kashiwa-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .form-group label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .date-inputs input {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .kashiwa-booking-container,
    .kashiwa-success {
        padding: 0 15px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .success-content {
        padding: 40px 25px;
    }
    
    .success-content h2 {
        font-size: 1.8rem;
    }
}
