/**
 * Landing Page Styles
 * Enhanced modern design for Bethel Guest House
 * Color Scheme: Black/Dark Theme
 */

/* ============================================
   Navigation
   ============================================ */
#main-nav.nav-scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   Hero Section Styles
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video-wrapper iframe,
.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px;
    text-align: center;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    margin-bottom: 30px;
    animation: heroFadeInUp 1s ease-out 0.2s both;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: heroFadeInUp 1s ease-out 0.4s both;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Floating Booking Widget (Glass Style)
   ============================================ */
.booking-widget-wrapper {
    position: relative;
    z-index: 20;
    padding: 0 20px 30px;
    animation: bookingSlideUp 0.8s ease-out 0.6s both;
}

@keyframes bookingSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-booking-form {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px rgba(255, 255, 255, 0.35);
}

.glass-field {
    flex: 1;
    padding: 10px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.glass-field-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.glass-field-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.glass-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.glass-dates-wrapper {
    display: flex;
    align-items: center;
    flex: 2;
    position: relative;
    cursor: pointer;
}

.glass-guests {
    flex: 1;
    padding: 8px 20px;
}

.glass-guests-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
}

.glass-counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.glass-counter-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.glass-counter-btn svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.glass-counter-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    min-width: 20px;
    text-align: center;
}

.glass-submit-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-submit-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Booking Widget */
@media (max-width: 900px) {
    .booking-widget-wrapper {
        padding: 0 16px 40px;
    }

    .glass-booking-form {
        padding: 10px 12px;
    }

    .glass-field {
        padding: 8px 12px;
    }
}

@media (max-width: 600px) {
    .booking-widget-wrapper {
        padding: 0 12px 30px;
    }

    .glass-booking-form {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 16px;
        border-radius: 16px;
    }

    .glass-dates-wrapper {
        flex-direction: column;
    }

    .glass-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }

    .glass-field {
        padding: 8px 4px;
    }

    .glass-guests {
        padding: 8px 4px;
    }

    .glass-submit-btn {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        text-align: center;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 24px;
    }

    .hero-tagline {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .hero-logo {
        max-width: 200px;
    }
}

/* ============================================
   UNESCO Creative City Section - Black Theme
   ============================================ */
.unesco-section {
    position: relative;
    overflow: hidden;
}

.unesco-section .unesco-background {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.unesco-section .unesco-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.unesco-section .unesco-content {
    position: relative;
    z-index: 1;
}

.unesco-section .unesco-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.unesco-section .unesco-badge svg {
    width: 24px;
    height: 24px;
    fill: #d4af37;
}

.unesco-section .unesco-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.unesco-section .unesco-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.unesco-section .unesco-tagline {
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 300;
}

.unesco-section .unesco-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto 35px;
}

.unesco-section .unesco-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.unesco-section .unesco-feature {
    text-align: center;
    padding: 20px;
}

.unesco-section .unesco-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.unesco-section .unesco-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: #d4af37;
}

.unesco-section .unesco-feature-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.unesco-section .unesco-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 30px;
}

/* UNESCO Animation */
.unesco-section .unesco-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.unesco-section .unesco-animate-delay-1 {
    transition-delay: 0.1s;
}

.unesco-section .unesco-animate-delay-2 {
    transition-delay: 0.2s;
}

.unesco-section .unesco-animate-delay-3 {
    transition-delay: 0.3s;
}

.unesco-section .unesco-animate-delay-4 {
    transition-delay: 0.4s;
}

/* UNESCO Responsive */
@media (max-width: 768px) {
    .unesco-section .unesco-title {
        font-size: 28px;
    }

    .unesco-section .unesco-tagline {
        font-size: 16px;
    }

    .unesco-section .unesco-description {
        font-size: 15px;
        padding: 0 15px;
    }

    .unesco-section .unesco-features {
        gap: 20px;
    }

    .unesco-section .unesco-feature {
        flex: 0 0 calc(50% - 20px);
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .unesco-section .unesco-feature {
        flex: 0 0 100%;
    }
}

/* ============================================
   Destinations Section - Black Theme
   ============================================ */
.destinations-section {
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.destinations-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.destinations-section .section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.destinations-section .section-subtitle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.destinations-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
}

.destinations-section .section-description {
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.destinations-section .destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Destination Card Styles - Black Theme */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.destination-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.destination-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .destination-card-image img {
    transform: scale(1.1);
}

.destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-card-overlay {
    opacity: 0.5;
}

.destination-card-content {
    padding: 24px;
}

.destination-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-card-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.destination-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.destination-card-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.destination-card-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.destination-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
}

.destination-feature svg {
    width: 16px;
    height: 16px;
    fill: #1a1a1a;
}

.destination-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.destination-card-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-card-cta {
    color: #000000;
}

.destination-card:hover .destination-card-cta svg {
    transform: translateX(4px);
}

/* Destination Animation */
.destination-animate {
    opacity: 0;
    transform: translateY(40px);
    animation: destinationFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes destinationFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destinations-section .header-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: headerFadeIn 0.6s ease-out forwards;
}

@keyframes headerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destinations Responsive */
@media (max-width: 1024px) {
    .destinations-section .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-section .section-title {
        font-size: 32px;
    }

    .destinations-section .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-card-image {
        height: 220px;
    }

    .destination-card-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .destinations-section .section-title {
        font-size: 28px;
    }

    .destination-card-content {
        padding: 20px;
    }

    .destination-card-features {
        gap: 12px;
    }
}

/* ============================================
   About Bethel Section - Black Theme
   ============================================ */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-section .about-image {
    position: relative;
    overflow: hidden;
}

.about-section .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-section:hover .about-image img {
    transform: scale(1.05);
}

.about-section .about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.about-section .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-section .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-section .about-badge svg {
    width: 18px;
    height: 18px;
    fill: #d4af37;
}

.about-section .about-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.about-section .about-description {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin: 0 0 32px 0;
}

.about-section .about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
}

.about-section .about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section .about-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 10px;
}

.about-section .about-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.about-section .about-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-section .about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.about-section .about-cta:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.about-section .about-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.about-section .about-cta:hover svg {
    transform: translateX(4px);
}

/* About Section Animation */
.about-section .about-animate {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.about-section .about-animate.visible {
    opacity: 1;
    transform: translateX(0);
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-section .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-section .about-image {
        height: 400px;
    }

    .about-section .about-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-section .about-title {
        font-size: 32px;
    }

    .about-section .about-features {
        flex-direction: column;
        gap: 16px;
    }

    .about-section .about-content {
        padding: 40px 24px;
    }
}

/* ============================================
   Features/Amenities Section - Black Theme
   ============================================ */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.features-section .section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.features-section .section-subtitle svg {
    fill: #d4af37;
}

.features-section .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #333333 100%);
    transition: height 0.4s ease;
}

.feature-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
}

.feature-card-icon img,
.feature-card-icon svg {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.feature-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.feature-card-divider {
    width: 50px;
    height: 2px;
    background: #1a1a1a;
    margin-top: 20px;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-card-divider {
    width: 80px;
    background: #d4af37;
}

/* Features Animation */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Features Responsive */
@media (max-width: 1024px) {
    .features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-section .section-title {
        font-size: 32px;
    }

    .features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 24px;
    }
}

/* ============================================
   Newsletter Section - Black Theme
   ============================================ */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section .newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.newsletter-section .newsletter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.newsletter-section .newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.newsletter-section .newsletter-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.newsletter-section .newsletter-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 32px 0;
}

.newsletter-section .newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-section .newsletter-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-section .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-section .newsletter-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-section .newsletter-input-error {
    border-color: #ef4444 !important;
}

.newsletter-section .newsletter-input-error:focus {
    border-color: #ef4444 !important;
}

.newsletter-section .newsletter-submit {
    padding: 16px 32px;
    background: #d4af37;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-section .newsletter-submit:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.newsletter-section .newsletter-image {
    position: relative;
    overflow: hidden;
}

.newsletter-section .newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Newsletter Responsive */
@media (max-width: 1024px) {
    .newsletter-section .newsletter-wrapper {
        grid-template-columns: 1fr;
    }

    .newsletter-section .newsletter-content {
        padding: 60px 40px;
    }

    .newsletter-section .newsletter-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .newsletter-section .newsletter-title {
        font-size: 28px;
    }

    .newsletter-section .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section .newsletter-content {
        padding: 40px 24px;
    }
}

/* ============================================
   Scroll Animations - Generic
   ============================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   Destination Modal - Extra Large Modern Design
   ============================================ */
.destination-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    padding: 40px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.destination-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.destination-modal {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    margin: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.destination-modal-overlay.active .destination-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Modal Close Button */
.destination-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.destination-modal-close:hover {
    background: #1a1a1a;
    transform: rotate(90deg);
}

.destination-modal-close svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
    transition: fill 0.3s ease;
}

.destination-modal-close:hover svg {
    fill: #ffffff;
}

/* Modal Hero Image */
.destination-modal-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.destination-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

.destination-modal-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #ffffff;
}

.destination-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.destination-modal-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.destination-modal-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Modal Body Content */
.destination-modal-body {
    padding: 48px;
}

.destination-modal-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 40px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

/* Info Grid */
.destination-modal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.destination-modal-info-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.destination-modal-info-card:hover {
    background: #f3f4f6;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.destination-modal-info-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.destination-modal-info-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.destination-modal-info-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.destination-modal-info-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Highlights Section */
.destination-modal-section {
    margin-bottom: 40px;
}

.destination-modal-section:last-child {
    margin-bottom: 0;
}

.destination-modal-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.destination-modal-section-title svg {
    width: 28px;
    height: 28px;
    fill: #d4af37;
}

.destination-modal-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.destination-modal-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.destination-modal-highlight:hover {
    background: #f3f4f6;
}

.destination-modal-highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-modal-highlight-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.destination-modal-highlight-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.destination-modal-highlight-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Tips Section */
.destination-modal-tips {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    padding: 28px;
    border-left: 4px solid #d4af37;
}

.destination-modal-tips-title {
    font-size: 18px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-modal-tips-title svg {
    width: 24px;
    height: 24px;
    fill: #d4af37;
}

.destination-modal-tips-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.destination-modal-tips-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #78350f;
    line-height: 1.5;
}

.destination-modal-tips-list li:last-child {
    margin-bottom: 0;
}

.destination-modal-tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

/* Modal Footer */
.destination-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.destination-modal-distance {
    display: flex;
    align-items: center;
    gap: 12px;
}

.destination-modal-distance-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.destination-modal-distance-icon svg {
    width: 22px;
    height: 22px;
    fill: #1a1a1a;
}

.destination-modal-distance-text {
    font-size: 15px;
    color: #6b7280;
}

.destination-modal-distance-text strong {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
}

.destination-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destination-modal-cta:hover {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.destination-modal-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.destination-modal-cta:hover svg {
    transform: translateX(4px);
}

/* Modal Responsive */
@media (max-width: 900px) {
    .destination-modal-overlay {
        padding: 20px 16px;
    }

    .destination-modal-hero {
        height: 300px;
    }

    .destination-modal-hero-content {
        padding: 24px;
    }

    .destination-modal-title {
        font-size: 36px;
    }

    .destination-modal-body {
        padding: 32px 24px;
    }

    .destination-modal-intro {
        font-size: 17px;
    }

    .destination-modal-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .destination-modal-highlights {
        grid-template-columns: 1fr;
    }

    .destination-modal-footer {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .destination-modal-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .destination-modal-overlay {
        padding: 0;
    }

    .destination-modal {
        border-radius: 0;
        min-height: 100vh;
    }

    .destination-modal-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .destination-modal-hero {
        height: 260px;
    }

    .destination-modal-title {
        font-size: 28px;
    }

    .destination-modal-body {
        padding: 24px 20px;
    }

    .destination-modal-section-title {
        font-size: 20px;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}