/* Custom Styles & Utilities */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 58, 112, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Input Styles */
.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    /* Prevent iOS zoom */
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #0f172a;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #003A70;
    box-shadow: 0 0 0 3px rgba(0, 58, 112, 0.1);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    /* Light text for dark backgrounds */
    margin-bottom: 0.5rem;
}

/* Dark mode label override if needed */
.text-navy .form-label {
    color: #475569;
}

/* Persuasive Hover Effects (No Bouncing) */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 58, 112, 0.15);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* HEADER LEGIBILITY UTILITIES */
/* Logo Container for Dark Backgrounds - Modified for OneTKT: Transparent */
.logo-box-header {
    background-color: transparent;
    /* Removed white background as per user request */
    padding: 4px 0px;
    /* Reduced padding since no box */
    /* border-radius: 4px; */
    display: flex;
    align-items: center;
}

/* Nav Link colors */
.nav-link-scrolled {
    color: #003A70 !important;
    /* Navy */
}

.nav-link-scrolled:hover {
    color: #0052A3 !important;
    /* Lighter Navy */
}


.menu-btn-scrolled {
    color: #003A70 !important;
    /* Navy */
}

/* ========================================
   TICKET CARD (Bilhetes)
   ======================================== */
/* ========================================
   TICKET CARD (Bilhetes)
   ======================================== */
.ticket-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Separator Line (Dashed) */
.ticket-separator {
    position: relative;
    height: 1px;
    background: transparent;
    border-top: 2px dashed #cbd5e1;
    margin: 0;
    z-index: 10;
}

/* Semi-circle cutouts for separator */
.ticket-separator::before,
.ticket-separator::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background-color: #0f172a;
    /* Matches darker bg sections */
    border-radius: 50%;
    z-index: 20;
}

.ticket-separator::before {
    left: -10px;
}

.ticket-separator::after {
    right: -10px;
}

/* Background Icon */
.ticket-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #003A70;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.ticket-content {
    padding: 1.25rem;
    flex: 1;
}

@media (min-width: 768px) {
    .ticket-content {
        padding: 1.5rem;
    }
}

/* Top part (Destination) */
.ticket-destination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 20;
}

.ticket-location {
    text-align: center;
}

.ticket-country {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .ticket-country {
        font-size: 0.875rem;
    }
}

.ticket-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003A70;
    line-height: 1;
}

@media (min-width: 768px) {
    .ticket-code {
        font-size: 1.875rem;
    }
}

.ticket-time {
    font-size: 0.75rem;
    color: #475569;
    font-weight: 600;
    background: rgba(0, 56, 108, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .ticket-time {
        font-size: 0.875rem;
    }
}

.ticket-arrow {
    color: #ef4057;
    font-size: 1rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .ticket-arrow {
        font-size: 1.25rem;
    }
}

/* Bottom part (Details) */
.ticket-details {
    background: #f8fafc;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .ticket-details {
        padding: 1.5rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.ticket-detail {
    text-align: center;
}

.ticket-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.ticket-detail-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #003A70;
}