/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.01) 10px,
            rgba(255, 255, 255, 0.01) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(255, 255, 255, 0.008) 15px,
            rgba(255, 255, 255, 0.008) 30px
        );
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Vintage Ornamental Pattern Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Corner Ornaments */
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='ornament1' x='0' y='0' width='50' height='50' patternUnits='userSpaceOnUse'%3E%3Cpath d='M25 0 C20 10, 10 15, 5 25 C15 20, 20 10, 25 0 Z M25 50 C20 60, 10 65, 5 75 C15 70, 20 60, 25 50 Z M75 0 C70 10, 60 15, 55 25 C65 20, 70 10, 75 0 Z M75 50 C70 60, 60 65, 55 75 C65 70, 70 60, 75 50 Z' fill='%23000' opacity='0.03'/%3E%3Cpath d='M25 25 Q30 20, 35 25 Q30 30, 25 25 Z M25 35 Q30 30, 35 35 Q30 40, 25 35 Z M75 25 Q80 20, 85 25 Q80 30, 75 25 Z M75 35 Q80 30, 85 35 Q80 40, 75 35 Z' fill='%23000' opacity='0.04'/%3E%3Ccircle cx='25' cy='25' r='1' fill='%23000' opacity='0.05'/%3E%3Ccircle cx='75' cy='25' r='1' fill='%23000' opacity='0.05'/%3E%3Ccircle cx='25' cy='75' r='1' fill='%23000' opacity='0.05'/%3E%3Ccircle cx='75' cy='75' r='1' fill='%23000' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23ornament1)'/%3E%3C/svg%3E"),
        /* Center Pattern */
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='ornament2' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M20 5 Q25 10, 20 15 Q15 10, 20 5 Z M20 25 Q25 30, 20 35 Q15 30, 20 25 Z M5 20 Q10 25, 5 30 Q0 25, 5 20 Z M25 20 Q30 25, 25 30 Q20 25, 25 20 Z' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='20' cy='20' r='0.5' fill='%23000' opacity='0.03'/%3E%3Ccircle cx='10' cy='10' r='0.5' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='30' cy='30' r='0.5' fill='%23000' opacity='0.02'/%3E%3Cpath d='M15 15 L25 15 L25 25 L15 25 Z M15 15 Q20 18, 25 15 Q20 12, 15 15 Z' fill='%23000' opacity='0.015'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23ornament2)'/%3E%3C/svg%3E"),
        /* Border Decoration */
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='ornament3' x='0' y='0' width='30' height='30' patternUnits='userSpaceOnUse'%3E%3Cpath d='M15 5 L15 15 L5 15 L5 5 Z M15 25 L15 35 L5 35 L5 25 Z M25 5 L25 15 L35 15 L35 5 Z M25 25 L25 35 L35 35 L35 25 Z' fill='none' stroke='%23000' stroke-width='0.5' opacity='0.02'/%3E%3Ccircle cx='15' cy='15' r='2' fill='none' stroke='%23000' stroke-width='0.3' opacity='0.03'/%3E%3Ccircle cx='45' cy='45' r='1.5' fill='none' stroke='%23000' stroke-width='0.2' opacity='0.02'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23ornament3)'/%3E%3C/svg%3E");
    background-size: 200px 200px, 120px 120px, 80px 80px;
    background-position: 0 0, 20px 20px, 40px 40px;
    background-repeat: repeat;
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.75rem;
    color: #1A2A44;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6C757D;
    text-align: center;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 165, 106, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C5A56A;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A2A44;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #1A2A44;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C5A56A;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #1A2A44;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1A2A44 0%, #2E476E 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 165, 106, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, #C5A56A, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #EAF0F9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.experience-badge {
    background: linear-gradient(135deg, rgba(197, 165, 106, 0.2), rgba(197, 165, 106, 0.1));
    border: 2px solid #C5A56A;
    border-radius: 25px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(197, 165, 106, 0.2);
}

.experience-text {
    color: #C5A56A;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.25rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    color: #212529;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(197, 165, 106, 0.3);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(197, 165, 106, 0.4);
    background: linear-gradient(135deg, #AE8E56, #C5A56A);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EAF0F9;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid #C5A56A;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: rgba(249, 246, 242, 0.95);
    backdrop-filter: blur(10px);
}

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

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 42, 68, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 42, 68, 0.15);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.card-badge {
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    color: #1A2A44;
    margin-bottom: 0.75rem;
}

.card-description {
    color: #6C757D;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #EAF0F9;
    color: #2E476E;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Reservation Process Section */
.reservation-process {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(197, 165, 106, 0.3);
}

.step-title {
    font-size: 1.5rem;
    color: #1A2A44;
    margin-bottom: 1rem;
}

.step-description {
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #C5A56A;
    font-weight: 500;
    font-size: 0.9rem;
}

.reservation-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFF3CD, #FEF8E1);
    border: 1px solid #F4E4BC;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
}

.warning-icon {
    color: #C5A56A;
    flex-shrink: 0;
}

.warning-content h4 {
    color: #1A2A44;
    margin-bottom: 0.5rem;
}

.warning-content p {
    color: #6C757D;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(249, 246, 242, 0.95);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(26, 42, 68, 0.08);
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 42, 68, 0.12);
}

.contact-icon {
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1A2A44;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: #6C757D;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.contact-btn {
    background: #C5A56A;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #AE8E56;
    transform: translateY(-1px);
}

.map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26, 42, 68, 0.1);
    border: 1px solid #E9ECEF;
}

.map-wrapper {
    height: 400px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.map-info {
    padding: 1.5rem;
    background: #F9F6F2;
}

.map-info p {
    color: #6C757D;
    margin-bottom: 1rem;
}

.map-btn {
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 165, 106, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #0A0A0A url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(249, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(26, 42, 68, 0.1);
    border: 1px solid rgba(197, 165, 106, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #1A2A44;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label svg {
    color: #C5A56A;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    transition: all 0.3s ease;
    color: #1A2A44;
}

.form-input:focus {
    outline: none;
    border-color: #C5A56A;
    box-shadow: 0 0 0 3px rgba(197, 165, 106, 0.1);
}

.form-input::placeholder {
    color: #ADB5BD;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
    appearance: none;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.form-submit-btn {
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    color: #212529;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(197, 165, 106, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(197, 165, 106, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-note {
    color: #6C757D;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.form-note svg {
    color: #C5A56A;
}

/* Navigation CTA Button */
.nav-cta {
    background: linear-gradient(135deg, #C5A56A, #AE8E56) !important;
    color: #212529 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    margin-left: 1rem !important;
}

.nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(197, 165, 106, 0.3) !important;
}

/* Footer */
.footer {
    background: #1A2A44;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-description {
    color: #EAF0F9;
    font-size: 0.9rem;
}

.footer-section h4 {
    color: #C5A56A;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section a {
    color: #EAF0F9;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C5A56A;
}

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

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EAF0F9;
}

.footer-phone a {
    color: #EAF0F9;
    text-decoration: none;
    font-weight: 500;
}

.footer-phone a:hover {
    color: #C5A56A;
}

.footer-whatsapp {
    background: linear-gradient(135deg, #C5A56A, #AE8E56);
    color: #212529;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 165, 106, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(197, 165, 106, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #EAF0F9;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(26, 42, 68, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

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

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

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form {
        padding: 2rem;
    }

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

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .reservation-warning {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .whatsapp-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 12px 14px;
    }

    .form-submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .category-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .category-card:nth-child(1) { animation-delay: 0.1s; }
    .category-card:nth-child(2) { animation-delay: 0.2s; }
    .category-card:nth-child(3) { animation-delay: 0.3s; }
    .category-card:nth-child(4) { animation-delay: 0.4s; }
    .category-card:nth-child(5) { animation-delay: 0.5s; }
    .category-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .whatsapp-btn,
    .footer-whatsapp {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}