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

:root {
    --ocean-blue: #0077be;
    --sky-blue: #4fc3f7;
    --deep-blue: #003d5c;
    --ocean-green: #00bfa5;
    --mint-green: #1de9b6;
    --lime-green: #76ff03;
    --sun-yellow: #ffd600;
    --gold-yellow: #ffc107;
    --sand-yellow: #ffeb3b;
    --white: #ffffff;
    --cream: #fff9e6;
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.3px;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--ocean-blue), var(--ocean-green));
    border-radius: 10px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        var(--ocean-blue) 0%,
        var(--deep-blue) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.wave-loader {
    position: relative;
    width: 200px;
    height: 200px;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--sun-yellow);
    animation: wave-spin 2s linear infinite;
}

.wave:nth-child(2) {
    border-top-color: var(--ocean-green);
    animation-delay: -0.5s;
}

.wave:nth-child(3) {
    border-top-color: var(--sky-blue);
    animation-delay: -1s;
}

@keyframes wave-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 119, 190, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 119, 190, 0.15);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo {
    font-family: "Cinzel", serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--ocean-blue),
        var(--ocean-green),
        var(--sun-yellow)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--ocean-blue),
        var(--ocean-green),
        var(--sun-yellow)
    );
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--ocean-blue);
    transform: translateY(-2px);
}

.book-btn {
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    color: var(--text-dark);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: left 0.6s;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 214, 0, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.3s;
    border-radius: 3px;
}

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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s ease-in-out infinite;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 119, 190, 0.15),
        rgba(0, 191, 165, 0.1)
    );
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 30% 50%,
            rgba(255, 214, 0, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(0, 191, 165, 0.08) 0%,
            transparent 50%
        );
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    z-index: 10;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 214, 0, 0.9);
    border-color: var(--sun-yellow);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--sun-yellow);
    transform: scale(1.3);
    border-color: white;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 15s infinite;
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    color: var(--sun-yellow);
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    left: 80%;
    color: var(--ocean-green);
    animation-delay: -5s;
}

.float-element:nth-child(3) {
    top: 80%;
    left: 20%;
    color: var(--sky-blue);
    animation-delay: -10s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    padding: 2rem;
    max-width: 1000px;
}

.hero-content h1 {
    font-family: "Cinzel", serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content .highlight {
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease-out 0.3s backwards;
    opacity: 0.95;
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.5px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(255, 214, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 214, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 3px solid white;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: white;
    color: var(--ocean-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

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

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 2.5rem;
    color: white;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Styling */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ocean-green);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    font-family: "Raleway", sans-serif;
}

.section-tag::before,
.section-tag::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--ocean-green);
}

.section-tag::before {
    right: calc(100% + 15px);
}

.section-tag::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: "Cinzel", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title .gradient-text {
    background: linear-gradient(
        135deg,
        var(--ocean-blue),
        var(--ocean-green),
        var(--sun-yellow)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Check Availability Section */
.check-availability {
    background: linear-gradient(135deg, var(--ocean-green), var(--mint-green));
    padding: 2rem 5%;
    position: relative;
    margin-top: -60px;
    z-index: 100;
}

.availability-container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.2);
    position: relative;
}

.availability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-green), var(--mint-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 191, 165, 0.25);
}

.availability-icon i {
    font-size: 1.8rem;
    color: white;
}

.availability-title {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--ocean-green);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.availability-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.availability-form {
    width: 100%;
}

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

.form-field label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--ocean-green);
    margin-bottom: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-field label i {
    font-size: 0.9rem;
}

.form-field input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0f7fa;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    background: #f0f9ff;
    color: var(--text-dark);
    font-weight: 500;
}

.form-field input:focus {
    outline: none;
    border-color: var(--ocean-green);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 191, 165, 0.15);
}

.form-field input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-field-button {
    display: flex;
    align-items: end;
}

.check-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--ocean-green), var(--mint-green));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.check-btn i {
    font-size: 1rem;
}

.check-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 191, 165, 0.4);
    background: linear-gradient(135deg, var(--mint-green), var(--ocean-green));
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f7fa 50%, #fff9e6 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 119, 190, 0.2);
    transition: transform 0.5s ease;
}

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

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.4);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Accommodations Section */
.accommodations {
    background: white;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.room-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 119, 190, 0.9),
        rgba(0, 191, 165, 0.9)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.room-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 80px rgba(0, 119, 190, 0.25);
}

.room-image {
    height: 300px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-green));
    position: relative;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.2);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    color: var(--text-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    z-index: 2;
}

.room-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.room-card:hover .room-content {
    color: white;
}

.room-content h3 {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.5s ease;
    letter-spacing: 1.5px;
}

.room-card:hover .room-content h3 {
    color: white;
}

.room-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: color 0.5s ease;
}

.room-card:hover .room-content p {
    color: rgba(255, 255, 255, 0.9);
}

.room-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-tag {
    background: #f0f9ff;
    color: var(--ocean-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.room-card:hover .room-tag {
    background: white;
    color: var(--ocean-blue);
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
    transition: color 0.5s ease;
}

.room-card:hover .price {
    color: var(--sun-yellow);
}

.book-room-btn {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-green));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.room-card:hover .book-room-btn {
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Amenities Section */
.amenities {
    background: linear-gradient(135deg, #e0f7fa 0%, #f0f9ff 50%, #fff9e6 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 119, 190, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-green));
    transition: left 0.5s ease;
    z-index: 0;
}

.amenity-card:hover::before {
    left: 0;
}

.amenity-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 119, 190, 0.2);
}

.amenity-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        var(--ocean-blue),
        var(--ocean-green),
        var(--sun-yellow)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.amenity-card:hover .amenity-icon-wrapper {
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    transform: rotate(360deg) scale(1.1);
}

.amenity-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.amenity-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
    position: relative;
    z-index: 1;
}

.amenity-card:hover h3 {
    color: white;
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.5s ease;
    position: relative;
    z-index: 1;
}

.amenity-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 119, 190, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 119, 190, 0.9),
        rgba(0, 191, 165, 0.9)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f7fa 50%, #fff9e6 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.1);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 119, 190, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.15);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0f7fa;
    border-radius: 15px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-green));
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-blue), var(--ocean-blue));
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: "Cinzel", serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--sun-yellow);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sun-yellow), var(--gold-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.5);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        background: white;
        flex-direction: column;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .slider-controls {
        padding: 0 2%;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .check-availability {
        margin-top: -50px;
        padding: 1.5rem 5%;
    }

    .availability-container {
        padding: 1.5rem;
    }

    .availability-title {
        font-size: 1.5rem;
    }

    .availability-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 35px;
    }

    .logo {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 80px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .check-availability {
        margin-top: -40px;
        padding: 1.5rem 5%;
    }

    .availability-container {
        padding: 1.2rem;
    }

    .availability-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .availability-icon i {
        font-size: 1.5rem;
    }

    .availability-title {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .availability-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .form-field label {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .form-field input {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .check-btn {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
