/* Tour Details Page Styles */
.tour-container {
    margin: 100px auto 0 auto;
}
.tour-header {
    margin-bottom: 32px;
}

/* Tour Overview Section */
.tour-overview-section {
    margin: 40px 0;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.tour-overview-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #181818;
}

.tour-overview-content {
    max-width: 800px;
}

.tour-overview-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}
.tour-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.tour-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    font-size: 1.08rem;
    color: #222;
}
.tour-rating {
    color: #f7a700;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}
.tour-rating .stars {
    color: #f7a700;
    font-size: 1.1em;
    margin-left: 2px;
}
.tour-reviews {
    color: #8a8a8a;
    text-decoration: underline;
    font-weight: 500;
}
.tour-duration, .tour-location {
    color: #222;
    font-weight: 500;
}
.tour-main-row {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.tour-image-col {
    flex: 2;
}
.tour-main-image {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    max-height: 340px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.tour-booking-col {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
}
.booking-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(52, 176, 220, 0.08);
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #eaf6fb;
}
.booking-price-label {
    color: #888;
    font-size: 1rem;
    margin-bottom: 2px;
}
.booking-price {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 18px;
}
.price-amount {
    font-size: 28px;
    color: #000000;
    font-weight: 700;
}
.booking-btn {
    width: 100%;
    background: #177FA4;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(235, 235, 235, 0.08);
}
.booking-btn:hover {
    background: #2490b8;
}
.booking-info {
    font-size: 0.98rem;
    color: #555;
    margin-top: 4px;
}
.booking-note {
    margin-bottom: 8px;
}
.booking-note a {
    color: #34B0DC;
    text-decoration: underline;
}
.booking-guarantee a {
    color: #2490b8;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .tour-container {
        margin: 60px auto 0 auto;
    }
    .tour-main-row {
        flex-direction: column;
        gap: 24px;
    }
    .tour-booking-col {
        max-width: 100%;
        width: 100%;
    }
    
}
@media (max-width: 600px) {
    .tour-container {
        margin: 50px auto 0 auto;
    }
    .tour-details-container {
        padding: 0 4vw 24px 4vw;
    }
    .tour-title {
        font-size: 1.2rem;
    }
    .tour-meta {
        font-size: 0.98rem;
        gap: 10px;
    }
    .booking-box {
        padding: 16px 8px 12px 8px;
    }
    .booking-price {
        font-size: 1.3rem;
    }
    .price-amount {
        font-size: 1.4rem;
    }
    .booking-btn {
        font-size: 1rem;
        padding: 10px 0;
    }
}
.swiper {
    margin-left: initial !important;
    margin-right: initial !important;
}
/* Places you will see section - Swiper version */
.places-section {
    margin: 40px 0 0 0;
    padding: 0 0 16px 0;
}
.places-title {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #181818;
}
.places-swiper {
    width: calc(4 * 180px + 3 * 28px);
    padding-bottom: 8px;
    position: relative;
    margin: 0 auto;
}
.places-swiper .swiper-wrapper {
    align-items: stretch;
}
.place-card {
    background: none;
    border-radius: 18px;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
}
.place-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.place-name {
    font-size: 1.05rem;
    color: #181818;
    font-weight: 700;
    text-align: left;
    margin-left: 2px;
    margin-top: 0;
}
.places-swiper .swiper-button-next,
.places-swiper .swiper-button-prev {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    color: #222;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.places-swiper .swiper-button-next:after,
.places-swiper .swiper-button-prev:after {
    font-size: 1.3rem;
}
.places-swiper .swiper-button-next:hover,
.places-swiper .swiper-button-prev:hover {
    background: #f2f2f2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
@media (max-width: 1100px) {
    .place-card, .place-card img {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
    }
    .place-card img {
        height: 90px;
    }
}
@media (max-width: 700px) {
    .places-section {
        padding: 0 12px;
    }
    .places-swiper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-bottom: 0;
        margin: 0 auto;
    }
    .place-card, .place-card img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .place-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .place-card img {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
        border-radius: 12px;
        margin-bottom: 8px;
        object-fit: cover;
    }
    .places-swiper .swiper-button-next,
    .places-swiper .swiper-button-prev {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.85);
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        z-index: 2;
    }
    .places-swiper .swiper-button-next {
        right: 8px;
        left: auto;
    }
    .places-swiper .swiper-button-prev {
        left: 8px;
        right: auto;
    }
}
@media (max-width: 500px) {
    .place-card img {
        height: 170px;
    }
}
.highlights-section {
    margin: 40px 0 0 0;
    padding: 0 0 16px 0;
}
.highlights-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.highlights-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.highlights-list li {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checkmark {
    color: #177FA4;
    font-size: 1.2em;
    margin-right: 6px;
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .highlights-columns {
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .highlights-columns {
        flex-direction: column;
        gap: 0;
    }
    .highlights-list {
        margin-bottom: 18px;
    }
}
.included-section {
    margin: 50px 0 ;
    padding: 0 0 16px 0;
}
.included-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.included-columns {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
}
.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.included-list li {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.included-icon {
    color: #2ecc71;
    font-size: 1.2em;
    margin-right: 6px;
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .included-columns {
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .included-columns {
        flex-direction: column;
        gap: 0;
    }
    .included-list {
        margin-bottom: 18px;
    }
}
.itinerary-section {
    padding: 0 0 16px 0;
    margin: 50px 0;
}
.itinerary-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.itinerary-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.itinerary-map img {
    width: 350px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.itinerary-accordion {
    flex: 1;
    min-width: 0;
    width: 98%;
    margin: 0 auto;
}
.itinerary-header-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 8px;
}
.itinerary-showall {
    background: none;
    border: none;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.itinerary-days {
    border-top: 1px solid #e0e0e0;
}
.itinerary-day {
    border-bottom: 1px solid #e0e0e0;
}
.itinerary-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 18px 18px 18px;
    cursor: pointer;
    font-size: 1.08rem;
    color: #222;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.itinerary-day-header .arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf6fb;
    border-radius: 50%;
    font-size: 1.2em;
    color: #177FA4;
    box-shadow: 0 1px 4px rgba(52,176,220,0.08);
    margin-left: 12px;
    transition: transform 0.3s, background 0.2s;
}
.itinerary-day-header:hover .arrow,
.itinerary-day.active .itinerary-day-header .arrow {
    background: #177FA4;
    color: #fff;
}
.itinerary-day.active .arrow {
    transform: rotate(180deg);
}
.itinerary-day-content {
    display: none;
    padding: 0 18px 18px 18px;
    animation: fadeIn 0.3s;
    flex-direction: row;
    align-items: flex-start;
}
.itinerary-day.active .itinerary-day-content {
    display: flex;
}
.itinerary-day-content img {
    width: 340px;
    min-width: 220px;
    max-width: 420px;
    margin-bottom: 0;
    margin-top: 0;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.itinerary-day-content p {
    margin: 0 0 0 24px;
    font-size: 1.13rem;
    color: #222;
    line-height: 1.7;
    flex: 1 1 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 900px) {
    .itinerary-row {
        flex-direction: column;
        gap: 24px;
    }
    .itinerary-map img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    .itinerary-day-content {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .itinerary-day-content img {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 8px;
    }
    .itinerary-day-content p {
        margin: 0;
    }
    .itinerary-accordion {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        border-radius: 0;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0;
    }
    .itinerary-day-header {
        width: 100%;
        box-sizing: border-box;
        padding-left: 12px;
        padding-right: 12px;
    }
    .itinerary-header-row {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.itinerary-arrow {
    font-size: 1em;
    color: #000000;
    margin-left: 12px;
    transition: transform 0.3s, color 0.2s;
    display: inline-block;
    vertical-align: middle;
}
.itinerary-day.active .itinerary-arrow,
.itinerary-showall.active .itinerary-arrow {
    transform: rotate(180deg);
    color: #2490b8;
}
.itinerary-day-label {
    color: #888;
    font-weight: 400;
    font-size: 1.05rem;
    margin-right: 4px;
}
.itinerary-location {
    color: #222;
    font-weight: 400;
    font-size: 1.05rem;
}
.inclusions-section {
    margin: 50px  0;
}
.inclusions-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.inclusions-box {
    background: #faf8f4;
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}
.inclusions-left {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.inclusion-item i {
    font-size: 1.5em;
    color: #222;
    margin-top: 2px;
    min-width: 28px;
    text-align: center;
}
.inclusion-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}
.inclusion-desc {
    color: #6a6a6a;
    font-size: 1.05rem;
}
.inclusions-right {
    flex: 2;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.included-activities, .optional-activities {
    background: none;
}
.included-label, .optional-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.included-label i, .optional-label i {
    color: #177FA4;
    font-size: 1.1em;
}
.included-activities ul, .optional-activities ul {
    margin: 0 0 0 0;
    padding-left: 20px;
    color: #222;
    font-size: 1.05rem;
}
.optional-activities {
    border-top: 1px solid #d6d6d6;
    margin-top: 18px;
    padding-top: 18px;
}
.showless-btn {
    background: none;
    border: none;
    color: #b23b3b;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.showless-btn i {
    font-size: 1em;
}
.showless-btn:hover {
    color: #a11a1a;
}
@media (max-width: 900px) {
    .inclusions-box {
        flex-direction: column;
        gap: 24px;
        padding: 18px 8px;
    }
    .inclusions-right {
        min-width: 0;
    }
}
.excluded-section {
    margin: 50px 0;
    padding: 0 0 16px 0;
}
.excluded-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.excluded-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.excluded-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.excluded-list li {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.excluded-icon {
    color: #222;
    font-size: 1.2em;
    margin-right: 6px;
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .excluded-columns {
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .excluded-columns {
        flex-direction: column;
        gap: 0;
    }
    .excluded-list {
        margin-bottom: 18px;
    }
}
.customer-photos-section {
    margin: 40px 0 0 0;
    position: relative;
}
.customer-photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.customer-photos-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2340;
    margin: 0;
}
.photos-count {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}
.customer-photos-container {
    position: relative;
}
.customer-photos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}
.customer-photos-grid.expanded {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.additional-photo {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.additional-photo.loaded {
    opacity: 1;
    transform: translateY(0);
}
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lazy-load.loaded {
    opacity: 1;
}

.customer-photo {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 180px;
    transition: transform 0.2s ease;
}
.customer-photo.large {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    height: 100%;
}
.customer-photo.small {
    height: 100%;
}
.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.customer-photo:hover {
    transform: translateY(-2px);
}
.customer-photo:hover img {
    transform: scale(1.08);
}
.photo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,20,20,0.6);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    pointer-events: none;
    backdrop-filter: blur(2px);
}
.photos-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.photos-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}
.photos-nav-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}
.photos-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.photos-nav-btn:disabled:hover {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #6b7280;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    /* Reduce section margins on mobile */
    .included-section,
    .itinerary-section,
    .inclusions-section,
    .excluded-section,
    .faq-section,
    .highlights-section,
    .places-section,
    .tour-reviews-section,
    .customer-photos-section {
        margin: 30px 0;
    }
    
    .customer-photos-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 0 4px 8px 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        grid-template-columns: none;
        grid-template-rows: none;
    }
    .customer-photos-grid::-webkit-scrollbar {
        display: none;
    }
    .customer-photo {
        flex-shrink: 0;
        width: 280px;
        height: 200px;
        grid-row: auto;
        grid-column: auto;
    }
    .customer-photo.large {
        width: 280px;
        height: 200px;
    }
    .customer-photo.small {
        width: 280px;
        height: 200px;
    }
    .additional-photo {
        width: 280px;
        height: 200px;
    }
    .photos-nav {
        display: flex;
    }
    .customer-photos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Small phones responsive design */
@media (max-width: 480px) {
    /* Further reduce section margins on small phones */
    .included-section,
    .itinerary-section,
    .inclusions-section,
    .excluded-section,
    .faq-section,
    .highlights-section,
    .places-section,
    .tour-reviews-section,
    .customer-photos-section {
        margin: 20px 0;
    }
}

/* Tablet responsive design */
@media (max-width: 900px) and (min-width: 769px) {
    .customer-photos-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .customer-photo {
        height: 180px;
    }
    .customer-photo.large {
        grid-row: 1 / span 2;
        grid-column: 1 / 2;
        height: 100%;
    }
} 

.tour-reviews-section {
    margin: 40px 0 0 0;
}
.tour-reviews-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #181818;
}
.tour-reviews-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.tour-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    border: 1px solid #ececec;
}
.tour-review-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
}
.tour-review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-review-content {
    text-align: center;
}
.tour-review-text {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 10px;
    font-style: italic;
}
.tour-review-name {
    font-size: 1rem;
    font-weight: 600;
    color: #181818;
}
@media (max-width: 900px) {
    .tour-reviews-list {
        gap: 16px;
    }
    .tour-review-card {
        min-width: 0;
        max-width: 100%;
        flex: 1 1 100%;
    }
}
@media (max-width: 600px) {
    .tour-reviews-list {
        flex-direction: column;
        gap: 12px;
    }
    .tour-review-card {
        padding: 14px 8px 10px 8px;
    }
} 

/* --- Customer Photos Gallery Split Layout --- */
.customer-photos-gallery {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}
.customer-photos-left {
    flex: 1 1 0;
    min-width: 0;
}
.customer-photos-right {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    min-width: 0;
}
.customer-photo.large {
    width: 100%;
    aspect-ratio: 16/9;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}
.customer-photo.small {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 100%;
}
.customer-photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
}
.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.customer-photo:hover img {
    transform: scale(1.04);
}
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
}
@media (max-width: 900px) {
    .customer-photos-gallery {
        flex-direction: column;
    }
    .customer-photos-left, .customer-photos-right {
        width: 100%;
        min-width: 0;
    }
    .customer-photo.large, .customer-photo.small {
        aspect-ratio: 16/9;
    }
    .customer-photos-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .customer-photos-gallery {
        flex-direction: column;
        gap: 10px;
    }
    .customer-photos-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .customer-photo.large, .customer-photo.small {
        aspect-ratio: 16/10;
    }
} 

/* FAQ Section Enhanced */
.faq-section {
    margin: 48px 0 0 0;
    padding: 32px 0;
}
.faq-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    transition: border-color 0.2s;
}
.faq-item.active, .faq-item:hover {
    border-color: #d1d5db;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    padding: 20px;
    cursor: pointer;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #111827;
}
.faq-chevron {
    margin-left: 12px;
    transition: transform 0.3s;
    color: #6b7280;
    font-size: 1rem;
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #374151;
}
.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    background: none;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}


/* Book/Contact Section - Full Width, Minimal */
.book-contact-section {
    width: 100%;
    background: #fff;
    padding: 56px 0 40px 0;
    margin-top: 48px;
}
.book-contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center;
    color: #23272f;
}
.book-contact-form {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.form-row {
    display: flex;
    gap: 32px;
}
.form-group {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.book-contact-form label {
    font-size: 1.15rem;
    font-weight: 500;
    color: #222;
}
.book-contact-form input,
.book-contact-form textarea {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 16px;
    font-size: 1.15rem;
    background: #fff;
    transition: border 0.2s;
    resize: none;
}
.book-contact-form input:focus,
.book-contact-form textarea:focus {
    border-color: #177FA4;
    outline: none;
    background: #fff;
}
.book-contact-form textarea {
    min-height: 120px;
}
.book-contact-btn {
    background: #177FA4;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 18px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: none;
    width: 100%;
    max-width: 320px;
    align-self: flex-end;
}
.book-contact-btn:hover {
    background: #2490b8;
}
.recaptcha-group {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}
.contact-info-block {
    margin: 48px auto 0 auto;
    max-width: 1100px;
    background: none;
    padding: 0;
    color: #23272f;
}
.contact-info-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-block li {
    font-size: 1.08rem;
    margin-bottom: 6px;
}
@media (max-width: 900px) {
    .book-contact-form, .contact-info-block {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .book-contact-btn {
        max-width: 100%;
        align-self: stretch;
    }
}

.book-contact-flex {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}
.book-contact-form {
    flex: 2 1 400px;
}
.contact-info-block {
    flex: 1 1 260px;
    margin: 0;
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1.5px solid #ececec;
    box-shadow: none;
    color: #23272f;
    min-width: 220px;
    max-width: 340px;
}
.contact-info-block h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #23272f;
}
.contact-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-block li {
    font-size: 1.08rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #23272f;
}
.contact-info-block li i {
    color: #177FA4;
    font-size: 1.15em;
    min-width: 22px;
    text-align: center;
}
@media (max-width: 900px) {
    .book-contact-flex {
        flex-direction: column;
        gap: 32px;
        max-width: 98vw;
        padding: 0 2vw;
    }
    .contact-info-block {
        max-width: 100%;
        min-width: 0;
        padding: 24px 10px;
        margin-top: 0;
    }
}

/* Simple Professional Contact Information Section */
.pro-contact-section {
  max-width: 1100px;
  margin: 50px auto 0 auto;
  padding: 30px 20px 0 20px;
  background: none;
  border-top: 1px solid #e5e7eb;
}
.pro-contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
  text-align: left;
  background: none;
}
.pro-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  background: none;
}
.pro-contact-card {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: none;
}
.pro-contact-icon {
  font-size: 1.2rem;
  color: #666;
  min-width: 20px;
  text-align: center;
}
.pro-contact-label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 2px;
}
.pro-contact-value {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}
.pro-contact-value:hover {
  color: #555;
}
@media (max-width: 768px) {
  .pro-contact-section {
    margin: 40px auto 0 auto;
    padding: 24px 16px 0 16px;
  }
  .pro-contact-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .pro-contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pro-contact-card {
    gap: 10px;
  }
  .pro-contact-icon {
    font-size: 1.1rem;
    min-width: 18px;
  }
}

/* Availability Section Styles */
.availability-section {
    margin: 60px auto;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}



.availability-grid {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 0;
}

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

.availability-section-header h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 8px;
    font-weight: 600;
}

.availability-section-header p {
    color: #6b7280;
    font-size: 0.9rem;
}

.availability-grid-header {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.5fr 2fr;
    gap: 20px;
    padding: 14px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
    color: #374151;
    font-size: 0.8rem;
    text-align: left;
}

.availability-grid-header > div:nth-child(4) {
    text-align: center;
}

.availability-grid-header > div:nth-child(5) {
    text-align: right;
}

.availability-card {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.5fr 2fr;
    gap: 20px;
    padding: 20px 24px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    background: #fff;
}

.availability-card:hover {
    background: #f8fafc;
}

.availability-card:last-child {
    border-bottom: none;
}

.availability-dates {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.availability-date {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 400;
}

.availability-date.start {
    color: #1f2937;
    font-weight: 500;
}

.availability-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.special-offer-badge {
    background: none;
    color: #059669;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 500;
    border: 1px solid #059669;
}

.availability-spots {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.spots-available {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.75rem;
}

.spots-full {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.75rem;
}

.availability-request {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 400;
}

.availability-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

.availability-dates-mobile {
    display: none;
}

.price-original {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.book-now-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.book-now-btn:hover {
    background: #047857;
}

.book-now-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.book-now-btn.disabled:hover {
    background: #9ca3af;
}



.no-availability {
    text-align: center;
    padding: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #d1d5db;
}

.no-availability p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    background: #1f2937;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: #111827;
}

/* Responsive Design */
@media (max-width: 768px) {
    .availability-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .availability-grid {
        padding: 0;
        border: none;
        background: transparent;
    }
    
    .availability-grid-header {
        display: none;
    }
    
    .availability-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 16px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .availability-card:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    /* Date Section */
    .availability-dates-mobile {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 12px;
    }
    
    /* Hide desktop date columns on mobile */
    .availability-card > .availability-date {
        display: none;
    }
    
    .availability-date {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .availability-date.start {
        font-weight: 600;
        color: #1f2937;
    }
    
    /* Badge Section */
    .availability-badges {
        justify-content: flex-start;
        margin-bottom: 12px;
    }
    
    /* Spots Section */
    .availability-spots {
        text-align: left;
        margin-bottom: 12px;
    }
    
    .spots-available {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 4px;
    }
    
    .availability-request {
        font-size: 0.8rem;
    }
    
    /* Pricing Section */
    .availability-pricing {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .price-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-current {
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    .price-original {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .book-now-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .availability-section {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .availability-card {
        padding: 16px;
        gap: 12px;
    }
    
    .availability-dates-mobile {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .availability-date {
        font-size: 0.85rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .book-now-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .availability-pricing {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .book-now-btn {
        width: 100%;
    }
    
    .no-availability {
        padding: 30px 20px;
    }
}

/* Reservation Modal Styles */
.reservation-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10px auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f9fa;
    color: #1f2937;
    border-radius: 12px 12px 0 0;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.modal-body {
    padding: 20px;
}

.reservation-details {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.reservation-details h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: #1f2937;
}

.reservation-details p {
    margin: 0 0 4px 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1f2937;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

.total-price {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin: 16px 0;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.total-price h3,
.total-price p {
    margin: 0;
    font-size: 1rem;
    color: #1f2937;
}

.submit-reservation {
    width: 100%;
    background: #059669;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-reservation:hover {
    background: #047857;
}

.submit-reservation:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #9ca3af;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 16px;
    }
    
    .modal-header h2,
    .modal-header h3 {
        font-size: 1.1rem;
    }
}

