/* ========================================
   CSS VARIABLES & ROOT STYLES
======================================== */

:root {
    /* Color Palette */
    --primary-orange: #ff5619;
    --secondary-orange: #ff7a47;
    --accent-yellow: #ffd700;
    --accent-purple: #8b5cf6;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --overlay-dark: rgba(255, 86, 25, 0.7);
    --overlay-gradient: linear-gradient(135deg, rgba(255, 86, 25, 0.85) 0%, rgba(139, 92, 246, 0.75) 100%);
    --gradient-primary: linear-gradient(135deg, #ff5619 0%, #ff7a47 50%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #ff5619 0%, #8b5cf6 100%);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ========================================
   GLOBAL STYLES
======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* ========================================
   BUTTONS
======================================== */

.btn-primary,
.btn-secondary,
.btn-cta-nav,
.btn-package,
.btn-submit,
.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary,
.btn-cta-nav,
.btn-submit,
.btn-premium-cta {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-cta-nav:hover,
.btn-submit:hover,
.btn-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-package {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
}

.btn-package:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: rgba(255, 86, 25, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar.scrolled {
    background: rgba(255, 86, 25, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: var(--white);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-tagline {
    font-size: 12px;
    color: var(--accent-yellow);
    font-weight: var(--font-weight-semibold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    font-weight: var(--font-weight-medium);
    font-size: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition-smooth);
}

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

.btn-cta-nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ========================================
   HERO SLIDER
======================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.slide-headline {
    font-size: 56px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.slide-subheadline {
    font-size: 20px;
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.slide-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--white);
}

/* ========================================
   ANIMATIONS
======================================== */

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

/* Scroll Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: var(--transition-slow);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   SECTION COMMON STYLES
======================================== */

section {
    padding: var(--section-padding);
    overflow-x: hidden;
    width: 100%;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.about-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
}

.badge-text {
    font-weight: var(--font-weight-semibold);
    color: var(--primary-orange);
}

.about-content .section-label {
    margin-bottom: 10px;
}

.about-content .section-title {
    margin-bottom: 10px;
}

.about-text {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.feature-icon {
    font-size: 32px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* ========================================
   PACKAGES SECTION
======================================== */

.packages-section {
    background: var(--white);
}

.tour-packages-section {
    background: var(--off-white);
}

.tour-badge {
    background: var(--gradient-secondary);
}

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

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.package-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.package-slide.active {
    opacity: 1;
}

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

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

.package-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .package-image img:not(.package-slide) {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.package-content {
    padding: 30px;
}

.package-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.package-description {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-features {
    margin-bottom: 25px;
}

.package-features li {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    padding-left: 5px;
}

.package-section {
    margin-bottom: 20px;
}

.package-subtitle {
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: var(--font-weight-medium);
}

.price-amount {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-orange);
}

/* ========================================
   BENEFITS SECTION
======================================== */

.benefits-section {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: 20px;
    color: var(--white);
}

.benefit-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ========================================
   BOOKING SECTION
======================================== */

.booking-section {
    background: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info .section-title {
    margin-bottom: 20px;
}

.booking-description {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.booking-feature-text {
    font-size: 15px;
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
}

.booking-form-container {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-primary);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 86, 25, 0.1);
}

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

/* ========================================
   LOCATION SECTION
======================================== */

.location-section {
    background: var(--off-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info .section-title {
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    gap: 20px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.location-text h4 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.location-text p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.location-text a {
    color: var(--primary-orange);
    font-weight: var(--font-weight-semibold);
}

.location-text a:hover {
    color: var(--secondary-orange);
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   PREMIUM CTA SECTION
======================================== */

.premium-cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2121&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.premium-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
}

.premium-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.premium-cta-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.premium-cta-text {
    font-size: 20px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-premium-cta {
    padding: 18px 40px;
    font-size: 18px;
    background: var(--gradient-primary);
}

.btn-premium-cta:hover {
    background: var(--gradient-secondary);
    color: var(--white);
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--white);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    display: block;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact strong {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.footer-contact a {
    color: var(--accent-yellow);
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   FLOATING BUTTONS
======================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.floating-whatsapp {
    background: #25D366;
    color: var(--white);
}

.floating-maps {
    background: #4285F4;
    color: var(--white);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .slide-headline {
        font-size: 44px;
    }
    
    .slide-subheadline {
        font-size: 18px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .booking-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 10001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        z-index: 10000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 10px 0;
    }
    
    .btn-cta-nav {
        width: 100%;
        justify-content: center;
    }
    
    .slide-headline {
        font-size: 32px;
    }
    
    .slide-subheadline {
        font-size: 16px;
    }
    
    .slide-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 90%;
        max-width: 300px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .location-map {
        height: 300px;
    }
    
    .premium-cta-title {
        font-size: 32px;
    }
    
    .premium-cta-text {
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-headline {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .package-card {
        margin: 0 10px;
    }
}