/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
}

/* Background styles */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

/* Navigation styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.nav-menu li a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #DAA520;
}

/* Section styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Hero section styles */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Less dark overlay */
    z-index: 1;
}

.text-background {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 3.5rem;
    letter-spacing: 6px;
    margin-bottom: 0.25rem;
}

.logo-subtext {
    font-size: 1.2rem;
    letter-spacing: 4px;
    font-weight: 300;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content > p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #DAA520;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #B8860B;
}

.price-guarantee {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid rgba(218, 165, 32, 0.6);
    text-transform: uppercase;
    animation: pulse-border 2s infinite;
}

.guarantee-icon {
    color: #DAA520;
    margin-right: 8px;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(218, 165, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
    }
}

/* Benefits section styles */
.benefits-section {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit-card {
    padding: 2rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #DAA520;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact section styles */
.contact-section {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-section > p {
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    cursor: pointer;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #DAA520;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.submit-button:hover {
    background-color: #B8860B;
}

/* Testimonials section styles */
.testimonials-section {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    padding: 0 2rem;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #DAA520;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

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

.dot.active {
    background-color: #DAA520;
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-contact {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #DAA520;
}

.social-links i {
    font-size: 1.2rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DAA520;
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 2.5rem;
    }
    
    .logo-subtext {
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content > p {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu li a {
        font-size: 0.8rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .text-background {
        padding: 1.5rem;
    }
    
    .advantage-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 180px;
        height: 70px;
    }

    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-container h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .logo-subtext {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .text-background {
        padding: 1.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content > p {
        font-size: 1.1rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    .price-guarantee {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        width: 100%;
    }
    
    .booking-advantages {
        margin-top: 1.5rem;
    }
    
    .advantage-item {
        gap: 0.6rem;
    }
    
    .advantage-item i {
        font-size: 1rem;
    }
    
    .advantage-item span {
        font-size: 0.85rem;
    }
}

/* Add specific styles for extra small screens */
@media (max-width: 380px) {
    .logo-icon {
        width: 160px;
        height: 60px;
    }
    
    .logo-container h1 {
        font-size: 1.7rem;
    }
    
    .logo-subtext {
        font-size: 0.8rem;
    }
    
    .text-background {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
}