/* ===========================================
   THE HOLIDAY TODAY - Travel Website Styles
   =========================================== */

:root {
    --primary: #0a3d62;
    --primary-dark: #062c4a;
    --accent: #f39c12;
    --accent-dark: #d68910;
    --coral: #ff6b6b;
    --sand: #faf3e0;
    --text-dark: #1e272e;
    --text-light: #57606f;
    --white: #ffffff;
    --gray-light: #f5f6fa;
    --gray-border: #dfe4ea;
    --success: #20bf6b;
    --shadow-sm: 0 2px 8px rgba(10, 61, 98, 0.08);
    --shadow-md: 0 6px 24px rgba(10, 61, 98, 0.12);
    --shadow-lg: 0 12px 40px rgba(10, 61, 98, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   DISCLAIMER BAR (Google Ads Compliance)
   =========================================== */
.disclaimer-bar {
    background: #fff8e1;
    color: #5d4037;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffe082;
}

.disclaimer-bar strong {
    color: #e65100;
}

/* ===========================================
   TOP STRIP
   =========================================== */
.top-strip {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-strip a {
    color: var(--accent);
    font-weight: 600;
}

.top-strip a:hover {
    color: var(--white);
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.logo-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 24px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--primary);
    padding-left: 25px;
}

.call-btn {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
}

.call-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.call-btn::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
    background: none;
    border: none;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.85), rgba(6, 44, 74, 0.75)),
                url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover;
    color: var(--white);
    padding: 80px 0 120px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero h1 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* ===========================================
   FLIGHT SEARCH FORM
   =========================================== */
.flight-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-dark);
}

.form-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-tab {
    padding: 8px 18px;
    border: 1px solid var(--gray-border);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: var(--transition);
}

.form-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

.search-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.form-note a {
    color: var(--accent-dark);
    font-weight: 600;
}

/* ===========================================
   SECTIONS
   =========================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(243, 156, 18, 0.15);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   DEAL CARDS
   =========================================== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-border);
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.deal-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.deal-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--coral);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.deal-body {
    padding: 22px;
}

.deal-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary);
}

.deal-arrow {
    color: var(--accent);
    font-size: 18px;
}

.deal-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 18px;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-border);
}

.deal-price-label {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

.deal-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.deal-price small {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

.deal-btn {
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.deal-btn:hover {
    background: var(--accent);
}

/* ===========================================
   EXCLUSIVE DEALS BANNER
   =========================================== */
.exclusive-section {
    background: linear-gradient(135deg, var(--sand), #fff);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    grid-template-rows: 250px 250px;
}

.exclusive-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
}

.exclusive-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
}

.exclusive-card:hover {
    transform: scale(1.02);
}

.exclusive-card:nth-child(1) {
    grid-row: span 2;
}

.exclusive-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--white);
    z-index: 1;
}

.exclusive-content .discount {
    display: inline-block;
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.exclusive-content h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}

.exclusive-content p {
    font-size: 13px;
    opacity: 0.9;
}

/* ===========================================
   WHY CHOOSE US
   =========================================== */
.why-us {
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
}

.feature p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* ===========================================
   PAGE HEADER (for inner pages)
   =========================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 70px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 44px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 17px;
    opacity: 0.9;
}

.breadcrumb {
    margin-top: 14px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--accent);
}

/* ===========================================
   CONTENT PAGES
   =========================================== */
.content-section {
    padding: 70px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.content-wrapper h2 {
    font-size: 26px;
    margin: 30px 0 15px;
    color: var(--primary);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
}

.content-wrapper p {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 14px 0 20px 25px;
    color: var(--text-dark);
}

.content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-wrapper a {
    color: var(--accent-dark);
    font-weight: 500;
    text-decoration: underline;
}

.last-updated {
    background: var(--gray-light);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

.info-box {
    background: #fff8e1;
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-box p {
    margin-bottom: 0;
    font-size: 14.5px;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=800&q=80') center/cover;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 40px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-dark);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

/* ===========================================
   AIRLINE DEALS PAGE
   =========================================== */
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.airline-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.airline-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.airline-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 6px;
}

.airline-deal {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 600;
}

.airline-logo {
    width: 60px;
    height: 60px;
    background: var(--gray-light);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
}

/* SEO Content Block */
.seo-content {
    margin-top: 60px;
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.seo-content h2 {
    font-size: 26px;
    margin-bottom: 18px;
}

.seo-content h3 {
    font-size: 19px;
    color: var(--primary);
    margin: 24px 0 12px;
    font-family: 'Poppins', sans-serif;
}

.seo-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact a {
    color: var(--accent);
    font-weight: 600;
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.7;
    opacity: 0.85;
    margin-top: 30px;
    border-left: 3px solid var(--accent);
}

.disclaimer-box strong {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--accent);
}

/* ===========================================
   FLOATING CALL BUTTON
   =========================================== */
.floating-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.floating-call:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(243, 156, 18, 0.7); }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 968px) {
    .mobile-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--gray-border);
    }

    nav ul li a {
        padding: 14px 0;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .search-btn {
        grid-column: span 2;
        padding: 14px;
    }

    .exclusive-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }

    .exclusive-card:nth-child(1) {
        grid-row: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 280px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-wrapper {
        padding: 30px 22px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .search-btn {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 0 80px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .floating-call span {
        display: none;
    }

    .floating-call {
        padding: 14px;
    }
}
