body {
font-family: 'Lato', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
}

.header {
position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
width: 48px;
            height: 48px;
}

.logo-title {
font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
}

.logo-subtitle {
font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: var(--text-secondary);
}

.nav-item {
position: relative;
}

.nav-link {
font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            transition: opacity 0.2s;
            cursor: pointer;
}

.dropdown {
display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 0.5rem;
            margin-top: 0;
            padding-top: 0.5rem;
            min-width: 200px;
            z-index: 1001;
}

.nav-item:hover .dropdown {
display: block;
}

.dropdown a {
display: block;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            transition: background-color 0.2s;
}

.dropdown a:hover {
background-color: var(--light);
}

.book-btn {
padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: transform 0.3s;
}

.book-btn:hover {
transform: scale(1.05);
}

.hamburger span {
width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
}

.hero {
margin-top: 80px;
            padding: 4rem 1.5rem 3rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            text-align: center;
            color: white;
}

.hero h1 {
font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
}

.hero-book-btn {
display: inline-block;
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            background-color: white;
            color: var(--primary);
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-book-btn:hover {
transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.content {
max-width: 700px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
}

.contact-section {
background-color: var(--light);
            padding: 2.5rem;
            border-radius: 0.75rem;
            margin-bottom: 2rem;
}

.section-title {
font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
}

.disclaimer {
background-color: var(--quinary);
            border-left: 4px solid var(--tertiary);
            padding: 1rem;
            margin-bottom: 2rem;
            border-radius: 0.25rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
}

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

.form-label {
display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
}

.form-input,
        .form-textarea {
width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--quaternary);
            border-radius: 0.5rem;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
}

.form-input:focus,
        .form-textarea:focus {
outline: none;
            border-color: var(--primary);
}

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

.submit-btn {
width: 100%;
            padding: 1rem;
            font-size: 1.125rem;
            font-weight: 600;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.submit-btn:hover {
background-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.submit-btn:disabled {
background-color: var(--quaternary);
            cursor: not-allowed;
            transform: none;
}

.success-message {
display: none;
            background-color: #d4edda;
            border-left: 4px solid #28a745;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 0.25rem;
            color: #155724;
}

.success-message.show {
display: block;
}

.success-message h3 {
font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
}

.faq-link-section {
text-align: center;
            padding: 2rem;
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-link-section p {
font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
}

.faq-link {
display: inline-block;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            background-color: var(--light);
            color: var(--primary);
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.3s;
}

.faq-link:hover {
background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
}

@keyframes shimmer {

  0% {
  background-position: -200% center;
                opacity: 0;
  }

  50% {
  opacity: 1;
  }

  100% {
  background-position: 200% center;
                opacity: 0;
  }

}

@media (max-width: 768px) {

  .contact-section {
  padding: 1.5rem;
  }

}
