/* ============================================
   GANGA D RESORT - MAIN STYLESHEET
   Ocean Blue Theme | SEO Optimized | Responsive
   ============================================ */

/* CSS Variables - Ocean Theme */
:root {
    --ocean-primary: #0077b6;
    --ocean-primary-dark: #023e8a;
    --ocean-primary-light: #48cae4;
    --ocean-secondary: #00b4d8;
    --ocean-accent: #90e0ef;
    --ocean-gradient: linear-gradient(135deg, #0077b6, #00b4d8, #48cae4);
    --ocean-gradient-dark: linear-gradient(135deg, #023e8a, #0077b6);
    
    --text-dark: #1a2a3a;
    --text-light: #4a627a;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 50px rgba(0, 119, 182, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: var(--transition);
    line-height: 1.6;
}

body.loaded {
    opacity: 1;
}

/* Dark Mode */
body.dark-mode {
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    background-color: var(--bg-dark);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ocean-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 20px;
    animation: pulse 1.5s ease infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--ocean-primary-dark);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-contact a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact a:hover {
    color: var(--ocean-accent);
    transform: translateY(-1px);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.top-bar-social a {
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--ocean-accent);
    color: var(--ocean-primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

body.dark-mode .navbar.scrolled {
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--ocean-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: white;
    line-height: 1;
    transition: var(--transition);
}

.logo-tag {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ocean-primary-light);
    text-transform: uppercase;
}

.navbar.scrolled .logo-name {
    color: var(--text-dark);
}

body.dark-mode .navbar.scrolled .logo-name {
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

body.dark-mode .navbar.scrolled .nav-link {
    color: var(--text-white);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ocean-primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-primary-light);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-book-nav {
    background: var(--ocean-gradient);
    color: white !important;
    padding: 10px 28px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 600;
    border: none;
}

.btn-book-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--ocean-gradient-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    cursor: pointer;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .theme-toggle {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

body.dark-mode .navbar.scrolled .theme-toggle {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

body.dark-mode .navbar.scrolled .hamburger span {
    background: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0, 119, 182, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 68px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 42px;
    background: var(--ocean-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 14px 42px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--ocean-primary);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 28px;
    background: var(--ocean-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--ocean-primary-light);
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
}

.scroll-indicator i {
    font-size: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--ocean-primary);
}

.swiper-pagination-bullet-active {
    background: var(--ocean-primary);
}

/* ============================================
   BOOKING ENGINE BAR
   ============================================ */
.booking-engine-bar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .booking-engine-bar {
    background: var(--bg-dark);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.booking-engine-content {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.booking-field {
    flex: 1;
    min-width: 160px;
}

.booking-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-field label i {
    margin-right: 6px;
    color: var(--ocean-primary);
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    transition: var(--transition);
    cursor: pointer;
}

body.dark-mode .booking-field input,
body.dark-mode .booking-field select {
    background: var(--bg-light);
    border-color: #334155;
    color: var(--text-white);
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--ocean-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.btn-booking {
    background: var(--ocean-gradient);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    margin-bottom: 0;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--ocean-primary);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   LOCATION HIGHLIGHTS
   ============================================ */
.location-highlights {
    background: var(--bg-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.highlight-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-card i {
    font-size: 42px;
    color: var(--ocean-primary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms {
    background: var(--bg-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.room-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--ocean-gradient);
    color: white;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.room-badge.executive {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.room-badge.family {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    color: var(--ocean-primary-light);
}

.room-price span {
    font-size: 12px;
    font-weight: normal;
    color: white;
}

.room-availability {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: white;
}

.room-info {
    padding: 28px;
}

.room-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.room-rating {
    margin-bottom: 15px;
}

.room-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.room-rating span {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 8px;
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 14px;
}

.room-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 50px;
}

.room-features i {
    color: var(--ocean-primary);
    width: 18px;
    font-size: 12px;
}

.room-footer {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.btn-details {
    background: transparent;
    border: none;
    color: var(--ocean-primary);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.btn-details:hover {
    color: var(--ocean-primary-dark);
    transform: translateX(3px);
}

/* Rooms Summary */
.rooms-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 15px 28px;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-3px);
}

.summary-card i {
    font-size: 32px;
    color: var(--ocean-primary);
}

.summary-info {
    display: flex;
    flex-direction: column;
}

.summary-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.summary-text {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities {
    background: var(--bg-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
    padding: 35px 25px;
    transition: var(--transition);
    border-radius: var(--border-radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.amenity-icon i {
    font-size: 40px;
    color: var(--ocean-primary);
}

.amenity-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.amenity-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */
.experiences {
    background: var(--bg-white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.experience-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.experience-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-card:hover .experience-image img {
    transform: scale(1.08);
}

.experience-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.experience-tag {
    background: var(--ocean-gradient);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.experience-info {
    padding: 24px;
}

.experience-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.experience-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.experience-link {
    color: var(--ocean-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 14px;
}

.experience-link:hover {
    gap: 12px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    height: 280px;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    height: 580px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 182, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 40px;
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    background: var(--bg-white);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.distance-item {
    background: var(--bg-light);
    padding: 18px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition);
}

.distance-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.distance-item i {
    font-size: 24px;
    color: var(--ocean-primary);
    margin-bottom: 5px;
}

.distance-item span {
    font-size: 14px;
    color: var(--text-light);
}

.distance-item strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.location-map {
    position: relative;
}

#map {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--ocean-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.map-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.map-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 32px;
    color: var(--ocean-primary);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p,
.info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.5;
    font-size: 14px;
}

.info-card a:hover {
    color: var(--ocean-primary);
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ocean-primary);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--ocean-gradient);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--bg-white);
    font-size: 14px;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: var(--bg-light);
    border-color: #334155;
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    display: none;
    font-size: 14px;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--bg-white);
    padding: 80px 0;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 20px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ocean-primary);
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   FLOATING BUTTONS WITH WAVE EFFECT
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-whatsapp,
.float-call,
.float-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.float-call {
    background: linear-gradient(135deg, #0077b6, #023e8a);
}

.float-top {
    background: var(--ocean-gradient);
    color: white;
}

.wave-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: wavePulse 1.5s ease-out infinite;
    pointer-events: none;
}

@keyframes wavePulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-whatsapp:hover,
.float-call:hover,
.float-top:hover {
    transform: scale(1.1);
    width: auto;
    border-radius: 50px;
    padding: 0 22px;
}

.float-whatsapp:hover .wave-wave,
.float-call:hover .wave-wave {
    display: none;
}

.float-text {
    display: none;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
}

.float-whatsapp:hover .float-text,
.float-call:hover .float-text {
    display: inline;
}

.float-whatsapp i,
.float-call i,
.float-top i {
    font-size: 26px;
    z-index: 2;
}

.float-whatsapp:hover i,
.float-call:hover i {
    margin-right: 5px;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: var(--bg-white);
    max-width: 450px;
    width: 90%;
    padding: 45px 35px;
    border-radius: var(--border-radius-xl);
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: var(--shadow-lg);
}

body.dark-mode .exit-popup-content {
    background: var(--bg-dark);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.exit-popup-close:hover {
    color: var(--ocean-primary);
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: var(--ocean-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.exit-popup-icon i {
    font-size: 40px;
    color: white;
}

.exit-popup-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.exit-popup-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.exit-popup-offer {
    background: var(--ocean-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 18px;
}

.exit-popup-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exit-popup-content input {
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: var(--bg-white);
}

body.dark-mode .exit-popup-content input {
    background: var(--bg-light);
    border-color: #334155;
    color: white;
}

.exit-popup-content button {
    padding: 14px;
    background: var(--ocean-gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.exit-popup-content button:hover {
    transform: translateY(-2px);
}

.exit-popup-note {
    font-size: 11px;
    margin-top: 15px;
    color: #94a3b8;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a1927;
    color: white;
    padding: 60px 0 20px;
}

body.dark-mode .footer {
    background: #030712;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--ocean-primary-light);
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--ocean-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--ocean-primary-light);
    padding-left: 5px;
}

.newsletter-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-group input::placeholder {
    color: #94a3b8;
}

.newsletter-group button {
    padding: 12px 18px;
    background: var(--ocean-gradient);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.newsletter-group button:hover {
    transform: translateY(-2px);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 28px;
    color: #94a3b8;
    margin-top: 20px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    display: inline-block;
    background: rgba(72, 202, 228, 0.15);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--ocean-primary-light);
    width: fit-content;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 13px;
}

.footer-bottom i {
    color: #ef4444;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .distance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        gap: 20px;
    }
    
    body.dark-mode .nav-links {
        background: var(--bg-dark);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
    }
    
    body.dark-mode .nav-link {
        color: white !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .booking-engine-bar {
        display: none;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rooms-summary {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .summary-card {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .amenities-grid,
    .experiences-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-whatsapp,
    .float-call,
    .float-top {
        width: 48px;
        height: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 220px;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .newsletter-group {
        flex-direction: column;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .footer-badges {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .distance-grid {
        grid-template-columns: 1fr;
    }
    
    .room-features {
        gap: 8px;
    }
    
    .room-features li {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary,
    .btn-details {
        width: 100%;
        text-align: center;
    }
    
    .exit-popup-content {
        padding: 35px 25px;
    }
    
    .exit-popup-content h3 {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .navbar,
    .booking-engine-bar,
    .floating-buttons,
    .exit-popup,
    .footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .room-card,
    .amenity-item,
    .experience-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}