:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --gold: #d4af37;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --gradient-blue: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.6) 50%, rgba(26, 188, 156, 0.4) 100%);
}

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

.hero-subtitle {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-contact-quick {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-quick-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-quick-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.contact-quick-btn i {
    font-size: 1.2rem;
}

/* Sections General */
section {
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 25s infinite linear;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: var(--gradient-gold);
    top: 60%;
    right: 15%;
    animation-delay: -8s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    bottom: 30%;
    left: 70%;
    animation-delay: -16s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(30px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.section-subtitle {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header {
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.contact-icon {
    background: var(--gradient-gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

.contact-details h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-action-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-action-btn:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Contact Form Section */
.contact-form-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-form-section .section-subtitle {
    color: var(--gold);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-floating {
    margin-bottom: 0;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: white;
}

.contact-form .form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select ~ label {
    color: var(--gold);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-select option {
    background: var(--primary-color);
    color: white;
}

.contact-form .form-check-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form .form-check-input:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form .form-check-label a {
    color: var(--gold);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.contact-form .btn-primary {
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.contact-form .invalid-feedback {
    color: #ffb3ba;
}

.contact-form .is-invalid {
    border-color: #ff6b6b;
}

.contact-form .is-valid {
    border-color: #51cf66;
}

/* Reservation Section */
.reservation-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

.reservation-form-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.reservation-form .form-control,
.reservation-form .form-select {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.reservation-form .btn-warning {
    background: var(--gradient-gold);
    border: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reservation-form .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.toggle-advanced {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-advanced:hover {
    color: var(--gold);
}

.reservation-benefits {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.map-info {
    background: var(--primary-color);
    color: white;
    height: 500px;
    display: flex;
    align-items: center;
}

.map-info-content {
    padding: 3rem;
}

.map-info h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.address-info {
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.address-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    min-width: 1.5rem;
}

.address-item div {
    flex: 1;
}

.address-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-actions .btn {
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: white;
}

.accordion {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-gold);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
}

.footer-brand a {
    color: white;
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-contact-quick {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-quick-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-form-container,
    .reservation-form-container {
        padding: 2rem 1.5rem;
    }
    
    .map-info {
        height: auto;
        padding: 2rem 0;
    }
    
    .map-info-content {
        padding: 2rem 1rem;
    }
    
    .map-actions {
        justify-content: center;
    }
    
    .map-actions .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .accordion-button,
    .accordion-body {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container,
    .reservation-form-container {
        padding: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
}

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}