/*
Theme Name: SkyJatra
Theme URI: https://example.com/skyjatra
Author: Your Name
Author URI: https://example.com
Description: SkyJatra WordPress Theme with Duffel API Integration.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: skyjatra
*/

html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #111827;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    transition: all 0.25s ease;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: block;
}

/* =========================================
   Header
========================================= */
.skyjatra-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.skyjatra-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.skyjatra-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.skyjatra-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    min-width: 0;
}

.skyjatra-logo-fallback,
.custom-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.skyjatra-brand-text {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: #111827;
    white-space: nowrap;
}

.skyjatra-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.skyjatra-currency-form {
    margin: 0;
}

.skyjatra-currency-select {
    min-width: 74px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    outline: none;
}

.skyjatra-currency-select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.skyjatra-mobile-support {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #163ea8;
    background: #eef4ff;
    border: 1px solid #dce7ff;
    flex-shrink: 0;
}

.skyjatra-mobile-support svg {
    width: 18px;
    height: 18px;
}

.skyjatra-header-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    background: #0d2f98;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border: 0;
}

.skyjatra-header-login-btn:hover {
    background: #0a2476;
}

.skyjatra-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid #d7e2ff;
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.skyjatra-menu-toggle span {
    width: 16px;
    height: 2px;
    background: #163ea8;
    border-radius: 999px;
    display: block;
}

.skyjatra-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skyjatra-header-nav-mobile {
    display: none;
}

.skyjatra-header-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.skyjatra-header-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-1px);
}

.skyjatra-menu-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-menu-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.skyjatra-menu-text {
    display: inline-block;
    line-height: 1;
    color: #111827;
}

/* =========================================
   Footer
========================================= */
.skyjatra-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 28px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}

.skyjatra-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 10px;
}

.skyjatra-footer-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    color: #111827;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03);
    white-space: nowrap;
}

.skyjatra-footer-item:hover {
    transform: translateY(-1px);
    background: #f9fafb;
}

.skyjatra-footer-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-footer-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.skyjatra-footer-text {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    color: #111827;
}

.skyjatra-footer-copy {
    max-width: 1240px;
    margin: 10px auto 0;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

/* =========================================
   Colorful Icons
========================================= */
.skyjatra-icon-home {
    color: #2563eb;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
}

.skyjatra-icon-booking {
    color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
}

.skyjatra-icon-support {
    color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
}

.skyjatra-icon-account {
    color: #8b5cf6;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-radius: 50%;
}

/* =========================================
   Strong fallback against default WP link styling
========================================= */
.skyjatra-header a,
.skyjatra-footer a,
.skyjatra-header a:visited,
.skyjatra-footer a:visited,
.skyjatra-header a:hover,
.skyjatra-footer a:hover,
.skyjatra-header a:focus,
.skyjatra-footer a:focus {
    text-decoration: none;
}

.skyjatra-header-item,
.skyjatra-header-item span,
.skyjatra-footer-item,
.skyjatra-footer-item span {
    color: #111827;
}

.skyjatra-header-item .skyjatra-icon-home,
.skyjatra-footer-item .skyjatra-icon-home {
    color: #2563eb;
}

.skyjatra-header-item .skyjatra-icon-booking,
.skyjatra-footer-item .skyjatra-icon-booking {
    color: #f59e0b;
}

.skyjatra-header-item .skyjatra-icon-support,
.skyjatra-footer-item .skyjatra-icon-support {
    color: #10b981;
}

.skyjatra-header-item .skyjatra-icon-account,
.skyjatra-footer-item .skyjatra-icon-account {
    color: #8b5cf6;
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 991px) {
    .skyjatra-header-inner {
        padding: 10px 12px;
        gap: 10px;
    }

    .skyjatra-brand-text {
        font-size: 18px;
    }

    .skyjatra-header-nav-desktop {
        gap: 6px;
    }

    .skyjatra-header-item {
        padding: 0 8px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .skyjatra-header-inner {
        padding: 10px 12px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto auto auto;
        align-items: center;
        gap: 8px;
    }

    .skyjatra-logo-fallback,
    .custom-logo {
        max-height: 32px;
    }

    .skyjatra-brand-text {
        font-size: 16px;
    }

    .skyjatra-header-nav-desktop {
        display: none;
    }

    .skyjatra-currency-form {
        order: 2;
    }

    .skyjatra-currency-select {
        min-width: 58px;
        width: 58px;
        height: 36px;
        padding: 0 6px;
        font-size: 12px;
    }

    .skyjatra-mobile-support {
        display: inline-flex;
        order: 3;
    }

    .skyjatra-header-login-btn {
        order: 4;
        min-width: 84px;
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 12px;
    }

    .skyjatra-menu-toggle {
        display: inline-flex;
        order: 5;
    }

    .skyjatra-header-nav-mobile {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px;
    }

    .skyjatra-header-nav-mobile.active {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .skyjatra-header-nav-mobile .skyjatra-header-item {
        width: 100%;
        justify-content: flex-start;
        min-height: 42px;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 13px;
    }

    .skyjatra-footer {
        position: sticky;
        bottom: 0;
        z-index: 998;
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.06);
    }

    .skyjatra-footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .skyjatra-footer-item {
        min-height: 42px;
        padding: 0 8px;
        gap: 5px;
        border-radius: 10px;
    }

    .skyjatra-footer-icon {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
    }

    .skyjatra-footer-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .skyjatra-footer-text {
        font-size: 11px;
    }

    .skyjatra-footer-copy {
        display: none;
    }
}

/* =========================================
   Header colorful icons
========================================= */

.skyjatra-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.skyjatra-header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.skyjatra-header-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe4f0;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all .22s ease;
}

.skyjatra-header-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    border-color: #bfdbfe;
}

.skyjatra-menu-text {
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.sj-nav-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.skyjatra-currency-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe4f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.skyjatra-currency-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skyjatra-currency-form {
    margin: 0;
}

.skyjatra-currency-select {
    border: 0;
    background: transparent;
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    min-height: 38px;
    cursor: pointer;
    padding: 0 8px 0 0;
}

.skyjatra-currency-select:hover {
    color: #0f172a;
}

@media (max-width: 991px) {
    .skyjatra-header-inner {
        gap: 14px;
    }

    .skyjatra-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .skyjatra-header-nav {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .skyjatra-header-item,
    .skyjatra-currency-wrap {
        min-height: 38px;
        padding: 0 12px;
    }

    .skyjatra-menu-text {
        font-size: 13px;
    }

    .sj-nav-icon {
        width: 17px;
        height: 17px;
    }
}

/* =========================================
   Footer colorful icon links - centered
========================================= */

.skyjatra-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 50px;
    width: 100%;
}

.skyjatra-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.skyjatra-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.skyjatra-footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe4f0;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all .22s ease;
}

.skyjatra-footer-link:hover {
    transform: translateY(-1px);
    border-color: #bfdbfe;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.skyjatra-footer-link span {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.skyjatra-footer-link .sj-nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

.skyjatra-footer-copy {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .skyjatra-footer {
        margin-top: 35px;
    }

    .skyjatra-footer-inner {
        padding: 16px 12px 90px;
        gap: 12px;
    }

    .skyjatra-footer-links {
        justify-content: center;
        gap: 8px;
    }

    .skyjatra-footer-link {
        min-height: 38px;
        padding: 0 12px;
    }

    .skyjatra-footer-link span {
        font-size: 13px;
    }

    .skyjatra-footer-link .sj-nav-icon {
        width: 17px;
        height: 17px;
    }

    .skyjatra-footer-copy {
        font-size: 13px;
    }
}

/* =========================================
   Global Reset
========================================= */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #111827;
    overflow-x: hidden;
    font-size: 14px; /* Set default smaller font size for readability */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    transition: all 0.25s ease;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: block;
}

/* =========================================
   Header
========================================= */
.skyjatra-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.skyjatra-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.skyjatra-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.skyjatra-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    min-width: 0;
}

.skyjatra-logo-fallback,
.custom-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.skyjatra-brand-text {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: #111827;
    white-space: nowrap;
}

.skyjatra-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.skyjatra-currency-form {
    margin: 0;
}

.skyjatra-currency-select {
    min-width: 74px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    outline: none;
}

.skyjatra-currency-select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.skyjatra-mobile-support {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #163ea8;
    background: #eef4ff;
    border: 1px solid #dce7ff;
    flex-shrink: 0;
}

.skyjatra-mobile-support svg {
    width: 18px;
    height: 18px;
}

.skyjatra-header-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    background: #0d2f98;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border: 0;
}

.skyjatra-header-login-btn:hover {
    background: #0a2476;
}

.skyjatra-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid #d7e2ff;
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.skyjatra-menu-toggle span {
    width: 16px;
    height: 2px;
    background: #163ea8;
    border-radius: 999px;
    display: block;
}

.skyjatra-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skyjatra-header-nav-mobile {
    display: none;
}

.skyjatra-header-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.skyjatra-header-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-1px);
}

.skyjatra-menu-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-menu-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.skyjatra-menu-text {
    display: inline-block;
    line-height: 1;
    color: #111827;
}

/* =========================================
   Footer
========================================= */
.skyjatra-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 28px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}

.skyjatra-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 10px;
}

.skyjatra-footer-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    color: #111827;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03);
    white-space: nowrap;
}

.skyjatra-footer-item:hover {
    transform: translateY(-1px);
    background: #f9fafb;
}

.skyjatra-footer-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-footer-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.skyjatra-footer-text {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    color: #111827;
}

.skyjatra-footer-copy {
    max-width: 1240px;
    margin: 10px auto 0;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

/* =========================================
   Global Reset
========================================= */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #111827;
    overflow-x: hidden;
    font-size: 14px; /* Default font size */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    transition: all 0.25s ease;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: block;
}

/* =========================================
   Header
========================================= */
.skyjatra-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.skyjatra-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.skyjatra-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.skyjatra-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    min-width: 0;
}

.skyjatra-logo-fallback,
.custom-logo {
    max-height: 38px;
    width: auto;
    display: block;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.skyjatra-brand-text {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    color: #111827;
    white-space: nowrap;
}

.skyjatra-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.skyjatra-currency-form {
    margin: 0;
}

.skyjatra-currency-select {
    min-width: 74px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    outline: none;
}

.skyjatra-currency-select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.skyjatra-mobile-support {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #163ea8;
    background: #eef4ff;
    border: 1px solid #dce7ff;
    flex-shrink: 0;
}

.skyjatra-mobile-support svg {
    width: 18px;
    height: 18px;
}

.skyjatra-header-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    background: #0d2f98;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border: 0;
}

.skyjatra-header-login-btn:hover {
    background: #0a2476;
}

.skyjatra-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid #d7e2ff;
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.skyjatra-menu-toggle span {
    width: 16px;
    height: 2px;
    background: #163ea8;
    border-radius: 999px;
    display: block;
}

.skyjatra-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skyjatra-header-nav-mobile {
    display: none;
}

.skyjatra-header-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.skyjatra-header-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-1px);
}

.skyjatra-menu-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-menu-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.skyjatra-menu-text {
    display: inline-block;
    line-height: 1;
    color: #111827;
}

/* =========================================
   Footer
========================================= */
.skyjatra-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 28px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}

.skyjatra-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 10px;
}

.skyjatra-footer-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    color: #111827;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03);
    white-space: nowrap;
}

.skyjatra-footer-item:hover {
    transform: translateY(-1px);
    background: #f9fafb;
}

.skyjatra-footer-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-footer-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.skyjatra-footer-text {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    color: #111827;
}

.skyjatra-footer-copy {
    max-width: 1240px;
    margin: 10px auto 0;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

/* =========================================================
   SkyJatra Header + Footer Override
   Add this at the very bottom of style.css
========================================================= */

:root {
    --sj-brand: #0d2f98;
    --sj-brand-dark: #08246f;
    --sj-brand-soft: #eef4ff;
    --sj-border-soft: #e5ebf5;
    --sj-text-main: #0f172a;
    --sj-text-muted: #64748b;
    --sj-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
    --sj-shadow-strong: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body {
    background: #f7f9fc;
}

.admin-bar .skyjatra-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .skyjatra-header {
        top: 46px;
    }
}

.skyjatra-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sj-border-soft);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.skyjatra-header-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 18px;
    position: relative;
}

.skyjatra-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.skyjatra-brand,
.skyjatra-logo-link,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.skyjatra-logo-link img,
.custom-logo,
.skyjatra-logo-fallback {
    max-height: 42px;
    width: auto;
    display: block;
}

.skyjatra-brand-text {
    display: none !important;
}

.skyjatra-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sj-ui-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.skyjatra-header-icon-btn,
.skyjatra-menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: none;
    background: var(--sj-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(13, 47, 152, 0.2);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    cursor: pointer;
    padding: 0;
}

.skyjatra-header-icon-btn:hover,
.skyjatra-menu-toggle:hover,
.skyjatra-header-login-btn:hover {
    transform: translateY(-1px);
    background: var(--sj-brand-dark);
}

.skyjatra-header-login-btn {
    min-width: 148px;
    height: 48px;
    padding: 0 22px;
    border-radius: 16px;
    border: none;
    background: var(--sj-brand);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 10px 24px rgba(13, 47, 152, 0.2);
}

.skyjatra-header-drawer {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    width: min(420px, calc(100vw - 36px));
    z-index: 30;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
}

.skyjatra-header-drawer.is-open {
    opacity: 1;
    transform: translateY(0);
}

.skyjatra-header-drawer-inner {
    background: #ffffff;
    border: 1px solid var(--sj-border-soft);
    border-radius: 24px;
    box-shadow: var(--sj-shadow-strong);
    padding: 16px;
}

.skyjatra-drawer-currency {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fbff;
    border: 1px solid #dce7fb;
    border-radius: 18px;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.skyjatra-drawer-currency-icon {
    color: var(--sj-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skyjatra-drawer-currency-icon .sj-ui-icon {
    width: 22px;
    height: 22px;
}

.skyjatra-currency-form {
    margin: 0;
    flex: 1 1 auto;
}

.skyjatra-currency-select {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #d8e3f4;
    background: #ffffff;
    color: var(--sj-text-main);
    font-size: 15px;
    font-weight: 700;
    padding: 0 14px;
    outline: none;
}

.skyjatra-currency-select:focus {
    border-color: #b7cdfa;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.skyjatra-header-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.skyjatra-header-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid #e8eef8;
    background: #ffffff;
    color: var(--sj-text-main);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.skyjatra-header-menu-item:hover {
    border-color: #d6e3fb;
    background: #f8fbff;
}

.skyjatra-header-menu-item.is-active {
    background: #f5f8ff;
    border-color: #cfe0ff;
    color: var(--sj-brand);
}

.skyjatra-header-menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #edf4ff;
    color: var(--sj-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skyjatra-header-menu-text {
    line-height: 1.2;
}

.skyjatra-menu-item-logout {
    color: #c62828;
}

.skyjatra-menu-item-logout .skyjatra-header-menu-icon {
    color: #c62828;
    background: #fff2f2;
}

.skyjatra-footer {
    position: relative;
    margin-top: 52px;
    background: #ffffff;
    border-top: 1px solid var(--sj-border-soft);
}

.skyjatra-footer-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 18px 24px;
}

.skyjatra-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.skyjatra-footer-brand img,
.skyjatra-footer-brand .custom-logo,
.skyjatra-footer-brand .skyjatra-logo-fallback {
    max-height: 38px;
    width: auto;
    display: block;
}

.skyjatra-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.skyjatra-footer-link {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #dbe5f5;
    background: #ffffff;
    color: var(--sj-text-main) !important;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.skyjatra-footer-link:hover {
    border-color: #cfe0ff;
    background: #f8fbff;
}

.skyjatra-footer-link.is-active {
    background: #edf4ff;
    border-color: #cfe0ff;
    color: var(--sj-brand) !important;
}

.skyjatra-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #eef3fa;
}

.skyjatra-footer-copy {
    margin: 0;
    color: var(--sj-text-muted);
    font-size: 14px;
}

.skyjatra-footer-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sj-text-muted);
    font-size: 14px;
}

.skyjatra-footer-meta a {
    color: var(--sj-text-muted);
}

.skyjatra-mobile-bottom-nav {
    display: none;
}

@media (max-width: 1100px) {
    .skyjatra-header-shell,
    .skyjatra-footer-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .skyjatra-header-login-btn {
        min-width: 132px;
        padding: 0 18px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .skyjatra-header-shell {
        padding: 10px 12px;
    }

    .skyjatra-logo-link img,
    .custom-logo,
    .skyjatra-logo-fallback {
        max-height: 34px;
    }

    .skyjatra-header-main {
        gap: 10px;
    }

    .skyjatra-header-actions {
        gap: 8px;
    }

    .skyjatra-header-icon-btn,
    .skyjatra-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .skyjatra-header-login-btn {
        min-width: 110px;
        height: 42px;
        padding: 0 14px;
        border-radius: 14px;
        font-size: 14px;
    }

    .skyjatra-header-drawer {
        left: 12px;
        right: 12px;
        width: auto;
        top: calc(100% + 8px);
    }

    .skyjatra-header-drawer-inner {
        border-radius: 20px;
        padding: 12px;
    }

    .skyjatra-drawer-currency {
        padding: 10px 12px;
        border-radius: 16px;
    }

    .skyjatra-currency-select {
        height: 40px;
        font-size: 14px;
    }

    .skyjatra-header-menu-item {
        min-height: 50px;
        padding: 0 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    .skyjatra-header-menu-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .skyjatra-footer-shell {
        padding: 24px 12px 98px;
    }

    .skyjatra-footer-top,
    .skyjatra-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .skyjatra-footer-links {
        justify-content: flex-start;
    }

    .skyjatra-mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 9998;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border: 1px solid var(--sj-border-soft);
        border-radius: 22px;
        box-shadow: 0 -2px 20px rgba(15, 23, 42, 0.12);
    }

    .skyjatra-mobile-bottom-item {
        min-height: 56px;
        border-radius: 16px;
        color: var(--sj-text-main) !important;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 4px 2px;
        text-align: center;
    }

    .skyjatra-mobile-bottom-item.is-active {
        background: #edf4ff;
        color: var(--sj-brand) !important;
    }

    .skyjatra-mobile-bottom-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: currentColor;
    }

    .skyjatra-mobile-bottom-icon .sj-ui-icon {
        width: 18px;
        height: 18px;
    }
}

/* =========================================
   FINAL FOOTER STYLE
========================================= */

.skyjatra-footer {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.skyjatra-footer-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 16px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.skyjatra-footer-center-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.skyjatra-footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.22s ease;
}

.skyjatra-footer-link:hover {
    transform: translateY(-1px);
    border-color: #bfd7ff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.skyjatra-footer-link.is-active {
    color: #173fa8;
    border-color: #cfe0ff;
    background: #f4f8ff;
}

.skyjatra-footer-copy {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

/* =========================================
   MOBILE STICKY FOOTER NAV
========================================= */

.skyjatra-mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.08);
}

.skyjatra-mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    border-radius: 12px;
    color: #475467;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.skyjatra-mobile-bottom-item.is-active {
    color: #173fa8;
    background: #f4f8ff;
}

.skyjatra-mobile-bottom-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skyjatra-mobile-bottom-icon svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 992px) {
    .skyjatra-mobile-bottom-nav {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .skyjatra-footer-shell {
        display: none !important;
    }

    .skyjatra-footer {
        background: transparent !important;
        border-top: none !important;
        margin-top: 20px !important;
        padding: 0 !important;
    }

    .skyjatra-mobile-bottom-nav {
        display: grid !important;
    }
}

/* =========================================
   Footer account / bookings fix
========================================= */

.skyjatra-footer-shell-simple {
    max-width: 1200px;
    padding: 28px 16px 24px;
}

.skyjatra-footer-center-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.skyjatra-footer-shell-simple .skyjatra-footer-copy {
    text-align: center;
}

.skyjatra-footer-shell-simple .skyjatra-footer-top,
.skyjatra-footer-shell-simple .skyjatra-footer-bottom,
.skyjatra-footer-shell-simple .skyjatra-footer-brand,
.skyjatra-footer-shell-simple .skyjatra-footer-meta {
    display: none !important;
}

@media (max-width: 991px) {
    .skyjatra-mobile-bottom-nav.has-3-items {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .skyjatra-mobile-bottom-nav.has-4-items {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* =========================================
   Header update: logo + top currency
========================================= */

.skyjatra-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.skyjatra-brand {
    flex-shrink: 0;
}

.skyjatra-logo-link,
.skyjatra-logo-link img,
.custom-logo-link,
.custom-logo,
.skyjatra-logo-fallback {
    display: block !important;
    max-height: 42px !important;
    width: auto !important;
}

.skyjatra-header-currency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe4f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    flex-shrink: 0;
}

.skyjatra-header-currency-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #173fa8;
}

.skyjatra-header-currency .skyjatra-currency-form {
    margin: 0;
}

.skyjatra-header-currency .skyjatra-currency-select {
    border: 0;
    background: transparent;
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    min-height: 38px;
    cursor: pointer;
    padding: 0 8px 0 0;
    min-width: 72px;
}

.skyjatra-drawer-currency {
    display: none !important;
}

@media (max-width: 767px) {
    .skyjatra-header-main {
        justify-content: space-between;
        gap: 8px;
    }

    .skyjatra-header-left {
        gap: 8px;
        min-width: 0;
    }

    .skyjatra-logo-link img,
    .custom-logo,
    .skyjatra-logo-fallback {
        max-height: 34px !important;
    }

    .skyjatra-header-currency {
        min-height: 38px;
        padding: 0 10px;
    }

    .skyjatra-header-currency .skyjatra-currency-select {
        min-height: 34px;
        min-width: 58px;
        font-size: 12px;
        padding-right: 0;
    }

    .skyjatra-header-actions {
        gap: 8px;
    }
}