/* Island Style - Clean Modern Design with Dark/Light Theme */
/* Version 2.1 - Updated WhatsApp Buttons with Glassmorphism */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fixed Video Background */
.fixed-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    transition: filter 0.1s ease-out;
}

.fixed-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.fixed-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -9;
    transition: background 0.3s ease;
}

/* Light theme video overlay */
.light-theme .fixed-video-overlay {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
}

/* Dark theme video overlay */
.dark-theme .fixed-video-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Light Theme Variables (Default) */
.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1c18;
    --text-secondary: #6b6b6b;
    --text-on-dark: #ffffff;
    --accent-color: #c9a961;
    --accent-hover: #b89550;
    --card-bg: #ffffff;
    --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    --border-color: #e5e5e5;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

/* Dark Theme Variables */
.dark-theme {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-on-dark: #ffffff;
    --accent-color: #c9a961;
    --accent-hover: #b89550;
    --card-bg: #1a1a1a;
    --card-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
    --border-color: #333333;
    --nav-bg: rgba(10, 10, 10, 0.95);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .hero-tagline, .section-title {
    font-family: 'Montserrat', sans-serif;
}

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

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

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.light-theme .moon-icon {
    display: none;
}

.dark-theme .sun-icon {
    display: none;
}

/* Page Structure */
.page-wrapper {
    padding: 0;
    min-height: 100vh;
}

.page-container {
    max-width: 100%;
    margin: 0;
    background: transparent;
    position: relative;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Top Navigation */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.top-nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.light-theme .top-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo .logo-img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.top-nav.scrolled .nav-logo .logo-img {
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.light-theme .top-nav.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.light-theme .nav-link:hover {
    color: var(--accent-color);
    text-shadow: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* Hero Section */
.hero-island {
    position: relative;
    margin-top: 0;
}

.hero-image-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    font-style: normal;
    text-transform: uppercase;
}

.hero-logo-text {
    margin-bottom: 2.5rem;
}

.hero-logo-large {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.6));
}

.hero-cta-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    padding: 1.2rem 4rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    transition: all 0.4s ease;
}

.hero-cta-btn:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator-bottom {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    text-align: center;
    color: white;
    font-size: 0.85rem;
    z-index: 2;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 0;
    animation: bounce 2s infinite;
    color: white;
}

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

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* About Intro Section */
.about-intro-section {
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .about-intro-section {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.destination-card {
    background-color: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-end;
}

.destination-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-bg-img {
    transform: scale(1.05);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.3s ease;
    z-index: 2;
}

.destination-content {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    width: 100%;
}

.destination-card h3 {
    padding: 0;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.destination-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-card:hover h3,
.destination-card:hover .destination-subtitle {
    transform: translateY(0);
}

.explore-link {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.destination-card:hover .explore-link {
    opacity: 1;
    transform: translateY(0);
}

/* Remove old styles */
.dest-image {
    display: none;
}

/* Parallax Text Section */
.parallax-text-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(40, 40, 40, 0.95) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    color: white;
    border-top: 1px solid rgba(199, 151, 95, 0.2);
    border-bottom: 1px solid rgba(199, 151, 95, 0.2);
}

.light-theme .parallax-text-section {
    background: linear-gradient(135deg, 
        rgba(245, 245, 245, 0.98) 0%, 
        rgba(255, 255, 255, 0.98) 50%, 
        rgba(245, 245, 245, 0.98) 100%);
    color: #1a1a1a;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(199, 151, 95, 0.1) 0%, 
        transparent 50%, 
        rgba(199, 151, 95, 0.1) 100%);
}

.parallax-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 3rem;
}

.parallax-content-center h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.light-theme .parallax-content-center h2 {
    color: #1a1a1a;
}

.parallax-content-center p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.light-theme .parallax-content-center p {
    color: rgba(26, 26, 26, 0.8);
}

/* Concierge Section */
.concierge-section {
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .concierge-section {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-clean {
    background: var(--card-bg);
    padding: 0;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.service-card-clean:hover .service-image-bg {
    transform: scale(1.1);
}

.service-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.3s ease;
}

.service-card-clean:hover .service-image-bg::before {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.9) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-card-clean:hover .service-content {
    opacity: 1;
}

.service-card-clean h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.service-card-clean p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* Events Section */
.events-section {
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 0;
}

.dark-theme .events-section {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.events-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.events-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.event-card {
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

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

.event-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.btn-event-whatsapp {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    box-shadow: none;
}

.btn-event-whatsapp:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Why Us Section */
.why-us-content {
    margin-bottom: 3rem;
}

.why-us-text-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-us-text-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-us-text-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.stat-card-clean {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-card-clean:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.stat-card-clean h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-card-clean p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Section */
.contact-section {
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme .contact-section {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form-layout {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-form-clean {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-row input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: none;
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-full:hover {
    background: var(--accent-color);
    color: white;
}

.whatsapp-cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Button */
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
}

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

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

.btn-whatsapp-large:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 6rem 4rem 2rem;
    border-top: 1px solid var(--border-color);
}

.dark-theme .footer {
    background: var(--bg-primary);
}

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

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.footer-column a,
.footer-column p {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-social-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Elegant Multi-Step Form Modal */
.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.form-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.form-modal-container {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%,
        rgba(40, 40, 40, 0.95) 50%,
        rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(199, 151, 95, 0.3);
    border-radius: 32px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    padding: 3rem;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.6),
        inset 0 0 100px rgba(199, 151, 95, 0.05),
        0 0 80px rgba(199, 151, 95, 0.15);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s ease;
    z-index: 10001;
}

/* Dark theme version */
.dark-theme .form-modal-container {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%,
        rgba(40, 40, 40, 0.95) 50%,
        rgba(26, 26, 26, 0.95) 100%);
    border: 1px solid rgba(199, 151, 95, 0.3);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.7),
        inset 0 0 100px rgba(199, 151, 95, 0.05),
        0 0 80px rgba(199, 151, 95, 0.2);
}

/* Light theme version */
.light-theme .form-modal-container {
    background: linear-gradient(135deg, 
        rgba(250, 250, 250, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(250, 250, 250, 0.98) 100%);
    border: 2px solid rgba(199, 151, 95, 0.5);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 100px rgba(199, 151, 95, 0.08),
        0 0 60px rgba(199, 151, 95, 0.3);
}

.form-modal.active .form-modal-container {
    transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Form Modal - Clean & Elegant */
.form-modal-container {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(199, 151, 95, 0.3) transparent;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.form-modal-container::-webkit-scrollbar {
    width: 6px;
}

.form-modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.form-modal-container::-webkit-scrollbar-thumb {
    background: rgba(199, 151, 95, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.form-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(199, 151, 95, 0.5);
}

/* Dark theme scrollbar */
.dark-theme .form-modal-container::-webkit-scrollbar-thumb {
    background: rgba(199, 151, 95, 0.4);
}

.dark-theme .form-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(199, 151, 95, 0.6);
}

/* Light theme scrollbar */
.light-theme .form-modal-container::-webkit-scrollbar-thumb {
    background: rgba(199, 151, 95, 0.35);
}

.light-theme .form-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(199, 151, 95, 0.55);
}

.form-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-close-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(199, 151, 95, 0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-shadow: none;
}

.dark-theme .form-title {
    color: #ffffff;
}

.light-theme .form-title {
    color: #1a1a1a;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: none;
}

.dark-theme .form-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.light-theme .form-subtitle {
    color: rgba(26, 26, 26, 0.65);
}

.form-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(199, 151, 95, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(199, 151, 95, 0.3);
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #d4a574);
    border-radius: 10px;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(199, 151, 95, 0.6);
}

.form-step-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dark-theme .step-number {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(199, 151, 95, 0.4);
    color: rgba(255, 255, 255, 0.5);
}

.light-theme .step-number {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(199, 151, 95, 0.5);
    color: rgba(26, 26, 26, 0.5);
}

.step-number.active {
    background: linear-gradient(135deg, var(--accent-color), #d4a574);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(199, 151, 95, 0.5);
    transform: scale(1.1);
}

.step-number.completed {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.luxury-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: none;
}

.dark-theme .step-title {
    color: #ffffff;
}

.light-theme .step-title {
    color: #1a1a1a;
}

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

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.dark-theme .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.light-theme .form-group label {
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.dark-theme .form-group input,
.dark-theme .form-group select,
.dark-theme .form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(199, 151, 95, 0.3);
    color: #ffffff;
}

.light-theme .form-group input,
.light-theme .form-group select,
.light-theme .form-group textarea {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(199, 151, 95, 0.3);
    color: #1a1a1a;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.dark-theme .form-group input::placeholder,
.dark-theme .form-group select::placeholder,
.dark-theme .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.light-theme .form-group input::placeholder,
.light-theme .form-group select::placeholder,
.light-theme .form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(199, 151, 95, 0.2);
}

.dark-theme .form-group input:focus,
.dark-theme .form-group select:focus,
.dark-theme .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.4);
}

.light-theme .form-group input:focus,
.light-theme .form-group select:focus,
.light-theme .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.7);
}

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

/* Date Input Calendar Icon Fix */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.dark-theme .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.light-theme .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0);
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border: 1.5px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
}

.dark-theme .radio-label {
    background: transparent;
    border: 1.5px solid rgba(199, 151, 95, 0.25);
}

.light-theme .radio-label {
    background: transparent;
    border: 1.5px solid rgba(199, 151, 95, 0.25);
}

.radio-label:hover {
    border-color: var(--accent-color);
    background: rgba(199, 151, 95, 0.08);
    transform: translateY(-2px);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--accent-color);
    font-weight: 600;
}

.radio-label input[type="radio"]:checked ~ span,
.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: rgba(199, 151, 95, 0.12);
    box-shadow: 0 0 15px rgba(199, 151, 95, 0.15);
}

.radio-label span {
    color: var(--text-primary);
    font-weight: 500;
}

.dark-theme .radio-label span {
    color: rgba(255, 255, 255, 0.9);
}

.light-theme .radio-label span {
    color: #1a1a1a;
}

.villa-details,
.transport-details,
.dining-details,
.tickets-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    animation: fadeSlideIn 0.4s ease;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.btn-form-nav,
.btn-form-submit {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    backdrop-filter: blur(10px);
}

.btn-prev {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.dark-theme .btn-prev {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(199, 151, 95, 0.3);
    color: #ffffff;
}

.light-theme .btn-prev {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(199, 151, 95, 0.3);
    color: #1a1a1a;
}

.btn-prev:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(199, 151, 95, 0.4);
}

.btn-next {
    background: linear-gradient(135deg, var(--accent-color), #d4a574);
    color: white;
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(199, 151, 95, 0.3);
}

.btn-next:hover {
    background: linear-gradient(135deg, #d4a574, var(--accent-color));
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(199, 151, 95, 0.5);
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--accent-color), #d4a574);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(201, 169, 97, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 
        0 6px 20px rgba(201, 169, 97, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.btn-form-submit:hover {
    background: linear-gradient(135deg, #d4a574, var(--accent-color));
    transform: scale(1.02);
    box-shadow: 
        0 8px 30px rgba(201, 169, 97, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-color: rgba(201, 169, 97, 0.8);
}


/* Destinations Carousel */
.destinations-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 3rem;
}

.destinations-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.destinations-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.destinations-carousel .destination-card {
    min-width: 350px;
    flex: 0 0 350px;
    margin: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.dark-theme .carousel-nav {
    background: rgba(30, 30, 30, 0.9);
    color: white;
}

.dark-theme .carousel-nav:hover {
    background: #2a2a2a;
}

@media (max-width: 768px) {
    .destinations-carousel .destination-card {
        min-width: 280px;
        flex: 0 0 280px;
        height: 400px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .destinations-carousel-wrapper {
        padding: 0 1rem;
    }
    
    .carousel-nav.prev {
        left: -10px;
    }
    
    .carousel-nav.next {
        right: -10px;
    }
}

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

@media (max-width: 768px) {
    .hero-logo-large {
        max-width: 300px;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .content-wrapper {
        padding: 0 1.5rem;
    }
    
    .top-nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destinations-grid,
    .services-grid-clean,
    .stats-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .events-layout {
        grid-template-columns: 1fr;
    }
    
    .events-cards-right {
        grid-template-columns: 1fr;
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
    }
    
    /* Form Modal Responsive */
    .form-modal-container {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-close-btn {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-form-nav,
    .btn-form-submit {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .parallax-content-center h2 {
        font-size: 2rem;
    }
    
    .theme-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}
