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

html {
    scrollbar-gutter: stable;
    /* prevent layout shift when scrollbar appears */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2c3e50 100%);
    min-height: 100vh;
}

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

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.95rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

.coming-soon-banner strong {
    color: #fff;
    font-weight: 700;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

/* Adjust body padding when banner is shown */
body:has(.coming-soon-banner) {
    padding-top: 130px !important;
}

/* Header */
header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    min-height: 74px;
    /* keep nav height stable between pages/languages */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4aa;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #00d4aa;
}

/* Language Switcher */
.language-switcher select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 170px;
    height: 40px;
    line-height: 1.1;
}

.language-switcher select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4aa;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.language-switcher select option {
    background: #1a2332;
    color: white;
    padding: 8px;
}

/* Currency Switcher */
.currency-switcher {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.currency-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}

.currency-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4aa;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.currency-icon {
    font-size: 1.2em;
}

.currency-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.currency-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: left;
}

.currency-option:hover {
    background: rgba(0, 212, 170, 0.15);
}

.currency-option.active {
    background: rgba(0, 212, 170, 0.25);
    border-left: 3px solid #00d4aa;
}

.currency-symbol {
    font-size: 1.2em;
    min-width: 24px;
    text-align: center;
}

.currency-name {
    flex: 1;
    font-size: 0.9em;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle:hover span {
    background: #00d4aa;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 150, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    animation: aurora 8s ease-in-out infinite alternate;
}

@keyframes aurora {
    0% {
        opacity: 0.3;
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        opacity: 0.8;
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00d4aa, #00b894);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
}

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

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

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tour-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.tour-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4aa;
}

.tour-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4aa;
    margin: 1rem 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* What's Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.included-item {
    text-align: center;
    color: white;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.included-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Safety & Preparation Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.safety-item {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.safety-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00d4aa;
}

.safety-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group select {
    appearance: none;
}

.form-group select option {
    background: #1a2332;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: linear-gradient(45deg, #00d4aa, #00b894);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

/* Footer */
footer {
    background: rgba(15, 20, 25, 0.95);
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .language-switcher {
        margin-top: 1rem;
    }

    .language-switcher select {
        padding: 10px 15px;
        font-size: 1rem;
        width: 220px;
        min-width: auto;
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .safety-item,
    .included-item {
        padding: 1.5rem 1rem;
    }
}

/* Floating stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Accommodation Page Styles */
.hero-accommodation {
    position: relative;
    height: 70vh;
    background: url('/images/aurora/auroras600.png') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    overflow: hidden;
}

.hero-accommodation:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 10, 18, 0.75) 0%, rgba(10, 25, 40, 0.35) 50%, rgba(5, 10, 18, 0.85) 100%),
        radial-gradient(circle at 25% 75%, rgba(0, 212, 170, 0.25), transparent 60%);
    pointer-events: none;
    animation: auroraDrift 14s ease-in-out infinite alternate;
}

.hero-accommodation .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 1.25rem;
}

.hero-accommodation .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

.hero-accommodation .hero-content .hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    line-height: 1.4;
    opacity: .92;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

@keyframes auroraDrift {
    0% {
        transform: translateY(0px) scale(1);
        filter: hue-rotate(0deg);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        filter: hue-rotate(20deg);
    }

    100% {
        transform: translateY(0px) scale(1);
        filter: hue-rotate(0deg);
    }
}

@media (max-width: 900px) {
    .hero-accommodation {
        background-attachment: scroll;
        height: 60vh;
    }
}

/* Accommodation Photo Gallery */
.accommodation-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accommodation-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item.main-image {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
}

.gallery-note p {
    font-style: italic;
    color: #6c757d;
    font-size: 1rem;
}

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

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.gallery-close:hover,
.gallery-close:focus {
    color: #ff6b6b;
    text-decoration: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .gallery-item.main-image {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .accommodation-gallery h2 {
        font-size: 2rem;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        min-height: 200px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Location Section */
.location-section {
    padding: 4rem 0;
    background: #fff;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.address {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #00d4aa;
}

.location-highlights h4,
.distance-info h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #00d4aa;
    padding-bottom: 0.5rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

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

.distances-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.distance-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.distance-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.distance-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

.distance-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.distance-details strong {
    color: #2c3e50;
    font-size: 1rem;
}

.distance {
    color: #00d4aa;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-container h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #00d4aa;
    padding-bottom: 0.5rem;
}

.interactive-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

/* Map loading placeholder */
.interactive-map::before {
    content: "🗺️ Loading interactive map...";
    font-size: 1.1rem;
    color: #6c757d;
    position: absolute;
    z-index: 1;
}

/* Hide loading message when map is loaded */
.interactive-map.loaded::before {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-section h2 {
        font-size: 2rem;
    }

    .location-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .distance-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .interactive-map {
        height: 300px;
    }
}

.accommodation-details {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.accommodation-main h2 {
    color: #00d4aa;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.accommodation-main h3 {
    color: #fff;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.accommodation-main p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.accommodation-description p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.accommodation-features {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    height: fit-content;
}

.accommodation-features h3 {
    color: #00d4aa;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.additional-services {
    margin: 4rem 0;
}

.additional-services h3 {
    color: #00d4aa;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.5);
}

.service-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.service-card .price {
    display: inline-block;
    background: linear-gradient(135deg, #00d4aa, #00a085);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.activities-section {
    margin: 4rem 0;
    text-align: center;
}

/* Food Service Section Styles */
.food-service-section {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.food-service-section h3 {
    color: #00d4aa;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.food-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.food-service-text p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.food-service-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #00d4aa;
}

.service-detail h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-detail p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.food-menu-image {
    text-align: center;
}

.food-menu-image h4 {
    color: #00d4aa;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.menu-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.menu-image-container:hover {
    transform: scale(1.02);
    border-color: rgba(0, 212, 170, 0.6);
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-image-container:hover .menu-overlay {
    opacity: 1;
}

.menu-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 1rem;
}

.menu-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Modal for enlarged menu image */
.menu-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.menu-modal-content {
    position: relative;
    margin: 2% auto;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.menu-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: white;
    display: block;
    margin: auto;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close:hover {
    color: #00d4aa;
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.activities-section h3 {
    color: #00d4aa;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.activities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.activity {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    color: #e0e0e0;
    border: 1px solid rgba(0, 212, 170, 0.2);
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.activity:hover {
    background: rgba(0, 212, 170, 0.1);
}

.accommodation-booking {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 160, 133, 0.1));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.accommodation-booking h3 {
    color: #00d4aa;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.accommodation-booking p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.booking-platforms {
    margin-bottom: 2rem;
    text-align: center;
}

.booking-platforms h4 {
    color: #00d4aa;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.platform-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Base button styles */
.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4aa, #00b894);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #00b894, #009d80);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(0, 212, 170, 0.5);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: #00d4aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.3);
}

/* Booking options container */
.booking-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.booking-options .btn {
    min-width: 200px;
}

.btn-platform {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-platform.airbnb {
    background: linear-gradient(135deg, #FF5A5F, #FF385C);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 58, 92, 0.3);
}

.btn-platform.airbnb:hover {
    background: linear-gradient(135deg, #FF385C, #E00B41);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 58, 92, 0.4);
}

.btn-platform.booking {
    background: linear-gradient(135deg, #0071C2, #005AA3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 113, 194, 0.3);
}

.btn-platform.booking:hover {
    background: linear-gradient(135deg, #005AA3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 194, 0.4);
}

.contact-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

/* Reviews Section Styles */
.reviews-section {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.reviews-section h3 {
    color: #00d4aa;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.reviewer-location {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.review-rating {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: bold;
}

.review-source img {
    width: 16px;
    height: 16px;
}

.reviews-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.reviews-cta p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.review-platform-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-review {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-review.airbnb {
    background: rgba(255, 90, 95, 0.2);
    color: #FF5A5F;
    border: 2px solid #FF5A5F;
}

.btn-review.airbnb:hover {
    background: rgba(255, 90, 95, 0.3);
    transform: translateY(-2px);
}

.btn-review.booking {
    background: rgba(0, 113, 194, 0.2);
    color: #0071C2;
    border: 2px solid #0071C2;
}

.btn-review.booking:hover {
    background: rgba(0, 113, 194, 0.3);
    transform: translateY(-2px);
}

.contact-section h2 {
    color: #00d4aa;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-section p {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    cursor: pointer;
}

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

/* Responsive Design for Accommodation */
@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .activities-list {
        grid-template-columns: 1fr;
    }

    .food-service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .food-service-section {
        padding: 2rem 1rem;
    }

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

    .booking-options {
        flex-direction: column;
        align-items: center;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    .btn-platform {
        width: 100%;
        max-width: 300px;
    }

    .accommodation-booking {
        padding: 2rem 1rem;
    }

    .hero-accommodation {
        height: 50vh;
        padding: 0 1rem;
    }

    .reviews-section {
        padding: 2rem 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating {
        align-items: flex-start;
    }

    .review-platform-links {
        flex-direction: column;
        align-items: center;
    }

    .btn-review {
        width: 100%;
        max-width: 250px;
    }
}

/* Weather Page */
.weather-page .weather-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.weather-page .weather-hero .aurora-bg {
    opacity: .6;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.weather-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    position: relative;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .4);
}

.weather-card h3 {
    margin: 0 0 1rem;
    color: #00d4aa;
    font-size: 1.2rem;
    letter-spacing: .5px;
}

.weather-card .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: .9rem;
}

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

.weather-card .stat span {
    opacity: .75;
}

.weather-card strong {
    font-weight: 600;
    color: #fff;
}

.weather-card .updated {
    margin-top: .75rem;
    font-size: .7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .55;
}

.loading {
    animation: pulse 1.4s ease-in-out infinite;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    background-size: 200% 100%;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-size: .85rem;
    text-align: center;
}

.hidden {
    display: none !important;
}

.tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: .85rem;
}

.tips-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: .55rem .7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer {
    margin-top: 1.5rem;
    font-size: .65rem;
    opacity: .55;
    text-align: center;
    letter-spacing: .5px;
}

/* KP Badge */
.kp-badge {
    display: inline-block;
    margin-left: .5rem;
    padding: .15rem .5rem;
    border-radius: 6px;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: #444;
    color: #fff;
}

.kp-badge.level-low {
    background: #2d6a4f;
}

.kp-badge.level-mod {
    background: #3a7d44;
}

.kp-badge.level-high {
    background: #e09f3e;
}

.kp-badge.level-vhigh {
    background: #d00000;
}

.kp-badge.level-extreme {
    background: linear-gradient(45deg, #6a00f4, #ff006e);
}

/* Seasonal Guide */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.season-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 1.1rem 1.1rem;
    color: #fff;
    position: relative;
    transition: .3s;
}

.season-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px -8px rgba(0, 212, 170, 0.35);
}

.season-card h3 {
    margin: 0 0 .6rem;
    font-size: 1rem;
    color: #00d4aa;
    letter-spacing: .5px;
}

.season-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .75rem;
}

.season-card li {
    opacity: .9;
}

/* Factors */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.factor-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, .08), rgba(0, 212, 170, .02));
    border: 1px solid rgba(0, 212, 170, .2);
    padding: 1.3rem 1.3rem;
    border-radius: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px -6px rgba(0, 212, 170, 0.25);
    transition: .35s;
}

.factor-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 212, 170, .25), transparent 70%);
    opacity: 0;
    transition: .5s;
}

.factor-card:hover:before {
    opacity: 1;
}

.factor-card:hover {
    transform: translateY(-5px);
}

.factor-card h3 {
    margin: 0 0 .7rem;
    font-size: 1rem;
    color: #00d4aa;
}

.factor-card p {
    margin: 0;
    font-size: .8rem;
    line-height: 1.35;
    opacity: .85;
}

@keyframes pulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* WhatsApp button animation */
@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Quick Contact Button in Hero */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float::before {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .whatsapp-button {
        justify-content: center;
    }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.hero-contact {
    background: linear-gradient(135deg, rgba(15, 39, 64, 0.95), rgba(26, 51, 77, 0.9)),
        url('/images/aurora/auroras600.png') center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-contact .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-contact h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-contact .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.contact-info-section {
    padding: 80px 20px;
    background: rgba(15, 20, 25, 0.6);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(26, 51, 77, 0.8), rgba(15, 39, 64, 0.9));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: #00d4aa;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    word-break: break-word;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.contact-info-card a {
    color: #00d4aa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: #00e6b8;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.contact-info-card small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.contact-form-section {
    padding: 80px 20px;
    background: rgba(15, 20, 25, 0.4);
}

.contact-form-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-contact h1 {
        font-size: 2.5rem;
    }

    .hero-contact .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TOURS PAGE STYLES
   ========================================== */

.hero-tours {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.9), rgba(26, 35, 50, 0.9)),
        url('/images/aurora/auroras600.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.1), transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-tours .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tours h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-tours .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.tours-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0f1419 0%, #1a2332 50%, #2c3e50 100%);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.3);
    border-color: rgba(0, 212, 170, 0.5);
}

.tour-card.featured {
    border: 2px solid rgba(0, 212, 170, 0.4);
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00d4aa, #00a085);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

.tour-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tour-icon {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.tour-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-style: italic;
}

.tour-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.tour-details {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 3px solid #00d4aa;
}

.tour-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.detail-icon {
    font-size: 1.3rem;
    min-width: 30px;
}

.tour-price {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 180, 150, 0.1));
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #00d4aa;
    margin-bottom: 5px;
}

.price-per {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4aa;
}

.tour-book-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00d4aa, #00a085);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.tour-book-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5);
    background: linear-gradient(135deg, #00e6b8, #00b894);
}

.tour-book-btn:active {
    transform: translateY(0);
}

.tour-book-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    color: #00d4aa;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00d4aa;
    text-align: center;
}

/* Bokun Widget Styling */
.bokun-modal {
    max-width: 900px;
    padding: 30px;
}

.bokun-widget-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    min-height: 500px;
}

.bokun-widget-container .bokunWidget {
    width: 100%;
    min-height: 450px;
}

/* Make Bokun widget responsive */
@media (max-width: 768px) {
    .bokun-modal {
        max-width: 95%;
        padding: 20px;
    }
    
    .bokun-widget-container {
        padding: 15px;
    }
}