@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');
@import "colors.css";

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gold {
    color: var(--accent-gold);
}

.text-muted-custom {
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--accent-gold);
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--accent-gold-light);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Buttons */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--bg-primary);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold-outline {
    background: transparent;
    color: var(--accent-gold);
    font-weight: 600;
    padding: 14px 32px;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary, .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-primary);
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: var(--btn-box-shadow);
}

.btn-primary.focus,
.btn-primary:focus {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--btn-box-shadow);
}

.btn-primary.disabled, .btn-primary:disabled {
    background: var(--text-muted);
    border-color: var(--text-muted);
}

.btn-dark {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
    border-radius: 50px;
}

/* Site Header */
.site-header {
    background-color: var(--bg-primary);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.header-phone:hover {
    color: var(--accent-gold-light);
    text-decoration: none;
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.header-phone i {
    font-size: 1.2rem;
}

/* Navigation */
nav {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    background-color: var(--bg-primary) !important;
}

.nav-container {
    margin: 0 auto;
}

.bg-dark {
    background-color: var(--bg-primary) !important;
}

.logo {
    width: 125px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 82px; /* Account for fixed header */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 20px rgba(212, 175, 55, 0.3);
    }
    to {
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.hero-title .gold {
    color: var(--accent-gold);
    position: relative;
}

.hero-title .gold::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.trust-badge {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.trust-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.trust-badge-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: block;
}

.trust-badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.trust-badge-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Social Proof Bar */
.social-proof-bar {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.social-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

/* Sections */
.section-dark {
    background-color: var(--bg-primary);
    padding: 100px 0;
}

.section-light {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 100px 0;
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.03"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.03"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    background: var(--bg-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    transition: background 0.5s ease;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.6);
    }
}

.category-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.category-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.category-content {
    padding: 30px;
    text-align: center;
    background: var(--bg-secondary);
    border-top: none;
}

.category-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

/* Package Cards */
.package-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.package-image {
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.package-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.package-content {
    padding: 30px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.package-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-highlights li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.package-highlights li:hover {
    transform: translateX(5px);
    color: var(--text-primary);
}

.package-highlights li:last-child {
    border-bottom: none;
}

.package-highlights li i {
    margin-right: 12px;
    color: var(--accent-gold);
}

.package-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.package-price:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin: 5px 0;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.price-per {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Package Gallery */
.package-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.package-card:hover .package-gallery {
    gap: 10px;
}

.package-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.package-gallery img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-secondary);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    padding: 0 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-gold);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-phone {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    display: inline-block;
    margin-bottom: 25px;
    padding: 15px 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-phone:hover {
    color: var(--bg-secondary);
    transform: scale(1.05);
    background: rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-dark-cta {
    background: var(--bg-primary);
    color: var(--accent-gold);
    font-weight: 700;
    padding: 18px 45px;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 0 10px;
    display: inline-block;
}

.btn-dark-cta:hover {
    background: var(--bg-secondary);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Forms */
.form-control, .form-control:focus {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-form .form-control {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-primary);
}

.booking-form select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Cards */
.card {
    background-color: var(--bg-secondary);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-link {
    color: var(--accent-gold);
}

.btn-link:hover {
    color: var(--accent-gold-light);
}

/* Booking Widget */
.booking-widget-container {
    max-width: 1200px;
    margin: 0 auto;
}

.widget-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.widget-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.widget-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.widget-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
    border-radius: 1px;
}

.booking-widget {
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

.booking-placeholder {
    background: var(--bg-secondary);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 80px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.booking-placeholder:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

.booking-placeholder-content h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Urgency Bar */
.urgency-section {
    background: var(--bg-tertiary);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: shimmerSlow 5s infinite;
}

@keyframes shimmerSlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    color: var(--bg-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.urgency-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.urgency-subtext {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Booking Widget */
.booking-widget-container {
    max-width: 1200px;
    margin: 0 auto;
}

.widget-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.widget-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.booking-widget {
    min-height: 600px;
}

.booking-placeholder {
    background: var(--bg-secondary);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
}

.booking-placeholder-content h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Booking Widget */
.booking-widget-container {
    max-width: 1200px;
    margin: 0 auto;
}

.widget-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

.widget-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.booking-widget {
    min-height: 400px;
}

.booking-form label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-form .form-control {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.booking-form .form-control:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-primary);
}

.booking-form select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.booking-placeholder {
    background: var(--bg-secondary);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
}

.booking-placeholder-content h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Cards */
.card {
    background-color: var(--bg-secondary);
    border: none;
    border-radius: 15px;
}

.btn-link {
    color: var(--accent-gold);
}

.btn-link:hover {
    color: var(--accent-gold-light);
}

/* Legacy Support */
.homepage h1 {
    max-width: 800px;
    margin: 0 auto;
}

.text-highlight {
    color: var(--accent-gold);
}

.col-caption {
    color: var(--accent-color-caption-text);
    font-weight: bold;
    padding: 12px;
    text-align: center;
    background: var(--accent-color-caption);
    font-size: 16px;
}

.col-caption-fixed {
    min-height: 80px;
}

.col-pricing {
    color: white;
    position: absolute;
    top: 16px;
    left: 0;
    text-align: center;
    width: 100%;
    filter: drop-shadow(0 0px 6px #000);
    font-weight: bold;
}

.view-more-img {
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Blogs */
.blog {
    padding: 20px;
    background-color: var(--bg-secondary);
    color: white;
    height: 420px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

a.blog:hover {
    text-decoration: none;
    color: white;
}

.blog img {
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Utility Classes */
.opacity-50 {
    opacity: .5;
}

.copyright {
    opacity: 0.8;
}

main {
    min-height: calc(100vh - 288px);
    padding-top: 82px; /* Account for fixed header */
}

/* Number Input Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .package-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        padding: 15px;
        min-width: 100px;
    }

    .trust-badge-icon {
        font-size: 2rem;
    }

    .trust-badge-number {
        font-size: 1.5rem;
    }

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

    .section-dark, .section-light {
        padding: 60px 0;
    }

    footer {
        text-align: center;
    }

    .preview-image {
        width: 75px;
        height: 75px;
    }

    .logo {
        width: 80px;
    }

    .header-phone {
        display: none;
    }

    .site-header {
        padding: 15px 0;
    }

    .hero-section {
        margin-top: 70px;
    }

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

    .cta-phone {
        font-size: 2rem;
    }

    .btn-gold {
        padding: 14px 28px;
        font-size: 13px;
    }

    .package-card {
        margin-bottom: 30px;
    }

    .package-gallery {
        display: none; /* Hide on mobile */
    }

    .package-image {
        height: 250px;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-gold {
        padding: 12px 24px;
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Style */
::selection {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===================================
   BOOKING PAGE WIDGET STYLING
   =================================== */

#booking-widget {
  background: #1a1a1a !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  min-height: 600px !important;
}

#booking-widget * {
  background-color: transparent !important;
}

#booking-widget .widget-container,
#booking-widget .bib-widget,
#booking-widget .booking-form {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

#booking-widget .form-control,
#booking-widget input,
#booking-widget select,
#booking-widget textarea {
  background: #2a2a2a !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 8px !important;
}

#booking-widget .form-control:focus,
#booking-widget input:focus,
#booking-widget select:focus,
#booking-widget textarea:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

#booking-widget .btn,
#booking-widget button {
  background: var(--gradient-gold) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 12px 30px !important;
  transition: all 0.3s ease !important;
}

#booking-widget .btn:hover,
#booking-widget button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4) !important;
}

#booking-widget .card,
#booking-widget .panel,
#booking-widget .well {
  background: #1a1a1a !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 8px !important;
}

#booking-widget .card-header,
#booking-widget .panel-header,
#booking-widget .well-header {
  background: #2a2a2a !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
  color: #ffffff !important;
}

#booking-widget h1,
#booking-widget h2,
#booking-widget h3,
#booking-widget h4,
#booking-widget h5,
#booking-widget h6 {
  color: #ffffff !important;
}

#booking-widget label,
#booking-widget .form-label,
#booking-widget .control-label,
#booking-widget label[for*="date"],
#booking-widget label[for*="Date"],
#booking-widget .date-label,
#booking-widget .calendar-label {
  color: #b3b3b3 !important;
  font-weight: 500 !important;
}

#booking-widget label[for*="date"] *,
#booking-widget label[for*="Date"] * {
  color: #b3b3b3 !important;
}

#booking-widget .required-label,
#booking-widget label.required,
#booking-widget .label-required {
  color: #d4af37 !important;
}

#booking-widget .text-muted,
#booking-widget .help-block {
  color: #888888 !important;
}

#booking-widget .alert {
  border-radius: 8px !important;
  color: #ffffff !important;
}

#booking-widget .alert-success {
  background: rgba(76, 175, 80, 0.1) !important;
  border: 1px solid rgba(76, 175, 80, 0.3) !important;
  color: #81c784 !important;
}

#booking-widget .alert-danger,
#booking-widget .alert-error {
  background: rgba(244, 67, 54, 0.1) !important;
  border: 1px solid rgba(244, 67, 54, 0.3) !important;
  color: #e57373 !important;
}

#booking-widget .alert-info {
  background: rgba(33, 150, 243, 0.1) !important;
  border: 1px solid rgba(33, 150, 243, 0.3) !important;
  color: #64b5f6 !important;
}

#booking-widget .table {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

#booking-widget .table td,
#booking-widget .table th {
  border-color: rgba(212, 175, 55, 0.1) !important;
  color: #ffffff !important;
}

#booking-widget .modal-content {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

#booking-widget .dropdown-menu {
  background: #2a2a2a !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

#booking-widget .dropdown-item {
  color: #ffffff !important;
}

#booking-widget .dropdown-item:hover {
  background: #d4af37 !important;
  color: #0a0a0a !important;
}

/* Date Picker Specific Styles */
#booking-widget .datepicker,
#booking-widget .ui-datepicker,
#booking-widget .flatpickr-calendar,
#booking-widget .pika-single,
#booking-widget .calendar-container,
#booking-widget .daterangepicker,
#booking-widget .calendar-popup {
  background: #1a1a1a !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
}

#booking-widget .datepicker-inline,
#booking-widget .ui-datepicker-inline,
#booking-widget .flatpickr-calendar.inline {
  background: #1a1a1a !important;
}

#booking-widget .datepicker table,
#booking-widget .ui-datepicker table,
#booking-widget .flatpickr-calendar .flatpickr-days,
#booking-widget .pika-table,
#booking-widget .calendar-table {
  background: #1a1a1a !important;
}

#booking-widget .datepicker td,
#booking-widget .datepicker th,
#booking-widget .ui-datepicker td,
#booking-widget .ui-datepicker th,
#booking-widget .flatpickr-calendar .flatpickr-day,
#booking-widget .pika-day,
#booking-widget .calendar-day,
#booking-widget .date-cell {
  background: #2a2a2a !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.1) !important;
  cursor: pointer !important;
}

#booking-widget .datepicker td.active,
#booking-widget .datepicker td.selected,
#booking-widget .datepicker td.active:hover,
#booking-widget .datepicker td.selected:hover,
#booking-widget .ui-datepicker td.selected,
#booking-widget .ui-datepicker .ui-datepicker-current-day,
#booking-widget .flatpickr-calendar .flatpickr-day.selected,
#booking-widget .flatpickr-calendar .flatpickr-day.selected:hover,
#booking-widget .pika-day.is-selected,
#booking-widget .calendar-day.selected,
#booking-widget .date-cell.selected,
#booking-widget .calendar-cell.selected {
  background: var(--gradient-gold) !important;
  color: #0a0a0a !important;
  border-color: #d4af37 !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
}

#booking-widget .datepicker td:hover,
#booking-widget .datepicker td:hover:hover,
#booking-widget .ui-datepicker td:hover,
#booking-widget .ui-datepicker td a:hover,
#booking-widget .flatpickr-calendar .flatpickr-day:hover,
#booking-widget .pika-day:hover,
#booking-widget .calendar-day:hover,
#booking-widget .date-cell:hover,
#booking-widget .calendar-cell:hover {
  background: #d4af37 !important;
  color: #0a0a0a !important;
  transform: scale(1.05) !important;
}

#booking-widget .datepicker td.today,
#booking-widget .ui-datepicker .ui-datepicker-today,
#booking-widget .flatpickr-calendar .flatpickr-day.today,
#booking-widget .pika-day.is-today,
#booking-widget .calendar-day.today,
#booking-widget .date-cell.today {
  border: 2px solid #d4af37 !important;
}

#booking-widget .datepicker td.disabled,
#booking-widget .datepicker td.disabled:hover,
#booking-widget .ui-datepicker .ui-state-disabled,
#booking-widget .ui-datepicker .ui-state-disabled:hover,
#booking-widget .flatpickr-calendar .flatpickr-day.disabled,
#booking-widget .flatpickr-calendar .flatpickr-day.disabled:hover,
#booking-widget .pika-day.is-disabled,
#booking-widget .calendar-day.disabled,
#booking-widget .date-cell.disabled {
  background: #333333 !important;
  color: #666666 !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

#booking-widget .datepicker .datepicker-switch,
#booking-widget .datepicker .prev,
#booking-widget .datepicker .next,
#booking-widget .ui-datepicker .ui-datepicker-prev,
#booking-widget .ui-datepicker .ui-datepicker-next,
#booking-widget .ui-datepicker .ui-datepicker-title,
#booking-widget .flatpickr-calendar .flatpickr-month,
#booking-widget .flatpickr-calendar .flatpickr-next-month,
#booking-widget .flatpickr-calendar .flatpickr-prev-month,
#booking-widget .pika-label,
#booking-widget .calendar-header,
#booking-widget .calendar-nav {
  background: transparent !important;
  color: #d4af37 !important;
  border: none !important;
}

#booking-widget .datepicker .datepicker-switch:hover,
#booking-widget .datepicker .prev:hover,
#booking-widget .datepicker .next:hover,
#booking-widget .ui-datepicker .ui-datepicker-prev:hover,
#booking-widget .ui-datepicker .ui-datepicker-next:hover,
#booking-widget .flatpickr-calendar .flatpickr-next-month:hover,
#booking-widget .flatpickr-calendar .flatpickr-prev-month:hover,
#booking-widget .calendar-nav button:hover {
  background: rgba(212, 175, 55, 0.2) !important;
}

#booking-widget .datepicker-weekend,
#booking-widget .ui-datepicker-week-end,
#booking-widget .flatpickr-calendar .flatpickr-day.weekend,
#booking-widget .calendar-day.weekend {
  color: #e57373 !important;
}

/* Additional calendar styles for various date pickers */
#booking-widget .calendar {
  background: #1a1a1a !important;
}

#booking-widget .calendar .days,
#booking-widget .calendar .week,
#booking-widget .calendar tbody td,
#booking-widget .calendar-grid td {
  background: #2a2a2a !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.1) !important;
}

#booking-widget .calendar .days.selected,
#booking-widget .calendar .week.selected,
#booking-widget .calendar tbody td.selected,
#booking-widget .calendar-grid td.selected,
#booking-widget .calendar .active,
#booking-widget .calendar-cell.active {
  background: var(--gradient-gold) !important;
  color: #0a0a0a !important;
  font-weight: bold !important;
  border-color: #d4af37 !important;
}

#booking-widget .calendar .days:hover,
#booking-widget .calendar .week:hover,
#booking-widget .calendar tbody td:hover,
#booking-widget .calendar-grid td:hover,
#booking-widget .calendar .days.focus,
#booking-widget .calendar .week.focus,
#booking-widget .calendar tbody td.focus {
  background: #d4af37 !important;
  color: #0a0a0a !important;
}

/* Custom date selection indicator */
#booking-widget [data-selected],
#booking-widget [aria-selected="true"],
#booking-widget .selected-date,
#booking-widget .date-selected,
#booking-widget .is-active,
#booking-widget .is-selected,
#booking-widget .active-date,
#booking-widget .focus-date,
#booking-widget .chosen-date,
#booking-widget .picked-date {
  background: #ff3b3b !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: #ff0000 !important;
}

/* More specific selectors for active dates */
#booking-widget td.active,
#booking-widget td[class*="active"],
#booking-widget td[class*="selected"],
#booking-widget td[aria-selected="true"],
#booking-widget td[data-selected],
#booking-widget td.is-active,
#booking-widget td.is-selected,
#booking-widget td[data-active="true"],
#booking-widget td[data-isSelected="true"],
#booking-widget td[data-selected-date] {
  background: #ff3b3b !important;
  color: #ffffff !important;
  border-color: #ff0000 !important;
  font-weight: 700 !important;
}

#booking-widget span.active,
#booking-widget span[class*="active"],
#booking-widget span[class*="selected"],
#booking-widget span[aria-selected="true"],
#booking-widget span.is-active,
#booking-widget span.is-selected {
  background: #ff3b3b !important;
  color: #ffffff !important;
  border-color: #ff0000 !important;
}

#booking-widget button.active,
#booking-widget button[class*="active"],
#booking-widget button[class*="selected"],
#booking-widget button.is-active,
#booking-widget button.is-selected {
  background: #ff3b3b !important;
  color: #ffffff !important;
  border-color: #ff0000 !important;
}

/* Force override with maximum specificity */
body #booking-widget td[class*="active"],
body #booking-widget td[class*="selected"],
body #booking-widget .calendar td.active,
body #booking-widget .calendar td.selected,
body #booking-widget .datepicker td.active,
body #booking-widget .datepicker td.selected {
  background: #ff3b3b !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 2px solid #ff0000 !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5) !important;
}

#booking-widget .nav-tabs,
#booking-widget .nav-pills {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

#booking-widget .nav-tabs > li > a,
#booking-widget .nav-pills > li > a {
  color: #b3b3b3 !important;
  border-color: transparent !important;
}

#booking-widget .nav-tabs > li.active > a,
#booking-widget .nav-pills > li.active > a {
  color: #d4af37 !important;
  background: transparent !important;
  border-color: #d4af37 !important;
}

#booking-widget .list-group-item {
  background: #1a1a1a !important;
  border-color: rgba(212, 175, 55, 0.1) !important;
  color: #ffffff !important;
}

#booking-widget .progress {
  background: #2a2a2a !important;
}

#booking-widget .progress-bar {
  background: var(--gradient-gold) !important;
}

#booking-widget .badge {
  background: #d4af37 !important;
  color: #0a0a0a !important;
}

#booking-widget .pager li > a,
#booking-widget .pagination > li > a {
  background: #2a2a2a !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
  color: #ffffff !important;
}

#booking-widget .pager li > a:hover,
#booking-widget .pagination > li > a:hover {
  background: #d4af37 !important;
  color: #0a0a0a !important;
}

/* Additional date input fixes */
#booking-widget input[type="date"],
#booking-widget input.datepicker,
#booking-widget input.flatpickr-input,
#booking-widget input.pika-input {
  background: #2a2a2a !important;
  color: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 8px !important;
}

#booking-widget .input-group.date,
#booking-widget .input-group-addon,
#booking-widget .date-picker-wrapper,
#booking-widget .calendar-input-group {
  background: #2a2a2a !important;
}

#booking-widget .input-group-addon {
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #d4af37 !important;
}

/* Force all labels to be visible */
#booking-widget .form-group label,
#booking-widget .field-wrapper label,
#booking-widget .input-field label,
#booking-widget div > label {
  color: #b3b3b3 !important;
  display: block !important;
  margin-bottom: 8px !important;
}

#booking-widget .form-group label span,
#booking-widget .field-wrapper label span {
  color: inherit !important;
}

/* Ultra-specific label fixes */
#booking-widget div > label,
#booking-widget div[class*="form"] > label,
#booking-widget div[class*="field"] > label,
#booking-widget div[class*="input"] > label,
#booking-widget label:first-child,
#booking-widget label:first-of-type,
#booking-widget .form-row label,
#booking-widget .row label {
  color: #b3b3b3 !important;
}

#booking-widget label > span,
#booking-widget label > strong,
#booking-widget label > b,
#booking-widget label > i,
#booking-widget label > em {
  color: inherit !important;
}

#booking-widget .field-title,
#booking-widget .input-title,
#booking-widget .form-title {
  color: #b3b3b3 !important;
}

/* Black text override fix */
#booking-widget *[style*="color: black"],
#booking-widget *[style*="color:#000"],
#booking-widget *[style*="color: #000"],
#booking-widget *[style*="color:rgb(0"] {
  color: #b3b3b3 !important;
}

/* Simple label fix for booking widget */
#booking-widget label,
#booking-widget p {
  color: #b3b3b3 !important;
}

/* Required asterisk color */
#booking-widget label span,
#booking-widget p span {
  color: inherit !important;
}

/* Print Styles */
@media print {
    .hero-section,
    .trust-badges,
    .social-proof-bar,
    .cta-section {
        display: none;
    }
}