/* 
   TripJupiter - Modern Cosmic Travel Booking Design System
   Color Palette: Deep Midnight Navy, Celestial Purple, Starry Amber/Gold
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(15, 23, 42, 0.08);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    /* Accents & Gradients */
    --accent-gold: #0d9488;
    --accent-gold-hover: #0f766e;
    --accent-blue: #0284c7;
    --accent-purple: #6366f1;
    
    --gradient-primary: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    --gradient-accent: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
    --gradient-cosmic: linear-gradient(90deg, #0d9488 0%, #0284c7 50%, #6366f1 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    
    /* System Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-glow-gold: 0 0 25px rgba(13, 148, 136, 0.2);
    --shadow-glow-blue: 0 0 25px rgba(2, 132, 199, 0.2);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* 2. Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-accent);
    color: #060913;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #060913;
    box-shadow: var(--shadow-glow-gold);
    transform: translateY(-2px);
}

/* 3. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060913;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1010;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 4. Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 100px;
    background-image: 
        radial-gradient(circle at 50% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%), 
        url('assets/hero_beach.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: floatBadge 3.5s ease-in-out infinite;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(15, 23, 42, 0.35);
}

.hero p.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.25);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
/* Booking Area */
.booking-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SMALLER BOOKING TABS - DIRECTLY ON BACKGROUND */

.booking-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;

    /* No white background */
    background: transparent;
}


/* INDIVIDUAL BUTTON */

.tab-btn {
    width: 200px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: none;
    border-radius: 18px;

    background: rgba(15, 35, 50, 0.92);

    color: #ffffff;

    font-size: 1.1rem;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}


/* ACTIVE BUTTON */

.tab-btn.active {
    background: #ffffff;
    color: #315db7;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* HOVER */

.tab-btn:hover {
    transform: translateY(-3px);
}


/* ICON */

.tab-icon {
    font-size: 1.5rem;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.05);
}

.tab-btn.active {
    color: #ffffff;
    background: var(--gradient-accent);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.22);
    transform: translateY(-1px);
}
/* Coming Soon Panels */
.coming-soon-panel {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.coming-soon-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.coming-soon-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.coming-soon-panel p {
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 14px;
}

.coming-soon-panel span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
}


/* 5. Booking Search Container */
.booking-container {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px;
    position: relative;
    z-index: 10;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    color: #0f172a;
}

.booking-container:hover {
    border-color: rgba(13, 148, 136, 0.25);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18), var(--shadow-glow-gold);
}

/* Tabs styling */
.booking-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
    color: #ffffff;
    background: var(--gradient-accent);
}

/* Forms layout */
.booking-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.booking-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

/* Specific flight search customization */
.flight-options {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    outline: none;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.radio-label input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--accent-gold);
}

.radio-label input[type="radio"]:checked {
    border-color: var(--accent-gold);
}

.radio-label input[type="radio"]:checked::before {
    transform: scale(1);
}

.radio-label input[type="radio"]:checked + span {
    color: var(--text-primary);
}

/* Input groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-field {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    width: 100%;
    transition: var(--transition-fast);
}

.input-field:focus {
    border-color: var(--accent-blue);
    background: rgba(15, 23, 42, 0.05);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.1);
}

/* Select icon wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.7rem;
    color: var(--text-secondary);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Disabled styling */
.input-field:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-style: dashed;
}

/* Error/Success inputs */
.input-field.error-state {
    border-color: var(--error);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.input-field.success-state {
    border-color: var(--success);
}

/* Search results styles */
.search-results-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-results-modal.active {
    display: flex;
}

.results-content {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.results-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.results-close:hover {
    color: var(--text-primary);
}

.results-body {
    padding: 32px;
    overflow-y: auto;
    flex-grow: 1;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.result-card:hover {
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
}

.result-main {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
}

.result-icon {
    font-size: 1.8rem;
    color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.1);
    padding: 12px;
    border-radius: var(--radius-md);
}

.result-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.result-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.result-pricing {
    text-align: right;
    min-width: 120px;
}

.result-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.result-tax {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* 6. Popular Destinations */
.destinations {
    background: var(--bg-secondary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dest-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: var(--shadow-lg);
}

.dest-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-card:hover .dest-image {
    transform: scale(1.08);
}

.dest-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.dest-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dest-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-rating {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dest-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.dest-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.dest-price {
    font-family: var(--font-heading);
}

.dest-price .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
}

.dest-price .amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.dest-price .amount span {
    color: var(--accent-gold);
}



/* 8. Why Choose Us */
.why-us {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-flex;
    color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.08);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    transform: rotateY(180deg);
    color: var(--accent-gold);
    background: rgba(255, 183, 3, 0.08);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 9. About Us */
.about {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.stat-num span {
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, rgba(6, 9, 19, 0.9) 0%, rgba(6, 9, 19, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.about-quote {
    font-style: italic;
    font-size: 1.125rem;
    color: #ffffff;
    border-left: 3px solid var(--accent-blue);
    padding-left: 20px;
}

.about-quote span {
    display: block;
    font-size: 0.85rem;
    font-style: normal;
    color: #e2e8f0;
    margin-top: 8px;
    font-weight: 600;
}

/* Validation styling and notifications */
.form-notification {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

.form-notification.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.form-notification.active {
    display: flex;
}

.form-notification-icon {
    font-size: 1.25rem;
}

/* 11. Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-col.newsletter p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form .input-field {
    border-radius: var(--radius-full);
    padding-left: 20px;
}

.newsletter-form .btn-primary {
    padding: 12px 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* 12. Responsive Breakpoints */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-col.newsletter {
        grid-column: span 3;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        border-left: 1px solid var(--card-border);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        z-index: 1005;
        transition: var(--transition-smooth);
        padding: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none; /* Hide desktop specific header triggers */
    }
    
    .nav-menu .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        margin-top: 20px;
    }
    
    .hero {
        text-align: center;
        padding-top: 140px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p.hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .booking-container {
        padding: 20px 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .deal-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .deal-image {
        height: 200px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        height: 320px;
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-col.newsletter {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .booking-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand, .footer-col.newsletter {
        grid-column: span 1;
    }
}

/* 13. Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 35px rgba(217, 119, 6, 0.15), 0 20px 40px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    z-index: 9999;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(120px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.toast-header h4 {
    font-size: 1.15rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.toast-header svg {
    color: var(--success);
}

.toast-close {
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1.6rem;
    line-height: 1;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.tripcom-search-frame,
.booking-pane iframe{
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}
/* Cruise & Local Tickets panels */
.coming-soon-panel {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--card-border);
}

.coming-soon-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.coming-soon-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.coming-soon-panel p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.coming-soon-panel span {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 600px) {

    .booking-tabs {
        width: calc(100% - 20px);
        justify-content: flex-start;
        overflow-x: auto;
        border-radius: 18px;
        scrollbar-width: none;
    }

    .booking-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

}
/* =========================================
   TRIP JUPITER BOOKING TABS
========================================= */

.booking-wrapper {
    width: 100%;
    max-width: 1560px;

    margin: 20px auto 0;

    padding: 0 40px;
}


/* 4 BUTTONS */

.booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}


/* INDIVIDUAL TAB */

.tab-btn {
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    border: none;
    border-radius: 24px;

    background: rgba(15, 35, 50, 0.92);

    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* HOVER */

.tab-btn:hover {
    transform: translateY(-4px);
    background: rgba(25, 50, 68, 1);
}


/* ACTIVE TAB */

.tab-btn.active {
    background: #ffffff;
    color: #315db7;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.2);
}


/* ICON */

.tab-icon {
    font-size: 2rem;
    line-height: 1;
}


/* =========================================
   MAIN WHITE PANEL
========================================= */

.booking-container {
    background: rgba(255, 255, 255, 0.97);

    border-radius: 30px;

    padding: 45px;

    min-height: 270px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.2);
}


/* HIDE ALL PANES */

.booking-pane {
    display: none;
}


/* SHOW ACTIVE PANE */

.booking-pane.active {
    display: block;
}


/* =========================================
   TRIP.COM IFRAME
========================================= */

.trip-iframe-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
}


/* DESKTOP */

.trip-iframe-wrapper iframe {
    display: block;

    width: 100%;
    height: 210px;

    border: none;
}


/* =========================================
   FINAL TRIP JUPITER HERO / BOOKING FIX
========================================= */

/* Move booking area upward */
.booking-wrapper {
    margin-top: 5px;
}

/* Smaller 4 buttons */
.booking-tabs {
    gap: 12px;
    margin-bottom: 18px;
}

.tab-btn {
    height: 55px;
    min-height: 55px;
    padding: 8px 12px;
    border-radius: 15px;
    gap: 8px;
    font-size: 0.95rem;
}

.tab-icon {
    font-size: 1.25rem;
}

/* Smaller white search panel */
.booking-container {
    padding: 24px;
    min-height: 0;
}

/* Pull the whole hero content upward */
.hero {
    padding-top: 90px;
    padding-bottom: 30px;
}

.hero-content {
    margin-bottom: 15px;
}

.hero h1 {
    margin-bottom: 12px;
}

.hero p.hero-desc {
    margin-bottom: 18px;
}

/* Desktop: make the whole booking area fit better */
@media (min-width: 901px) {
    .booking-wrapper {
        padding: 0 30px;
    }

    .booking-tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-container {
        padding: 24px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .booking-tabs {
        gap: 10px;
        margin-bottom: 14px;
    }

    .tab-btn {
        height: 55px;
        min-height: 55px;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .tab-icon {
        font-size: 1.2rem;
    }
}
.logo .text-gradient {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #0f172a;
    color: #0f172a;
}
/* =========================================
   TRIP.COM - MOBILE
========================================= */

@media (max-width: 600px) {

    .trip-iframe-wrapper {
        width: 100%;
        height: 230px;
        overflow: hidden;
        position: relative;
    }

    .trip-iframe-wrapper iframe {
        width: 100% !important;
        height: 230px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        border: 0;
        display: block;
    }

    .booking-container {
        overflow: hidden;
    }

    .booking-pane {
        width: 100%;
        overflow: hidden;
    }
}
/* =========================================
   TRIP JUPITER - MOBILE BOOKING FIX
========================================= */

@media (max-width: 600px) {

    .booking-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
        margin: 5px auto 0;
        overflow: visible;
    }

    .booking-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 15px;
        overflow: visible;
    }

    .tab-btn {
        width: 100%;
        min-width: 0;
        height: 52px;
        min-height: 52px;
        padding: 6px 8px;
        font-size: 0.82rem;
        border-radius: 13px;
        gap: 6px;
        white-space: nowrap;
    }

    .tab-icon {
        font-size: 1.1rem;
    }

    .booking-container {
        width: 100%;
        max-width: 100%;
        padding: 18px 10px;
        min-height: 0;
        border-radius: 18px;
        overflow: visible;
    }

    .booking-pane {
        width: 100%;
        overflow: visible;
    }

    .trip-iframe-wrapper {
        width: 100%;
        min-width: 0;
        height: 230px;
        overflow: hidden;
        position: relative;
    }

    .trip-iframe-wrapper iframe {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: 230px !important;
        border: 0;
        display: block;
    }
}

/* =========================================
   TRIPJUPITER HOMEPAGE - COMPACT HERO
   ========================================= */

.hero {
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero .container {
    padding-top: 0;
    padding-bottom: 0;
}

.booking-wrapper {
    margin-top: 0;
}
/* Floating Latest Travel News heading */

.news-heading h2 {
    animation: newsFloat 3s ease-in-out infinite;
}

@keyframes newsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* =========================================
   TRIP JUPITER - EMERGENCY FINAL FIX
   ========================================= */

/* PAGE BACKGROUND */
html,
body {
    background: #ffffff;
}

/* =========================================
   HERO = BEACH IMAGE ONLY
   ========================================= */

.hero {
    position: relative;
    background-image:
        radial-gradient(
            circle at 50% 20%,
            rgba(13, 148, 136, 0.15) 0%,
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.6) 100%
        ),
        url('assets/hero_beach.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;

    min-height: auto;

    padding-top: 90px;
    padding-bottom: 45px;

    overflow: hidden;
}


/* =========================================
   BOOKING TABS
   ========================================= */

.booking-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 24px;

    padding: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);

    color: #0f172a;
}


/* FOUR BUTTONS */
.booking-container .booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    width: 100%;

    margin-bottom: 18px;

    padding: 0;

    border: none;

    background: transparent;
}


/* BUTTONS */
.booking-container .tab-btn {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 8px 12px;

    border: none;
    border-radius: 14px;

    background: rgba(15, 35, 50, 0.92);

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: 0.9rem;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.booking-container .tab-btn:hover {
    transform: translateY(-2px);
    background: #e6f7f5;
    color: #0f172a;
}

.booking-container .tab-btn.active {
    background: var(--gradient-accent);
    color: #ffffff;

    box-shadow:
        0 6px 18px rgba(13, 148, 136, 0.25);
}


/* =========================================
   LATEST TRAVEL NEWS
   ========================================= */

/*
   This section must NOT inherit the beach image.
*/

.travel-news-section {
    position: relative;

    width: 100%;

    background: #ffffff;

    background-image: none;

    color: #0f172a;

    margin: 0;

    padding-top: 35px;
    padding-bottom: 60px;
}


/* Heading */
.travel-news-section .news-heading {
    text-align: center;

    margin: 0 auto 28px;
}


/* Floating heading */
.travel-news-section .news-heading h2 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin: 0;

    padding: 10px 24px;

    border-radius: 999px;

    background: #315db7;

    color: #ffffff;

    font-size: 1.25rem;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(49, 93, 183, 0.25);

    animation: travelNewsFloat 3s ease-in-out infinite;
}


/* Stay updated line */
.travel-news-section .news-heading p {
    margin: 12px auto 0;

    color: #617083;

    font-size: 0.9rem;
}


/* Floating animation */
@keyframes travelNewsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* =========================================
   EVERYTHING AFTER HERO
   MUST HAVE ITS OWN BACKGROUND
   ========================================= */

.destinations,
.deals,
.why-us,
.about,
.contact,
.footer {
    background-image: none !important;
}


/* Popular destinations */
.destinations {
    background: #f8fafc !important;
}


/* Travel deals */
.deals {
    background: #ffffff !important;
}


/* Why TripJupiter */
.why-us {
    background: #f8fafc !important;
}


/* About */
.about {
    background: #ffffff !important;
}


/* Contact */
.contact {
    background: #f8fafc !important;
}


/* Footer */
.footer {
    background: #ffffff !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .hero {
        padding-top: 85px;
        padding-bottom: 30px;
    }

    .booking-container {
        padding: 18px 12px;
        border-radius: 18px;
    }

    .booking-container .booking-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 9px;

        margin-bottom: 14px;
    }

    .booking-container .tab-btn {
        height: 50px;

        font-size: 0.78rem;

        padding: 6px;

        border-radius: 12px;
    }

    .travel-news-section {
        padding-top: 28px;
        padding-bottom: 45px;
    }

    .travel-news-section .news-heading h2 {
        font-size: 1.05rem;
        padding: 8px 18px;
    }

    .travel-news-section .news-heading p {
        font-size: 0.82rem;
        padding: 0 15px;
    }
}
/* =========================================
   FINAL FIX - HERO MUST END BEFORE NEWS
   ========================================= */

body {
    background: #ffffff !important;
}

/* Beach image ONLY belongs to hero */
.hero {
    background-image:
        radial-gradient(
            circle at 50% 20%,
            rgba(13, 148, 136, 0.15) 0%,
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.6) 100%
        ),
        url('assets/hero_beach.jpg') !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    padding-bottom: 40px !important;
}


/* =========================================
   NEWS SECTION = COMPLETELY OUTSIDE BEACH
   ========================================= */

.travel-news-section {
    background: #ffffff !important;
    background-image: none !important;

    margin: 0 !important;
    padding-top: 35px !important;
    padding-bottom: 60px !important;

    position: relative;
    z-index: 2;
}


/* News heading */
.travel-news-section .news-heading {
    text-align: center;
    margin: 0 auto 28px;
}


/* Floating Latest Travel News button */
.travel-news-section .news-heading h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #315db7 !important;
    color: #ffffff !important;

    padding: 10px 24px;
    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(49, 93, 183, 0.25);

    animation: travelNewsFloat 3s ease-in-out infinite;
}


/* Stay updated text */
.travel-news-section .news-heading p {
    color: #617083 !important;
    margin-top: 12px;
}


/* Floating animation */
@keyframes travelNewsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* =========================================
   ALL SECTIONS AFTER NEWS = NO BEACH IMAGE
   ========================================= */

.destinations,
.deals,
.why-us,
.about,
.contact,
.footer {
    background-image: none !important;
}


/* Clean alternating backgrounds */
.destinations,
.why-us,
.contact {
    background-color: #f8fafc !important;
}

.deals,
.about,
.footer {
    background-color: #ffffff !important;
}


/* IMPORTANT:
   Do not let a parent/background show through */
.travel-news-section,
.destinations,
.deals,
.why-us,
.about,
.contact,
.footer {
    position: relative;
    z-index: 1;
}
/* =========================================
   TRIPJUPITER - FINAL NEWS POSITION FIX
   ========================================= */

/* Hero ends after the booking/search area */
.hero {
    background-image:
        radial-gradient(
            circle at 50% 20%,
            rgba(13, 148, 136, 0.15) 0%,
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.6) 100%
        ),
        url('assets/hero_beach.jpg') !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    /* ONLY the hero content */
    padding-bottom: 25px !important;
}


/* News section itself is WHITE */
.travel-news-section {
    background: #ffffff !important;
    background-image: none !important;

    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 60px !important;

    position: relative;
}


/*
   Pull ONLY the heading + description upward.
   This makes them appear on the beach background,
   while the news cards remain in the white section.
*/
.travel-news-section .news-heading {
    position: relative;
    margin-top: -85px !important;
    margin-bottom: 28px !important;
    z-index: 5;
}


/* Latest Travel News button */
.travel-news-section .news-heading h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 24px;

    background: #315db7 !important;
    color: #ffffff !important;

    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    animation: travelNewsFloat 3s ease-in-out infinite;
}


/* Stay updated text stays on beach background */
.travel-news-section .news-heading p {
    color: #ffffff !important;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

    margin-top: 12px !important;
}


/* Floating animation */
@keyframes travelNewsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* News cards remain completely inside white section */
.travel-news-section .news-grid,
.travel-news-section .news-cards,
.travel-news-section .news-container {
    position: relative;
    z-index: 6;
}


/* Everything after news stays clean */
.destinations,
.deals,
.why-us,
.about,
.contact,
.footer {
    background-image: none !important;
}
/* =========================================
   FINAL FIX - LATEST TRAVEL NEWS
========================================= */

.travel-news-section {
    width: 100%;
    margin: 0;
    padding: 28px 0 60px;
    background: #ffffff;
    color: #0f172a;
}

.news-heading {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
    margin: 0 auto 28px;
}

.news-heading h2 {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0;
    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(49, 93, 183, 0.10);
    border: 1px solid rgba(49, 93, 183, 0.25);

    color: #315db7 !important;

    font-size: 1.25rem;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    animation: travelNewsFloat 3s ease-in-out infinite;
}

.news-heading p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    max-width: 650px;
    margin: 12px auto 0;

    color: #617083 !important;

    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes travelNewsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}
/* =========================================
   FINAL TRIPJUPITER HERO + NEWS FIX
   ========================================= */

/* Make the blue background contain the COMPLETE
   buttons + search panel */
.hero {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 80px !important;
    overflow: visible !important;
}

/* Keep the booking/search area completely inside hero */
.booking-wrapper {
    position: relative !important;
    z-index: 5 !important;
}

/* Make sure the news section starts AFTER the hero */
.travel-news-section {
    position: relative !important;
    z-index: 10 !important;
    background: #ffffff !important;
    margin-top: 0 !important;
    padding-top: 35px !important;
}

/* Show the Latest Travel News heading */
.news-heading {
    display: block !important;
    position: relative !important;
    z-index: 20 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

/* Heading */
.news-heading h2 {
    display: block !important;
    margin: 0 0 10px !important;
}

/* Small line underneath */
.news-heading p {
    display: block !important;
    margin: 0 !important;
}

/* News cards stay BELOW the heading */
.travel-news-section .destinations-grid {
    position: relative !important;
    z-index: 10 !important;
}
/* =========================================
   TRIPJUPITER - FINAL HERO & NEWS ADJUSTMENT
   ========================================= */

/* BLUE HERO MUST CONTAIN BUTTONS + COMPLETE SEARCH PANEL */
.hero {
    height: auto !important;
    min-height: 650px !important;
    padding-bottom: 120px !important;
    overflow: visible !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* Keep booking area inside the blue hero */
.booking-wrapper {
    position: relative !important;
    z-index: 5 !important;
    margin-bottom: 0 !important;
}

/* NEWS SECTION STARTS CLEANLY AFTER BLUE HERO */
.travel-news-section {
    position: relative !important;
    background: #ffffff !important;
    margin: 0 !important;
    padding: 45px 0 60px !important;
    z-index: 10 !important;
}

/* SMALL, CENTERED LATEST TRAVEL NEWS BUTTON */
.news-heading h2 {
    display: table !important;
    width: auto !important;
    margin: 0 auto 12px !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    background: #5369d8 !important;
    color: #ffffff !important;
    text-align: center !important;
}

/* SLIGHT UP/DOWN MOVEMENT */
.news-heading h2 {
    animation: newsFloat 2.5s ease-in-out infinite !important;
}

@keyframes newsFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* CENTER THE "STAY UPDATED..." SENTENCE */
.news-heading p {
    display: block !important;
    width: 100% !important;
    margin: 0 auto 30px !important;
    text-align: center !important;
    color: #555555 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* KEEP NEWS HEADING ABOVE CARDS */
.news-heading {
    text-align: center !important;
    position: relative !important;
    z-index: 20 !important;
}
.news-heading {
    transform: translateY(-6px);
}
/* ===== LATEST TRAVEL NEWS FINAL POSITION & TEXT FIX ===== */

.travel-news-section {
    position: relative;
    margin-top: -20px;
}

.news-heading {
    text-align: center;
    position: relative;
    top: -5px;
}

.news-heading h2 {
    display: inline-block;
    margin: 0 auto 8px;
}

.news-heading p {
    color: #333333 !important;
    text-align: center !important;
    margin: 0 auto;
    max-width: 700px;
}
/* =========================================
   FINAL - TRAVEL NEWS HEADING ABOVE CARDS
   ========================================= */

.travel-news-section {
    background: transparent !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Move heading slightly upward */
.travel-news-section .news-heading {
    position: relative;
    top: -18px;
    margin-bottom: 5px !important;
}

/* Heading */
.travel-news-section .news-heading h2 {
    margin-bottom: 6px !important;
}

/* Subtitle */
.travel-news-section .news-heading p {
    margin-top: 0 !important;
    color: #333333 !important;
}

/* White background ONLY behind the news cards */
.travel-news-section > .container:last-child {
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 50px;
}
/* =========================================
   AIRPORT TRANSFERS PANEL
   ========================================= */

.transfer-panel {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}

.transfer-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.transfer-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.transfer-panel p {
    max-width: 500px;
    margin-bottom: 20px;
    color: #475569;
    font-size: 0.95rem;
}

.transfer-btn {
    padding: 12px 24px;
    text-decoration: none;
}
/* =========================================
   NEWS ARTICLE PAGE - FINAL SIZE FIX
   ========================================= */

/* Keep article content below the fixed navbar */
.news-article-page {
    padding-top: 120px;
}

/* Make the article image smaller and controlled */
.news-article-image {
    width: 100%;
    max-width: 850px;
    margin: 25px auto 30px;
}

.news-article-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 18px;
}

/* Keep article title fully visible */
.news-article-title {
    margin-top: 20px;
    line-height: 1.15;
}