/* Syreen — Custom overrides on Bootstrap 5 */

:root {
    --sy-dark: #00010a;
    --sy-navy: #0a1628;
    --sy-cta: #ff6b35;
    --sy-cta-hover: #e55a2b;
    --sy-blue: #0071c2;
    --sy-green: #008009;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
}

/* ── Navbar ── */
#mainNav {
    background: var(--sy-dark) !important;
    padding: 0.6rem 0;
    transition: box-shadow 0.3s;
}
#mainNav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff, #7cb8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: background 0.2s;
}
.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
}

/* ── CTA Button ── */
.btn-cta {
    background: var(--sy-cta);
    color: #fff;
    border: none;
    font-weight: 600;
}
.btn-cta:hover {
    background: var(--sy-cta-hover);
    color: #fff;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,1,10,0.7)),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover no-repeat;
    min-height: 580px;
    padding-top: 120px;
    display: flex;
    align-items: center;
}
.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
}
.hero .lead {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ── Search Box ── */
.search-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    overflow: hidden;
}
.search-tabs .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    border-radius: 0;
    border: none;
    opacity: 0.75;
    transition: all 0.2s;
}
.search-tabs .nav-link.active {
    background: rgba(0,0,0,0.2);
    opacity: 1;
}
.search-tabs .nav-link:hover:not(.active) {
    opacity: 0.9;
    background: rgba(0,0,0,0.1);
}
.search-tabs {
    background: var(--sy-cta);
}
.search-body {
    padding: 1.5rem;
}
.search-body label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}
.search-body .form-control,
.search-body .form-select {
    border: 2px solid #e1e7ef;
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
}
.search-body .form-control:focus,
.search-body .form-select:focus {
    border-color: var(--sy-blue);
    box-shadow: 0 0 0 3px rgba(0,113,194,0.1);
}
.btn-search {
    background: var(--sy-cta);
    color: #fff;
    font-weight: 700;
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
}
.btn-search:hover {
    background: var(--sy-cta-hover);
    color: #fff;
}

/* ── Section Headings ── */
.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #111827;
}
.section-sub {
    color: #6b7280;
    font-size: 1rem;
}

/* ── Destination Cards ── */
.dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background-size: cover;
    background-position: center;
}
.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.dest-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
}
.dest-card .dest-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.dest-card .dest-price {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ── Deal Cards ── */
.deal-card {
    border: 1px solid #e1e7ef;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
}
.deal-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.deal-card .deal-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.deal-card .deal-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sy-cta);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.deal-card .deal-body {
    padding: 1.25rem;
}
.deal-card .deal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}
.deal-card .deal-meta {
    font-size: 0.82rem;
    color: #6b7280;
}
.deal-card .deal-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}
.deal-card .deal-new {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--sy-green);
}

/* ── Feature Cards ── */
.feature-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e1e7ef;
    transition: all 0.3s;
    background: #fff;
}
.feature-card:hover {
    border-color: var(--sy-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}
.feature-card h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
}
.feature-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* ── Results hover ── */
.flight-result:hover, .hotel-result:hover {
    border-color: var(--sy-blue) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* ── Steps ── */
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sy-blue);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* ── Stats ── */
.stat-box {
    text-align: center;
    padding: 1.5rem;
}
.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--sy-blue);
}
.stat-label {
    font-size: 0.82rem;
    color: #6b7280;
}

/* ── Newsletter ── */
.newsletter-section {
    background: var(--sy-navy);
}
.newsletter-section h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}
.newsletter-input {
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}
.newsletter-input:focus {
    outline: 2px solid var(--sy-cta);
}
.newsletter-btn {
    background: var(--sy-cta);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
.newsletter-btn:hover {
    background: var(--sy-cta-hover);
    color: #fff;
}

/* ── Trust bar ── */
.trust-bar {
    border-top: 1px solid #e1e7ef;
    border-bottom: 1px solid #e1e7ef;
    padding: 1.25rem 0;
}
.trust-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    padding: 0.5rem 0;
}
.trust-item i {
    color: var(--sy-blue);
    font-size: 1.25rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--sy-dark);
}
.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: 2px;
}
.footer-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero { min-height: 500px; padding-top: 100px; }
    .dest-card { height: 200px; }
    .deal-card .deal-img { height: 160px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-radius: 8px; }
    .newsletter-btn { border-radius: 8px; }
}
