/* ========================================
   LUXURY COMPONENTS - 5-Star Hotel Design
   White, Navy Blue, Gold Palette
   ======================================== */

/* ==========================================
   BUTTONS - Elegant & Premium
   ========================================== */

/* Primary Gold Button */
.btn-gold,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-gold);
    background: var(--luxury-gold-light);
}

.btn-gold:active,
.btn-primary:active {
    transform: translateY(0);
}

/* Outline Gold Button */
.btn-outline-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--luxury-gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    text-decoration: none;
    border: 2px solid var(--luxury-gold);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--luxury-gold);
    color: var(--text-white);
    box-shadow: var(--shadow-md), var(--glow-gold);
}

/* Navy Button */
.btn-navy {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-navy);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--luxury-royal-blue);
}

/* ==========================================
   SECTION HEADERS - Elegant Typography
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    color: var(--luxury-gold);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    font-weight: 400;
    color: var(--text-heading);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
    margin: 0 auto;
}

/* Gold Divider */
.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: var(--spacing-lg) auto;
}

/* ==========================================
   CARDS - Premium Design
   ========================================== */

.luxury-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.luxury-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: var(--gradient-white-overlay);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.luxury-card:hover .card-overlay {
    transform: translateY(0);
}

/* ==========================================
   HERO SECTION - Luxury Style
   ========================================== */

.luxury-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-light);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    padding: var(--spacing-lg);
}

.hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    color: var(--luxury-gold-light);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-content .btn-gold {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ==========================================
   GRID LAYOUTS - Spacious & Clean
   ========================================== */

.luxury-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.luxury-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.luxury-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

/* ==========================================
   SPLIT LAYOUT - Image + Content
   ========================================== */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.content-side {
    padding: var(--spacing-2xl);
}

.content-side h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--text-heading);
    margin-bottom: var(--spacing-lg);
}

.content-side p {
    font-size: 1.125rem;
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.image-side {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   AMENITIES LIST - Gold Icons
   ========================================== */

.amenities-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.amenities-list .icon-gold {
    color: var(--luxury-gold);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ==========================================
   PRICE TAG - Elegant Display
   ========================================== */

.price-tag {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--bg-white);
    border: 2px solid var(--luxury-gold);
    box-shadow: var(--shadow-md);
}

.price-from {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--luxury-gold);
    font-weight: 400;
}

.price-period {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .luxury-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .image-side {
        height: 400px;
    }
}

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

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

    .luxury-grid-2,
    .luxury-grid-3,
    .luxury-grid-4 {
        grid-template-columns: 1fr;
    }

    .btn-gold,
    .btn-outline-gold,
    .btn-navy {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
}

/* ==========================================
   LUXURY GALLERY SECTION
   ========================================== */

.luxury-gallery-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.luxury-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.luxury-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--bg-light);
}

.luxury-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.luxury-gallery-item:hover img {
    transform: scale(1.1);
}

.luxury-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(27, 59, 111, 0) 0%,
            rgba(27, 59, 111, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.luxury-gallery-item:hover .luxury-gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
    color: var(--text-white);
}

.overlay-content i {
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    display: block;
}

.overlay-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-white);
    margin: 0;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .luxury-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* ==========================================
   CONTACT FORM - Luxury Styling
   ========================================== */

.contact-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container h3,
.contact-info-container h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-form-container {
    background: var(--bg-cream);
    padding: 3rem;
}

/* Form Groups */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

/* Form Messages */
.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4caf50;
}

.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #f44336;
}

.form-success i,
.form-error i {
    margin-right: 0.5rem;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--bg-cream);
    padding: 3rem;
    margin-bottom: 2rem;
}

.contact-info-box h3 {
    color: var(--luxury-gold);
}

.contact-info-box .info-item {
    margin-bottom: 2rem;
}

.contact-info-box .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-box strong i {
    color: var(--luxury-gold);
    margin-right: 0.5rem;
}

.contact-info-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Map Container */
.map-container {
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }


    .contact-info-box {
        padding: 2rem;
    }
}

/* ==========================================
   FAQ ACCORDION - AEO Optimized
   ========================================== */

.faq-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--luxury-gold-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(201, 169, 97, 0.05);
}

.faq-question.active {
    color: var(--luxury-gold);
    background: rgba(201, 169, 97, 0.05);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--luxury-gold);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--bg-white);
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}