/* Local Fonts: Outfit */
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2563eb;
    /* Blue from mockup */
    --secondary-color: #1e40af;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --card-border-glow: #2563eb;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-light {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-secondary {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.8);
    /* Blue semi-transparent box */
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Offers Section */
.offers-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.offer-card {
    background: white;
    color: var(--text-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    cursor: pointer;
}

/* Glowing Border Effect */
.offer-card:hover {
    transform: translateY(-10px);
    border-color: #60a5fa;
    /* Lighter blue for glow */
    box-shadow: 0 0 20px #60a5fa, 0 0 40px #2563eb;
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.offer-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

/* Social Media */
.social-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.social-card {
    background: white;
    color: var(--text-color);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: scale(1.05);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #f8f9fa;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Pricing Page */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.booking-assistant-card {
    background: white;
    color: var(--text-color);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.assistant-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.section-blue {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.section-white {
    background-color: white;
    padding: 4rem 0;
}

.special-card {
    background: white;
    color: var(--text-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.badge-custom {
    background-color: #10b981;
    /* Green badge */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info-card {
    background: white;
    color: var(--text-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Content Pages */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--primary-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Booking Assistant Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.booking-modal-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.booking-assistant-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
}

.booking-assistant-close:hover {
    color: #374151;
}

.booking-modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.assistant-option-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%;
}

.assistant-option-card:hover {
    border-color: var(--primary-color);
    background-color: #eff6ff;
    transform: translateY(-2px);
}

.assistant-option-card.selected {
    border-color: var(--primary-color);
    background-color: #eff6ff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-modal-body {
        padding: 1rem;
    }

    .assistant-option-card {
        padding: 1rem;
    }
}

/* Anti-Spam Honeypot */
.honeypot-field {
    display: none !important;
}