<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body{
    scroll-behavior: smooth;
}

/* CONTACT FORM */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center left, rgba(20, 184, 166, 0.1), transparent 70%);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-container {
    display: flex;
    width: 100%;
    gap: 50px;
}

.contact-info {
    flex: 1;
    padding-right: 50px;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--light);
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light);
}

.contact-info-detail {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
}

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

.form-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.form-button:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
    background-color: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent 70%);
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.thank-you-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 36, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thank-you-message.active {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you-message.active .thank-you-content {
    transform: translateY(0);
}

.thank-you-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.thank-you-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.thank-you-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.thank-you-close {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thank-you-close:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 15px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.footer-link a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-newsletter {
    margin-bottom: 25px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    height: 50px;
}

.footer-input {
    flex: 1;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--light);
    font-size: 0.9rem;
}

.footer-input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-button {
    width: 50px;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-button:hover {
    background-color: var(--accent);
    color: var(--light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .experience-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hotel-card {
        flex-direction: column;
    }
    
    .hotel-image,
    .hotel-content {
        width: 100%;
    }
    
    .contact-form-container {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .experience-blocks {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}/* GLOBAL STYLES */
:root {
    --primary: #14b8a6;
    --dark: #1c1c24;
    --light: #f8fafc;
    --accent: #6366f1;
    --secondary: #4f46e5;
    --card-bg: rgba(28, 28, 36, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-button {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: var(--primary);
}

.button-primary {
    background-color: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, var(--secondary), var(--dark));
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(28, 28, 36, 0.4), rgba(28, 28, 36, 0.9));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

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

/* SVG Animation for hero section */
.hero-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
}

.shape-1 {
    top: 20%;
    left: 10%;
    animation: floatAnimation 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    animation: floatAnimation 12s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    background-color: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
}

.search-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.search-button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.search-button:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FLOATING IMAGES */
.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-image {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
}

.floating-image:nth-child(1) {
    width: 300px;
    height: 200px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.floating-image:nth-child(2) {
    width: 250px;
    height: 350px;
    top: 30%;
    right: 5%;
    animation-delay: 2s;
    transform: rotate(5deg);
}

.floating-image:nth-child(3) {
    width: 200px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(3deg);
}

.floating-image:nth-child(4) {
    width: 280px;
    height: 180px;
    bottom: 25%;
    right: 15%;
    animation-delay: 6s;
    transform: rotate(-3deg);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

/* FEATURED DESTINATIONS */
.featured {
    margin: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.featured-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.featured-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--light);
}

.featured-location {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.featured-location i {
    margin-right: 8px;
}

.featured-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.featured-info {
    display: flex;
    gap: 20px;
}

.featured-info-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-info-item i {
    margin-right: 8px;
    color: var(--primary);
}

/* GLOBAL STYLES */
:root {
    --primary: #14b8a6;
    --dark: #1c1c24;
    --light: #f8fafc;
    --accent: #6366f1;
    --secondary: #4f46e5;
    --card-bg: rgba(28, 28, 36, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-button {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: var(--primary);
}

.button-primary {
    background-color: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, var(--secondary), var(--dark));
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(28, 28, 36, 0.4), rgba(28, 28, 36, 0.9));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

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

/* SVG Animation for hero section */
.hero-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
}

.shape-1 {
    top: 20%;
    left: 10%;
    animation: floatAnimation 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    animation: floatAnimation 12s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    background-color: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
}

.search-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.search-button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.search-button:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FLOATING IMAGES */
.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-image {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
}

.floating-image:nth-child(1) {
    width: 300px;
    height: 200px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.floating-image:nth-child(2) {
    width: 250px;
    height: 350px;
    top: 30%;
    right: 5%;
    animation-delay: 2s;
    transform: rotate(5deg);
}

.floating-image:nth-child(3) {
    width: 200px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(3deg);
}

.floating-image:nth-child(4) {
    width: 280px;
    height: 180px;
    bottom: 25%;
    right: 15%;
    animation-delay: 6s;
    transform: rotate(-3deg);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

/* FEATURED DESTINATIONS */
.featured {
    margin: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.featured-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.featured-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--light);
}

.featured-location {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.featured-location i {
    margin-right: 8px;
}

.featured-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.featured-info {
    display: flex;
    gap: 20px;
}

.featured-info-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-info-item i {
    margin-right: 8px;
    color: var(--primary);
}

/* EXPERIENCE SECTION */
.experience {
    padding: 100px 0;
    background-color: rgba(20, 184, 166, 0.05);
    position: relative;
    overflow: hidden;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.2), transparent 70%),
                 radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.2), transparent 70%);
    z-index: 0;
}

.experience-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.experience-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.experience-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.experience-block {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.experience-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(20, 184, 166, 0.3);
}

.experience-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background-color: rgba(20, 184, 166, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.experience-block-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
}

.experience-block-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.experience-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.experience-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.experience-link:hover {
    color: var(--accent);
}

.experience-link:hover i {
    transform: translateX(5px);
}

/* HOTEL LISTINGS */
.hotels {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hotels-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
}

.hotels-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.hotels-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotels-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hotel-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 184, 166, 0.3);
}

.hotel-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.hotel-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.hotel-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light);
}

.hotel-location {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hotel-location i {
    margin-right: 8px;
}

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

.hotel-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hotel-feature {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hotel-feature i {
    color: var(--primary);
    margin-right: 8px;
}

.hotel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.hotel-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.hotel-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.hotel-button {
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hotel-button:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.view-all-button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background-color: rgba(20, 184, 166, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.2), transparent 70%);
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 184, 166, 0.3);
}

.testimonial-quote {
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(20, 184, 166, 0.1);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light);
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--primary);
}

.testimonial-rating {
    display: flex;
    margin-top: 10px;
}

.testimonial-rating i {
    color: #FFD700;
    margin-right: 5px;
}

/* CONTACT FORM */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center left, rgba(20, 184, 166, 0.1), transparent 70%);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-container {
    display: flex;
    width: 100%;
    gap: 50px;
}

.contact-info {
    flex: 1;
    padding-right: 50px;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--light);
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light);
}

.contact-info-detail {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
}

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


/* FLOATING IMAGES */
.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-image {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
}

.floating-image:nth-child(1) {
    width: 300px;
    height: 200px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.floating-image:nth-child(2) {
    width: 250px;
    height: 350px;
    top: 30%;
    right: 5%;
    animation-delay: 2s;
    transform: rotate(5deg);
}

.floating-image:nth-child(3) {
    width: 200px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(3deg);
}

.floating-image:nth-child(4) {
    width: 280px;
    height: 180px;
    bottom: 25%;
    right: 15%;
    animation-delay: 6s;
    transform: rotate(-3deg);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

/* SECTION TITLE STYLES (shared across sections) */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

/* ABOUT SECTION */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
}

.about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text {
    flex: 1;
}

.about-content-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light);
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* MISSION SECTION */
.mission {
    padding: 100px 0;
    background-color: rgba(20, 184, 166, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.2), transparent 70%);
    z-index: 0;
}

.mission-container {
    position: relative;
    z-index: 1;
}

.mission-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.mission-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1.3;
    padding-right: 30px;
}

.mission-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--primary);
}

.mission-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* VALUES SECTION */
.values {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.values-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 184, 166, 0.1), transparent 70%);
    z-index: 0;
}

.values-container {
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.values-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.values-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(20, 184, 166, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background-color: rgba(20, 184, 166, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
}

.value-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* EXPERIENCE SECTION (Why Choose Us) */
.experience {
    padding: 100px 0;
    background-color: rgba(20, 184, 166, 0.05);
    position: relative;
    overflow: hidden;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.2), transparent 70%),
                 radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.2), transparent 70%);
    z-index: 0;
}

.experience-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}

.experience-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.experience-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.experience-block {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.experience-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(20, 184, 166, 0.3);
}

.experience-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background-color: rgba(20, 184, 166, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.experience-block-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
}

.experience-block-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.experience-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.experience-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.experience-link:hover {
    color: var(--accent);
}

.experience-link:hover i {
    transform: translateX(5px);
}

/* HOTEL LISTINGS */
.hotels {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hotels-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
}

.hotels-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.hotels-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotels-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hotel-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 184, 166, 0.3);
}

.hotel-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.hotel-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.hotel-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light);
}

.hotel-location {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hotel-location i {
    margin-right: 8px;
}

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

.hero-content a{
    color: white;
    font-size: 24px;
}</pre></body></html>