/* Professional Modern Theme - Industry Standard Design */

@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Purple - Supporting Color */
    --primary: #667eea;
    --primary-light: #8b9df5;
    --primary-dark: #5568d3;

    /* Gold - Main Accent Color */
    --accent: #ffb74d;
    --accent-dark: #ff9800;
    --gold: #ffd700;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Backgrounds - Dark */
    --border-color: rgba(255, 183, 77, 0.2);
    --card-bg: rgba(25, 25, 40, 0.85);
    --card-hover-bg: rgba(35, 35, 50, 0.9);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 8px 24px rgba(255, 183, 77, 0.3);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ==================== SECTIONS ==================== */
.contact-section,
.services-section,
.about-section,
.legal-section,
.booking-section,
.terms-section {
    color: var(--text-primary);
    animation: fadeIn var(--transition-slow) ease-out;
}

/* ==================== GLASS CARDS==================== */
.contact-form,
.contact-info .info-card,
.service-card,
.about-card,
.legal-content,
.terms-content,
.booking-container,
.glass {
    background: var(--card-bg) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    box-shadow: var(--shadow-md),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
    color: var(--text-primary) !important;
    transition: all var(--transition-base);
    animation: fadeInUp var(--transition-slow) ease-out;
}

/* ==================== CARD HOVER EFFECTS ==================== */
.service-card,
.info-card,
.about-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.info-card::before,
.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 183, 77, 0.05);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover::before,
.info-card:hover::before,
.about-card:hover::before {
    opacity: 1;
}

.service-card:hover,
.info-card:hover,
.about-card:hover {
    border-color: rgba(255, 183, 77, 0.4) !important;
    box-shadow: var(--shadow-lg),
                var(--shadow-accent),
                0 0 0 1px rgba(255, 183, 77, 0.1) inset !important;
    transform: translateY(-2px);
    background: var(--card-hover-bg) !important;
}

/* ==================== TEXT COLORS ==================== */
.contact-form h2,
.contact-form label,
.service-card h3,
.service-card p,
.about-card h2,
.about-card h3,
.about-card p,
.about-card li,
.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content li,
.terms-content h2,
.terms-content h3,
.terms-content p,
.terms-content li,
.info-card h3,
.info-card p,
.booking-container h2,
.booking-container p,
.booking-container label {
    color: var(--text-primary) !important;
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    color: var(--accent) !important;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    animation: fadeInUp var(--transition-slow) ease-out;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent) !important;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary) !important;
    font-size: clamp(1rem, 2vw, 1.25rem);
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* ==================== FORM INPUTS ==================== */
.contact-form input,
.contact-form textarea,
.contact-form select,
.form-group input,
.form-group textarea,
.form-group select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="date"],
input[type="time"],
textarea,
select {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1.5px solid var(--border-color) !important;
    border-radius: 12px;
    color: var(--text-primary) !important;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 400;
    transition: all var(--transition-base);
    font-family: 'Inter', sans-serif;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 183, 77, 0.3) !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.1),
                0 4px 12px rgba(255, 183, 77, 0.15);
    outline: none;
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted) !important;
}

select option {
    background: var(--primary-light);
    color: var(--text-primary);
    padding: 12px;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--accent) !important;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-accent);
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 12px 32px rgba(255, 183, 77, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* ==================== INFO BOXES ==================== */
.info-box,
.highlight-box,
.payment-terms {
    background: rgba(255, 183, 77, 0.08) !important;
    border-left: 4px solid var(--accent) !important;
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.info-box:hover,
.highlight-box:hover {
    background: rgba(255, 183, 77, 0.12) !important;
    transform: translateX(4px);
}

.info-box p,
.highlight-box p,
.payment-terms p,
.payment-terms li {
    color: var(--text-secondary) !important;
}

.payment-terms h3 {
    color: var(--text-primary) !important;
}

/* ==================== TABLES ==================== */
.cookie-table,
.legal-content table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table th,
.legal-content table th {
    background: rgba(255, 183, 77, 0.15) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
    font-weight: 600;
    padding: 16px;
}

.cookie-table td,
.legal-content table td {
    color: var(--text-secondary) !important;
    border-color: var(--border-color) !important;
    padding: 14px 16px;
    transition: background var(--transition-fast);
}

.cookie-table tr:hover td,
.legal-content table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* ==================== STATS BOXES ==================== */
.stat-box,
.stat-card {
    background: rgba(255, 183, 77, 0.15) !important;
    border: 1px solid rgba(255, 183, 77, 0.3);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-box::before,
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 183, 77, 0.05) !important;
    animation: float 6s ease-in-out infinite;
}

.stat-box:hover,
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 183, 77, 0.25);
    border-color: rgba(255, 183, 77, 0.5);
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent) !important;
}

.cta-section h2 {
    color: var(--text-primary) !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary) !important;
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 32px;
}

/* ==================== BOOKING STEPS ==================== */
.step-number {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-base);
}

.step.active .step-number {
    background: var(--accent) !important;
    border-color: transparent;
    box-shadow: var(--shadow-accent);
    transform: scale(1.1);
}

.step-label {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: all var(--transition-base);
}

.step.active .step-label {
    color: var(--text-primary) !important;
    font-weight: 600;
}

/* ==================== DATE & TIME BUTTONS ==================== */
.date-btn,
.time-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1.5px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 500;
    transition: all var(--transition-base);
    cursor: pointer;
}

.date-btn:hover,
.time-btn:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 183, 77, 0.4) !important;
    transform: translateY(-1px);
}

.date-btn.selected,
.time-btn.selected {
    background: var(--accent) !important;
    border-color: transparent !important;
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px) scale(1.02);
}

.date-btn:disabled,
.time-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==================== CONFIRMATION BOX ==================== */
.confirmation-box {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.confirmation-box h3 {
    color: var(--text-primary) !important;
    margin-bottom: 16px;
}

.confirmation-box p {
    color: var(--text-secondary) !important;
    margin: 8px 0;
}

/* ==================== SUCCESS/ERROR MESSAGES ==================== */
.success-message {
    background: rgba(16, 185, 129, 0.12) !important;
    border-left: 4px solid #10b981 !important;
    border-radius: 12px;
    padding: 24px;
    color: var(--text-primary) !important;
    animation: slideInLeft var(--transition-base) ease-out;
}

.success-message h2 {
    color: var(--text-primary) !important;
}

.error-message {
    background: rgba(239, 68, 68, 0.12) !important;
    border-left: 4px solid #ef4444 !important;
    border-radius: 12px;
    padding: 24px;
    color: var(--text-primary) !important;
    animation: slideInLeft var(--transition-base) ease-out;
}

/* ==================== LINKS ==================== */
.legal-content a,
.terms-content a {
    color: var(--accent) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
}

.legal-content a::after,
.terms-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.legal-content a:hover::after,
.terms-content a:hover::after {
    width: 100%;
}

/* ==================== ICONS ==================== */
.bx {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    transition: all var(--transition-base);
}

.bx:hover {
    transform: scale(1.1) rotate(5deg);
}

/* ==================== HERO SECTIONS ==================== */
.contact-hero h1,
.contact-hero p,
.services-hero h1,
.services-hero p,
.about-hero h1,
.about-hero p,
.legal-hero h1,
.legal-hero p,
.booking-hero h1,
.booking-hero p {
    color: white !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: fadeInUp var(--transition-slow) ease-out;
}

/* ==================== LOADING STATES ==================== */
.loading {
    color: var(--text-secondary) !important;
    animation: pulse 2s ease-in-out infinite;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .contact-form,
    .about-card,
    .legal-content,
    .booking-container {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .stat-box,
    .stat-card {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background: var(--accent) !important;
}

.border-accent {
    border-color: var(--accent) !important;
}
