/* ====================================
   TOUR DETAIL PAGE STYLES
   Aligned with complex-detail.css structure
   ==================================== */

/* ====================================
   PAGE CONTAINER
   ==================================== */
.page-container {
    margin-top: 105px;
}

@media (max-width: 480px) {
    .page-container {
        margin-top: 78px;
    }
}

/* ====================================
   BASE CONTAINER
   ==================================== */
.container {
    margin: 0 auto;
}

@media (max-width: 1752px) {
    .container {
        width: 100% !important;
        max-width: unset !important;
        padding: 0 15px;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.tour-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.tour-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(0.5);
}

.tour-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero__branding {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    z-index: 1;
    width: 90%;
    max-width: 800px;
}

.tour-hero__name {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.tour-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 400;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 9999px;
}

.tour-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max-width);
    height: fit-content;
}

@media (max-width: 1752px) {
    .tour-hero__content {
        width: 100% !important;
        max-width: unset !important;
    }
}

.tour-hero__inner {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

/* ====================================
   SECTION TITLES (same as complex)
   ==================================== */
.section-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 125%;
    color: var(--color-primary);
    text-align: center;
    font-family: var(--font-family-secondary);
    margin-bottom: 56px;
}

/* ====================================
   COMPLEX DESCRIPTION SECTION
   (reused from complex-detail for tour)
   ==================================== */
.complex-description {
    padding: 60px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.complex-description__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 0;
}

.complex-description__image {
    position: relative;
}

.complex-description__image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.08;
    border-radius: 24px;
    z-index: -1;
}

.complex-description__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4.5 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.complex-description__image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.complex-description__text {
    position: relative;
}

.complex-description__text::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.complex-description__title {
    font-family: var(--font-family-secondary);
    font-weight: 800;
    font-size: 44px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.complex-description__paragraphs {
    color: #333;
}

.complex-description__paragraphs p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
}

.complex-description__paragraphs p:first-of-type {
    font-size: 19px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 22px;
}

.complex-description__paragraphs p:last-child {
    margin-bottom: 0;
}

/* Feature Cards */
.complex-description__features {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.feature-item--full {
    flex: 0 0 100%;
}


.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d9347 100%);
    border-radius: 11px;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-content {
    text-align: left;
}

.feature-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 3px;
    font-family: var(--font-family-secondary);
}

.feature-label {
    font-size: 13px;
    color: #666;
    line-height: 1.2;
    font-weight: 500;
}

/* ====================================
   HIGHLIGHTS SECTION
   ==================================== */
.tour-highlights {
    padding: 60px 0;
    background: #FFFFFF;
}

.tour-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tour-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #F7FAF7;
    border: 1px solid #E2F1E4;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.tour-highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(70, 163, 81, 0.1);
}

.tour-highlight-item__icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.highlight-emoji,
.tour-highlight-item__icon i {
    font-size: 20px;
    line-height: 1;
}

.tour-highlight-item__text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* ====================================
   PROGRAM SECTION (DAYS)
   ==================================== */
.tour-program {
    padding: 60px 0;
    background: #fff;
}

.tour-program__timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-day {
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tour-day--active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(70, 163, 81, 0.12);
}

.tour-day__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.tour-day__header:hover {
    background: #FAFAFA;
}

.tour-day__number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tour-day:not(.tour-day--active) .tour-day__number {
    background: #E8E8E8;
}

.tour-day__number-text {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.tour-day:not(.tour-day--active) .tour-day__number-text {
    color: #888;
}

.tour-day__header-info {
    flex: 1;
    min-width: 0;
}

.tour-day__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 2px;
    display: block;
}

.tour-day:not(.tour-day--active) .tour-day__label {
    color: #999;
}

.tour-day__title {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.tour-day__toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    color: #999;
    transition: all 0.3s ease;
}

.tour-day--active .tour-day__toggle {
    color: var(--color-primary);
}

.tour-day__toggle-icon {
    transition: transform 0.3s ease;
}

.tour-day--active .tour-day__toggle-icon {
    transform: rotate(45deg);
}

/* Content accordion */
.tour-day__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.tour-day--active .tour-day__content {
    max-height: 2000px;
    padding: 0 24px 24px;
}

.tour-day__description {
    counter-reset: day-points;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    color: #444;
    font-size: 16px;
    line-height: 1.7;
}

.tour-day__description ul,
.tour-day__description ol {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

.tour-day__description li,
.tour-day__description p {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    counter-increment: day-points;
}

.tour-day__description li::before,
.tour-day__description p::before {
    content: counter(day-points) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.tour-day__description p:last-child {
    margin-bottom: 0;
}

/* ====================================
   INCLUDES SECTION
   ==================================== */
.tour-includes-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.tour-includes-list {
    max-width: 900px;
    margin: 0 auto;
    background: #F7FAF7;
    border: 2px solid #D4EDDA;
    border-radius: 20px;
    padding: 40px 48px;
}

.tour-includes-list__content {
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

.tour-includes-list__content ul,
.tour-includes-list__content ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-includes-list__content li,
.tour-includes-list__content p {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.tour-includes-list__content li::before,
.tour-includes-list__content p::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 7px;
    height: 7px;
    background: var(--color-primary);
    border-radius: 50%;
}

.tour-includes-list__content p:last-child {
    margin-bottom: 0;
}

/* Excludes note */
.tour-excludes-note {
    max-width: 900px;
    margin: 24px auto 0;
    background: #FFF8F8;
    border: 1px solid #F0D0D0;
    border-radius: 16px;
    padding: 28px 36px;
}

.tour-excludes-note__header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C0392B;
    margin-bottom: 16px;
}

.tour-excludes-note__header h3 {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.tour-excludes-note__content {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.tour-excludes-note__content ul,
.tour-excludes-note__content ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-excludes-note__content li,
.tour-excludes-note__content p {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.tour-excludes-note__content li::before,
.tour-excludes-note__content p::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #C0392B;
    border-radius: 50%;
}

.tour-excludes-note__content p:last-child {
    margin-bottom: 0;
}

/* ====================================
   ADDITIONAL INFO SECTION
   ==================================== */
.tour-additional {
    padding: 60px 0;
    background: #f8f9fa;
}

.tour-additional__content {
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    font-size: 16px;
    line-height: 1.75;
}

.tour-additional__content p {
    margin-bottom: 16px;
}

.tour-additional__content p:last-child {
    margin-bottom: 0;
}

/* ====================================
   GALLERY SECTION (like leisure-gallery)
   ==================================== */
.tour-gallery {
    padding: 60px 0;
    background: #fff;
}

.tour-gallery__content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 847px;
    margin: 0 auto;
}

.main-tour-image {
    width: 575px;
    max-width: 100%;
    aspect-ratio: 575 / 635;
}

.main-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
    display: block;
}

.tour-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 262px;
    max-width: 100%;
}

.tour-thumbnails img {
    width: 100%;
    aspect-ratio: 262 / 205;
    object-fit: cover;
    border-radius: 45px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
}

.tour-thumbnails img:hover {
    opacity: 0.8;
}

/* Single photo layout */
.tour-gallery__content > .main-tour-image:only-child {
    width: 100%;
    max-width: 847px;
    aspect-ratio: 847 / 635;
}

.tour-gallery__content > .main-tour-image:only-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}

/* ====================================
   CTA SECTION
   ==================================== */
.tour-cta {
    padding: 60px 0 80px;
    background: #fff;
}

.tour-cta__card {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d9347 100%);
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 12px 40px rgba(70, 163, 81, 0.25);
}

.tour-cta__title {
    font-family: var(--font-family-secondary);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.tour-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.tour-cta__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.tour-cta__btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: var(--font-family-secondary);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tour-cta__btn.btn--primary {
    background: #fff !important;
    color: var(--color-primary) !important;
    border: none;
}

.tour-cta__btn.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.tour-cta__btn.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.tour-cta__btn.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ====================================
   BUTTONS (same as complex)
   ==================================== */
.btn {
    display: inline-block;
    padding: 18px 32px;
    border: none;
    line-height: 1.2;
    border-radius: 45px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    max-width: 372px;
    width: 100%;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
    margin-top: 20px;
}

.btn--primary:hover {
    background-color: #3a8a44;
    transform: translateY(-2px);
}

/* ====================================
   RESPONSIVE: 1400px
   ==================================== */
@media (max-width: 1400px) {
    .tour-gallery__content {
        flex-direction: column;
        width: 100%;
    }

    .main-tour-image {
        width: 100%;
        max-width: 100%;
    }

    .tour-thumbnails {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .tour-thumbnails img {
        flex: 1;
        width: calc((100% - 20px) / 3);
    }

    /* Single photo - full width */
    .tour-gallery__content > .main-tour-image:only-child {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 575 / 635;
    }
}

/* ====================================
   RESPONSIVE: 1000px
   ==================================== */
@media (max-width: 1000px) {
    .section-title {
        font-size: 64px;
        margin-bottom: 40px;
    }

    .complex-description,
    .tour-highlights,
    .tour-program,
    .tour-includes,
    .tour-additional,
    .tour-gallery {
        padding: 56px 0;
    }

    /* Complex Description - no photo on tablets */
    .complex-description__content {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 900px;
        margin: 0 auto;
    }

    .complex-description__image {
        display: none;
    }

    .complex-description__text {
        text-align: center;
    }

    .complex-description__text::before {
        display: block;
        margin: 0 auto 24px;
    }

    .complex-description__title {
        font-size: 40px;
    }

    .complex-description__features {
        justify-content: center;
        gap: 20px;
        margin-top: 36px;
    }

    .feature-item {
        flex: 0 1 calc(33.333% - 14px);
        min-width: 170px;
    }
}

/* ====================================
   RESPONSIVE: TABLETS (768px)
   ==================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .complex-description,
    .tour-highlights,
    .tour-program,
    .tour-includes,
    .tour-additional,
    .tour-gallery {
        padding: 48px 0;
    }

    .tour-hero {
        display: flex;
        flex-direction: column-reverse;
        min-height: 400px;
        position: relative;
        justify-content: flex-end;
        padding-bottom: 15px;
    }

    .tour-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--hero-bg-image);
        background-size: cover;
        background-position: center;
        filter: brightness(0.5);
        z-index: 0;
    }

    .tour-hero__image {
        display: none;
    }

    .tour-hero__branding {
        display: flex;
        position: relative;
        gap: 16px;
        flex-direction: column;
        text-align: center;
        z-index: 4;
        margin: 0 auto;
        width: 100%;
        padding: 0 !important;
    }

    .tour-hero__background {
        z-index: 4;
        margin: auto;
        width: 100%;
        position: relative;
    }

    .tour-hero__name {
        display: none;
        color: #FFFFFF;
        font-size: 32px;
    }

    .tour-hero__location {
        display: none;
    }

    /* Description section */
    .complex-description__content {
        flex-direction: column;
        gap: 32px;
    }

    .complex-description__image {
        display: none;
    }

    .complex-description__text {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .complex-description__text::before {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }

    .complex-description__title {
        font-size: 32px;
        margin: 12px 0 20px 0;
    }

    .complex-description__paragraphs p {
        font-size: 18px;
    }

    .complex-description__features {
        gap: 16px;
        justify-content: center;
    }

    .feature-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .feature-item--full {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-value {
        font-size: 22px;
    }

    .feature-label {
        font-size: 12px;
    }

    /* Gallery */
    .tour-gallery__content {
        flex-direction: column;
        width: 100%;
    }

    .main-tour-image {
        width: 100%;
        aspect-ratio: 708 / 635;
        display: flex;
    }

    .main-tour-image img {
        width: 100%;
        height: 100%;
        border-radius: 45px;
    }

    .tour-thumbnails {
        flex-direction: row;
        width: 100%;
        height: auto;
        gap: 10px;
    }

    .tour-thumbnails img {
        flex: 1;
        width: calc((100% - 20px) / 3);
        height: auto;
        aspect-ratio: 229 / 205;
        border-radius: 45px;
    }

    /* Single photo - full width on tablets */
    .tour-gallery__content > .main-tour-image:only-child {
        width: 100%;
    }


    /* Program */
    .tour-day__header {
        padding: 16px 18px;
        gap: 14px;
    }

    .tour-day__number {
        width: 40px;
        height: 40px;
    }

    .tour-day__number-text {
        font-size: 16px;
    }

    .tour-day__title {
        font-size: 16px;
    }

    /* Highlights */
    .tour-highlights__grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .tour-cta__card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .tour-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .tour-cta__btn {
        justify-content: center;
        width: 100%;
    }

    .tour-cta__title {
        font-size: 24px;
    }

    .btn {
        font-size: 20px;
        padding: 16px 28px;
        max-width: none;
    }
}

/* ====================================
   RESPONSIVE: MOBILE (480px)
   ==================================== */
@media (max-width: 480px) {
    .tour-hero {
        min-height: 430px;
    }

    .tour-hero__branding {
        gap: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .tour-includes-list {
        padding: 24px;
    }
}

/* ====================================
   BOOKING POPUP
   ==================================== */
.booking-popup {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: popupFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.booking-popup__close:hover {
    color: var(--color-primary);
}

.booking-popup__title {
    font-family: var(--font-family-secondary);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.booking-popup__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.booking-popup__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #F7FAF7;
    border: 1px solid #E2F1E4;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
}

.booking-contact-item:hover {
    background: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 163, 81, 0.1);
}

.booking-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.booking-contact-info {
    display: flex;
    flex-direction: column;
}

.booking-contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 2px;
}

.booking-contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.booking-popup__footer {
    font-size: 14px;
    color: #888;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}
