/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #faf7f2;
    color: #2c2418;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 100 !important;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    --primary: #800000;
    --secondary: #FF6A24;
    --accent: #FFC700;
    --primary-dark: #660000;
    --secondary-dark: #e55a1a;
    --accent-dark: #e5b300;
    --white: #ffffff;
    --shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
    --shadow-gold: 0 0 20px rgba(255, 106, 36, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn { 
    display: inline-block; 
    padding: 12px 32px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    margin: 0 8px;
}

.btn-primary { 
    background: var(--secondary); 
    color: var(--primary); 
    border: none;
    box-shadow: 0 4px 15px rgba(255, 106, 36, 0.3);
    animation: goldPulse 2s infinite;
}

.btn-primary:hover { 
    background: var(--secondary-dark); 
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 106, 36, 0.4);
}

.btn-outline { 
    border: 2px solid white; 
    color: white; 
    background: transparent;
}

.btn-outline:hover { 
    background: white; 
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.btn-large { 
    padding: 16px 48px; 
    font-size: 1.1rem; 
}

.btn-link { 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 700; 
    border-bottom: 2px solid var(--secondary); 
    padding-bottom: 4px;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--secondary);
    letter-spacing: 1px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 106, 36, 0.6);
    transform: translateY(-3px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    padding: 0;
}

.header.scrolled {
    top: 0;
    background: rgba(128, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    font-size: 0.75rem;
    padding: 8px 0;
    position: relative;
    z-index: 1002;
    transition: all 0.3s ease;
}

.header.scrolled .top-bar {
    display: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    font-size: 0.7rem;
}

.top-bar-links {
    display: flex;
    gap: 15px;
}

.top-bar-links a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.top-bar-links a:hover {
    color: white;
    transform: translateY(-1px);
}

/* Main Navigation Container - Below Top Bar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 15px 24px;
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(255, 106, 36, 1);
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

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

.logo-text .main {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.1;
    color: white;
    letter-spacing: 0.5px;
}

.logo-text .sub {
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
}

/* Navigation Menu */
.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i,
.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(15px);
    min-width: 220px;
    margin-top: 23px;
    padding: 35px 0;
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 106, 36, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    color: #d4c5b5;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.dropdown-menu li a i {
    width: 20px;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(255, 106, 36, 0.1);
    color: var(--secondary);
    transform: translateX(5px);
}

/* Mega Menu - Full Width Background */
.nav-item.mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: flex-end;
    max-width: 100vw;
    background: rgba(128, 0, 0, 0.88);
    backdrop-filter: blur(18px);
    padding: 35px;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 106, 36, 0.2);
    border-bottom: 1px solid rgba(255, 106, 36, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.nav-item.mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-column h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 100;
}

.mega-menu-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
}

.mega-menu-column ul li {
    margin-bottom: 12px;
}

.mega-menu-column ul li a {
    color: #d4c5b5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-column ul li a i {
    font-size: 0.7rem;
    transition: 0.3s;
}

.mega-menu-column ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.mega-featured {
    background: linear-gradient(135deg, rgba(255, 106, 36, 0.1), rgba(229, 90, 26, 0.05));
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.mega-featured h5 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 100;
}

.mega-featured p {
    font-size: 0.75rem;
    margin-bottom: 10px;
    color: #d4c5b5;
}

/* Special Buttons */
.booking-nav-link {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary) !important;
    padding: 10px 24px !important;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 106, 36, 0.3);
}

.booking-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 36, 0.4);
}

.booking-nav-link::after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-actions .action-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Search Bar */
.search-bar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 16px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-bar input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0d6c8;
    border-radius: 12px;
    font-size: 0.9rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Social Icons Header */
.social-icons-header {
    display: flex;
    gap: 12px;
}

.social-icons-header a {
    color: white;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons-header a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 120px;
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    transition: 0.3s;
}

.lang-dropdown a:hover {
    background: var(--secondary);
    color: white;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active { 
    opacity: 1; 
    z-index: 1; 
    animation: slowZoom 12s ease-out forwards;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.slide-content {
    max-width: 800px;
    padding: 2rem 2.5rem;
    background: rgba(128, 0, 0, 1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    color: white;
    animation: fadeUp 0.8s ease forwards;
    border: 1px solid rgba(255, 106, 36, 0.3);
}

.slide-content h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.slide-content p { 
    font-size: 1.3rem; 
    margin-bottom: 2rem; 
}

.slider-dots { 
    position: absolute; 
    bottom: 30px; 
    left: 0; 
    right: 0; 
    display: flex; 
    justify-content: center; 
    gap: 14px; 
    z-index: 10; 
}

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

.slider-dots .dot.active { 
    background: var(--secondary); 
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
/* WhatsApp Button - Left Side */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 106, 36, 0.35);
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    background: var(--secondary-dark);
}

.tooltip-text-wa {
    position: absolute;
    left: 55px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.floating-whatsapp a:hover .tooltip-text-wa {
    opacity: 1;
    transform: translateX(5px);
}

/* Back to Top Button - Right Side */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 6px 20px rgba(255, 106, 36, 0.35);
    font-size: 18px;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--secondary-dark);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section { 
    padding: 90px 0; 
}

.section-tag { 
    color: var(--secondary); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.75rem;
    font-weight: 600;
}

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

.section-header h2 { 
    font-size: 2.6rem; 
    color: var(--primary);
    position: relative;
    display: inline-block;
    font-weight: 100;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-top: 10px;
    font-size: 1rem;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero { 
    height: 45vh; 
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-align: center;
    position: relative;
    animation: pageHeroZoom 8s ease-out forwards;
}

@keyframes pageHeroZoom {
    0% { background-size: 110%; }
    100% { background-size: 100%; }
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.5);
}

.page-hero .container { 
    position: relative; 
    z-index: 2; 
}

.page-hero h1 { 
    font-size: 3rem; 
    font-weight: 100;
}

.hero-breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: var(--secondary);
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000;
    color: #d4c5b5;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.footer::after {
    content: '✦';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

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

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #b8a99a;
    text-align: center;
    max-width: 320px;
    margin: 0 auto 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4c5b5;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.footer-social a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d4c5b5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer-contact-item a {
    color: #d4c5b5;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-newsletter {
    margin-top: 10px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-form-footer {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.newsletter-form-footer input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s;
}

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

.newsletter-form-footer input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form-footer button {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form-footer button i {
    color: var(--primary);
    font-size: 1rem;
}

.newsletter-form-footer button:hover {
    transform: scale(1.05);
    background: var(--secondary-dark);
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods h4 {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons span {
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    font-size: 0.75rem;
    color: #d4c5b5;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.payment-icons span i {
    font-size: 0.75rem;
}

.payment-icons span:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.copyright {
    font-size: 0.8rem;
    color: #8a7a6a;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8a7a6a;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { 
    opacity: 0; 
    transform: translateY(45px); 
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-up.appear { 
    opacity: 1; 
    transform: translateY(0); 
}

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

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 36, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255, 106, 36, 0); }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .nav-container { padding: 15px 20px; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .header {
        top: 0;
    }
    
    .top-bar {
        display: none;
    }
    
    .social-icons-header {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile Menu - Covers 75% of screen */
    .navbar {
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100vh;
        background: rgba(128, 0, 0, 0.98);
        backdrop-filter: blur(18px);
        z-index: 999;
        padding: 80px 10px 25px 5px;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.35);
    }
    
    .navbar.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
    }
    
    .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        text-align: left;
        font-size: 0.95rem;
        padding: 5px !important;
    }
    
    .nav-link i {
        transform: rotate(-90deg);
    }
    
    .nav-item.active .nav-link i {
        transform: rotate(0deg);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        box-shadow: none;
        padding: 5px;
        margin-top: 5px;
        border-radius: 10px;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 5px !important;
        font-size: 0.85rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    /* Mega Menu on Mobile */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 10px 5px;
        margin-top: 10px;
        background: rgba(102, 0, 0, 0.98);
        width: 100%;
        border-radius: 0px;
    }
    
    .nav-item.mega.active .mega-menu {
        display: block;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mega-menu-column h4 {
        text-align: left;
        padding-left: 5px;
        margin-bottom: 10px;
    }
    
    .mega-menu-column ul li a {
        padding: 5px !important;
        justify-content: flex-start;
        text-align: left;
        font-size: 0.85rem;
    }
    
    .mega-featured {
        display: none;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .booking-nav-link {
        margin-top: 20px;
        text-align: center;
        justify-content: center;
    }
    
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 44px;
        height: 44px;
    }
    
    .logo-text .main {
        font-size: 1rem;
    }
    
    .logo-text .sub {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }
    
    .footer-logo-img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 576px) {
    .logo-text .main {
        font-size: 1rem;
    }
    
    .logo-text .sub {
        font-size: 0.55rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .header-actions .action-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .navbar {
        width: 75%;
    }
    
    .floating-whatsapp a,
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .tooltip-text-wa {
        font-size: 10px;
        left: 48px;
    }
}

/* Utility Classes */
img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.text-center { 
    text-align: center; 
}