:root {
    --bg-dark: #05070b;
    --bg-dark-teal: rgba(6, 43, 48, 0.78);
    --bg-darker: #020308;
    --teal: #00b3b3;
    --teal-soft: #11c4c4;
    --gold: #d4af37;
    --gold-soft: #f1d27a;
    --text-main: #f5f6fa;
    --text-muted: #a6a9b8;
    --border-soft: rgba(255, 255, 255, 0.08);
    --radius-lg: 18px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
}

:root {
  --hex-size: 165px;
  --gold: #d4af37;
  --overlap: -55px;
}

.light-theme {
    --bg-dark: #ffffff;
    --bg-dark-teal: #ffffff;
    --bg-darker: #f4f6f9;
    --text-main: #111;
    --text-muted: #555;
    --border-soft: rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.15);
    --gold: #b08b2e;
    --gold-soft: #c8a645;
    --teal: #009b9b;
    --teal-soft: #00b3b3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    transition: background 0.35s ease, color 0.35s ease;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.mb-5 {
    margin-bottom: 50px !important;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-wrapper {
    padding-top: 70px;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(6, 43, 48, 0.78);
    border-bottom: 1px solid var(--border-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    isolation: isolate;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    position: relative;
    z-index: 3;
    filter: none !important;
    backface-visibility: hidden;
    mix-blend-mode: normal;
}

.logo img:hover {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
    transition: 0.25s;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold-soft);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.logo-text span {
    color: var(--gold-soft);
}

.main-nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.main-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f1d27a) !important;
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--text-main);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: none;
    color: #111;
    background: linear-gradient(135deg,
            #d4af37 0%,
            #fce18a 40%,
            #c19b32 60%,
            #f1d27a 100%);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.6),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.6),
        inset 0 1px 4px rgba(255, 255, 255, 0.8),
        inset 0 -3px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -2px 6px rgba(0, 0, 0, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 28px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0px);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.25);
}

.light-theme .btn-outline {
    border-color: #c19b32;
    color: #c19b32;
}

.light-theme .btn-outline:hover {
    background: rgba(193, 155, 50, 0.15);
}

.btn-primary.full-width {
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, transparent 0, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 50px;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 52px);
    line-height: 1.08;
    margin: 0 0 16px;
}

.hero-text h1 span {
    color: var(--gold-soft);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 11px;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-subtitle {
    max-width: 520px;
    color: var(--text-main);
    font-size: 12px;
}

.hero-subtitle.narrow {
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-main);
}

.hero-meta span {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card {
    background: linear-gradient(145deg, rgba(5, 7, 15, 0.95), rgba(7, 13, 25, 0.98));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 22px 22px 18px;
    max-width: 360px;
    margin-left: auto;
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 14px;
    font-size: 13px;
}

.hero-card li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 0;
    color: var(--text-muted);
}

.hero-card li strong {
    color: var(--text-main);
}

.hero-card-cta {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-soft);
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section {
    padding: 20px 0;
}

.section-alt {
    background: var(--bg-dark);
}

.page-hero {
    padding: 70px 0 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-darker);
}

.page-hero.center {
    text-align: center;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: flex-start;
}


.check-list {
    list-style: none;
    padding: 0;
    margin-top: 14px;
}

.check-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 7px;
    font-size: 14px;
    color: var(--text-muted);
}

.check-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
    color: var(--teal-soft);
}

.text-link {
    font-size: 13px;
    color: var(--teal-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

#why-choose .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: var(--gold-soft);
    margin-bottom: 45px;
}
	
#why-choose .section-intro {
    text-align: center;
    font-size: 14px;
    margin-bottom: 45px;
    margin-bottom: 45px;
}

:not(.light-theme).light-theme #why-choose {
    padding: 20px 0;
}

:not(.light-theme).light-theme #why-choose .section-title {
    color: #062b30;
}

:not(.light-theme).light-theme #why-choose .section-title::after {
    background: var(--gold);
}


body:not(.light-theme) #home-news {
    background: var(--bg-dark);
    color: var(--text-main);
}

body:not(.light-theme) .news-card {
    background: #062b30 !important;
    border-color: rgba(255, 255, 255, 0.12);
}

body:not(.light-theme) .news-card h3,
body:not(.light-theme) .news-card p {
    color: #f5f6fa;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    /*background: var(--text-main);*/
    background: #fff;
}

.theme-toggle {
    margin-left: 18px;
    position: relative;
}

.theme-btn {
    width: 46px;
    height: 26px;
    border-radius: 50px;
    border: 1px solid var(--border-soft);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.theme-btn .icon {
    font-size: 14px;
    transition: opacity 0.25s ease, color 0.25s ease;
    opacity: 0.4;
    color: #fff;
}

.theme-btn .sun {
    transform: translateX(-10px);
}

.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px 0 12px;
    background: radial-gradient(circle at top, #050815 0, #010104 60%, #000 100%);
}


.light-theme .theme-btn .sun {
    opacity: 1;
    transform: translateX(0);
}

.light-theme .theme-btn .moon {
    opacity: 0.2;
}

.theme-btn .moon {
    opacity: 1;
}

.light-theme .theme-btn {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.4);
}

.light-theme .theme-btn .icon {
    color: #fff;
}

.light-theme .theme-btn .sun,
.theme-btn .moon {
    opacity: 1;
}

.light-theme .section {
    background: #062b30;
    color: #f5f6fa;
}

.light-theme .section-alt {
    background: #ffffff;
    color: #111;
}

.theme-toggle input {
    display: none;
}

.switch {
    width: 42px;
    height: 22px;
    border-radius: 22px;
    background: #444;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.switch:after {
    content: "";
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: 0.25s;
}

input:checked+.switch {
    background: var(--teal-soft);
}

input:checked+.switch:after {
    transform: translateX(20px);
}

.light-theme .main-header {
    background: #062b30;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.light-theme .main-header::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
}

.light-theme .main-header.scrolled {
    background: rgba(6, 43, 48, 0.78);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.light-theme .main-nav a {
    color: #e9f7f8;
}

.light-theme .main-nav a:hover {
    color: #f1d27a;
}

.light-theme .main-nav a.active {
    color: #d4af37 !important;
}
.light-theme .main-nav a::after {
    background: linear-gradient(90deg, #d4af37, #f1d27a);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-grid h4,
.footer-grid h5 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 18px;
    padding-top: 10px;
    font-size: 11px;
    text-align: center;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

/*.social-icon svg {*/
    /*transition: 0.3s ease;*/
/*}*/

/*.social-icon:hover svg {*/
    /*opacity: 0.7;*/
/*}*/
.social-links a {
    color: #fff !important;
    font-size: 18px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    opacity: 0.65;
    transform: translateY(-1px);
}


/* index */
.light-theme .hero-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgb(255 255 255 / 0.5));
}

.light-theme .hero-card,
.light-theme .fleet-carousel,
.light-theme .main-footer {
    background: #062b30 !important;
    color: #f5f6fa !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.light-theme .hero-card h3,
.light-theme .hero-card p,
.light-theme .hero-card li,
.light-theme .hero-card strong,
.light-theme .fleet-carousel h4,
.light-theme .fleet-carousel p,
.light-theme .main-footer span,
.light-theme .main-footer p,
.light-theme .main-footer h4,
.light-theme .main-footer h5 {
    color: #f5f6fa !important;
}


#popular-routes.parallax {
    background-image: url('../img/about/route-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: var(--text-main);
}

#popular-routes.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: 1;
}

#popular-routes .container {
    position: relative;
    z-index: 2;
}

#popular-routes .section-title {
    text-align: center;
    font-size: 36px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 16px;
}

.routes-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 14px;
    color: var(--text-main);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.route-card {
    background: rgba(3, 6, 14, 0.85);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: 0.25s ease;
    backdrop-filter: blur(6px);
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

html.light-theme #popular-routes.parallax::before {
    background: rgba(255, 255, 255, 0.35);
}

html.light-theme #popular-routes .route-card {
    background: rgba(255, 255, 255, 0.85);
    color: #111;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: none;
}




/* -------------------- */
.light-theme .fleet-nav {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #f5f6fa !important;
}

.fleet-highlight h3 {
    margin-top: 0;
}

.fleet-carousel {
    margin-top: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(3, 6, 13, 0.95);
}

.fleet-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 130px;
}

.fleet-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}

.fleet-item span {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.fleet-item.active {
    opacity: 1;
    transform: translateX(0);
}

.fleet-nav {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
}

.three-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.lux-card,
.service-card,
.award-card,
.info-panel {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: radial-gradient(circle at top left, rgba(12, 39, 54, 0.75), rgba(3, 6, 14, 0.98));
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
}

.lux-card h3,
.service-card h3 {
    margin-top: 0;
}

/* --------------- */
#our-aircraft .section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
}

#our-aircraft .aircraft-info {
    color: var(--text-main) !important;
}

#our-aircraft .aircraft-name {
    color: var(--text-main) !important;
}

section#our-aircraft {
    padding: 20px 0 70px 0 !important;
}


.aircraft-slider-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0 0 40px;
    position: relative;
    overflow: hidden;
}

.aircraft-mini-card {
    width: 230px;
    border-radius: 16px;
    background: var(--bg-dark-teal);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: .25s;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #062b305c;
}

.aircraft-image img {
    width: 100%;
    aspect-ratio: 4 / 2.4;
    object-fit: cover;
    object-position: center;
}

.aircraft-mini-slider .swiper-slide {
    margin-right: 18px;
}

/* ----------------- */

#faq {
    background: var(--bg-darker);
    padding: 80px 0;
}

#faq .section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

html:not(.light-theme) #faq .section-title {
    color: var(--text-main);
}

.light-theme #faq .section-title {
    color: #062b30;
}


#faq .section-intro {
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-main);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
    background: rgba(3, 6, 14, 0.95);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 22px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 22px;
    transition: transform .3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 22px;
}

.faq-answer p {
    padding: 10px 0 18px;
    color: var(--text-muted);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.light-theme #faq {
    background: #ffffff;
}

.light-theme .faq-item {
    background: #f7f9fb;
    border-color: rgba(0, 0, 0, 0.12);
}

.light-theme .faq-question {
    color: #062b30;
}

.light-theme .faq-answer p {
    color: #333;
}



.wa-floating {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0d1116;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  transition: all .25s ease;
}

.wa-btn img {
  width: 22px;
  height: 22px;
}

.wa-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
}

/* ========================== */
/* ABOUT US PAGE */
/* ========================== */

.about-page .section {
    padding: 100px 0;
}

.about-page .container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-page .dark {
    background: #001b1d;
    color: #ffffff;
}

.about-page .light {
    background: #ffffff;
    color: #000000;
}

.about-page .parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-page #about-hero {
    height: 90vh;
    background-image: url('../img/about/about-hero.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-page #about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 10%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.30) 53%,
            rgba(0, 0, 0, 0.10) 60%,
            rgba(0, 0, 0, 0.00) 75%,
            rgba(0, 0, 0, 0.00) 100%
        );
}

.about-page #about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
    margin: 0 0 10px 0;
}

.about-page #about-hero p {
    font-size: 15px;
    font-weight: 300;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
    margin: 0;
    color: #fff;
}

.about-page .hero-line {
    width: 85px;
    height: 4px;
    background: #c9a241;
    margin: 18px auto;
}

.about-page h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-page .section-label {
    color: #c9a241;
    font-weight: 600;
    text-transform: uppercase;
}

.about-page .vm-container,
.about-page .intro-grid,
.about-page .ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-page img {
    width: 100%;
    border-radius: 14px;
    display: block;
}



.intro-image {
    position: relative;
    display: inline-block;
    z-index: 2;
    margin-top: 100px;
}

.intro-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    background-color: #c8a451;
    z-index: -1;
}

.intro-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-color: #c8a451;
    z-index: -1;
}

.intro-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* ------------------------------ */
.about-page #ceo-message {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 100px 0;
}

.about-page #ceo-message .ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-page #ceo-message h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-main);
}

.about-page #ceo-message p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-main);
}

.about-page #ceo-message .ceo-highlight {
    font-style: italic;
    color: var(--gold);
    margin: 25px 0;
}

.about-page #ceo-message .ceo-signature {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.about-page #ceo-message img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-soft);
}

.ceo-image {
    position: relative;
    display: inline-block;
    z-index: 2;
    margin-top: 100px;
}

.ceo-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    background-color: #062b30;
    z-index: -1;
}

.ceo-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-color: #062b30;
    z-index: -1;
}

.ceo-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* ------------------ */

#vision-mission {
    position: relative;
    overflow: hidden;
}

#vision-mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/about/world-map.png");
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

#vision-mission .content {
    position: relative;
    z-index: 2;
}

.about-page .mission-list li {
    margin-bottom: 10px;
}

/* ------------------------ */

.about-page #facility {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 100px 0;
    position: relative;

}

.about-page #facility.parallax {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-page #facility.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.about-page .facility-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page .facility-text h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-main);
}

.about-page .facility-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: var(--text-main);
}

.about-page .facility-text .facility-list {
    margin-bottom: 22px;
    padding-left: 22px;
}

.about-page .facility-text .facility-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 17px;
    color: var(--text-main);
}

.about-page .facility-images {
    position: relative;
    padding-top: 85px;
}

.about-page .facility-img-box {
    background: var(--gold);
    padding: 6px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
}

.about-page .facility-img-box img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.about-page .facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.about-page .facility-card {
    background: #f6f6f6;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #ddd;
}

.about-page .facilities-images {
    margin-top: 45px;
    display: flex;
    gap: 25px;
}


.honeycomb-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 70px;
}

.row {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: var(--overlap);
}

.r1 { margin-right: 40px; }
.r2 { margin-right: 0px; }
.r3 { margin-right: 85px; }
.r4 { margin-right: 25px; }
.r5 { margin-right: 65px; }
.r6 { margin-right: 10px; }
.r7 { margin-right: 75px; }

.hex {
  width: var(--hex-size);
  aspect-ratio: 1 / 0.866;
  clip-path: polygon(
    25% 0%, 75% 0%,
    100% 50%, 75% 100%,
    25% 100%, 0% 50%
  );
  background: #111;
  border: 5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease, z-index .25s ease;
}

.hex:hover {
  transform: scale(1.09);
  z-index: 10;
}

.hex span {
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* -------------------------- */
.about-page .achievement-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-page .achievement-caption {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}


.section#achievement {
    background-image: url('../img/about/bg-facility.jpg');
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section#achievement::before {
 content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
        to left,
        rgba(0,0,0,0.70) 0%,
        rgba(0,0,0,0.45) 30%,
        rgba(0,0,0,0.20) 55%,
        rgba(0,0,0,0.05) 75%,
        rgba(0,0,0,0.00) 100%
    );
}

.about-page .achievement-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
     position: relative;
    z-index: 2;      
}

.about-page .achievement-img-wrapper {
    position: relative;
    border: 6px solid #c9a241;
    border-radius: 8px;
    padding: 6px;
}

.about-page .achievement-img-wrapper img {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.about-page .achievement-text ul {
    margin-top: 20px;
    padding-left: 20px;
}

.about-page .achievement-text ul li {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.6;
    list-style: disc;
}


/* .swiper-button-prev-home,
.swiper-button-next-home {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #fce18a 40%, #c19b32 60%, #f1d27a 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.6), inset 0 -3px 8px rgba(0, 0, 0, 0.3);
} */


.swiper-button-prev-home,
.swiper-button-next-home {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    width: 65px !important;
    height: 45px !important;
    /* width: 46px !important;
    height: 46px !important; */
    border-radius: 22px !important;
    /* border-radius: 50%; */
    background: linear-gradient(135deg, #d4af37 0%, #fce18a 40%, #c19b32 60%, #f1d27a 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.6), inset 0 -3px 8px rgba(0, 0, 0, 0.3);
    /* background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d); */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
}

.swiper-button-prev-home::after,
.swiper-button-next-home::after {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.swiper-button-prev-home:after {
    content: "◀ ";
}
   
.swiper-button-next-home:after {
    content: "▶ ";
}
  

.swiper-button-prev-home {
    left: 5px
}

.swiper-button-next-home {
    right: 5px;
} 

/* ========================== */
/* FLEET PAGE*/
/* ========================== */
p.manufacturer {
     font-weight: 700;
    color: #D4AF37;          
    font-size: 0.95rem;
    margin-top: 8px;        
    margin-bottom: -25px;    
    display: block;
    text-align: center;       
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.fleet-tab {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b68e2d, #e4c675, #d4af37);
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: .25s ease;
    font-weight: 600;
    letter-spacing: .4px;
}

.fleet-tab:hover,
.fleet-tab.active {
    background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d);
    color: #000;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.fleet-grid-wrapper {
    display: none;
}

.fleet-grid-wrapper.active {
    display: block;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.fleet-card {
    background: rgba(0, 59, 70, 0.6);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 18px;
    backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    cursor: pointer;
    padding-bottom: 20px;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    background: rgba(0, 59, 70, 0.75);
}

.fleet-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform .1s ease;
}

.fleet-card:hover img {
    transform: scale(1.04);
}

.fleet-card .fleet-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.fleet-card .fleet-info {
    font-size: 14px;
    color: #d6d6d6;
    margin-bottom: 18px;
}

.fleet-card .btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d);
    color: #111;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .4px;
    text-decoration: none;
    transition: .25s ease;
}

.fleet-card .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.45);
}


.light-theme .fleet-card {
    background: rgba(255, 255, 255, 0.85);    
    border: 1px solid rgba(212, 175, 55, 0.45);
    backdrop-filter: blur(10px);
}

.light-theme .fleet-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.light-theme .fleet-card .fleet-name {
    color: #0a0a0a;
}

.light-theme .fleet-card .fleet-info {
    color: #333;
}

.light-theme .fleet-tab {
    background: linear-gradient(135deg, #b68e2d, #e4c675, #d4af37);
    color: #111;
}

.light-theme .fleet-tab.active,
.light-theme .fleet-tab:hover {
    background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d);
    color: #111;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.45);
}

.fleet-specs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 10px 0 15px 0;
}

.fleet-specs p {
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    text-align: center;
}

body.light-theme .fleet-card .fleet-specs p,
body.light-theme .fleet-name {
    color: #333;
}

.fleet-specs i {
    color: #d4af37;
    font-size: 15px;
}

.light-theme .fleet-specs p {
    color: #000;
}

.fleet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.fleet-modal-content {
    background: rgba(0, 59, 70, 0.85);
    border-radius: 18px;
    padding: 24px;
    max-width: 700px;
    width: 100%;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: fadeIn .3s ease;
}

.fleet-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}

.fleet-modal .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
}

.fleet-modal .swiper-slide {
    max-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-modal .swiper-slide img {
    max-height: 60vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 44px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 999999;
    transition: 0.3s ease;
}

.lightbox-close:hover {
    color: #d4af37;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 14px;
    transform: translateY(-50%);
    transition: 0.3s;
    z-index: 999999;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    color: #d4af37;
    transform: translateY(-50%) scale(1.2);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99999;
}

.lightbox-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width: 100%;
}

.lightbox-img {
    max-width: 94%;
    max-height: 80vh;
    object-fit: contain;
    transition: transform .25s ease;
}

.lightbox-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.lightbox-thumbs img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .5;
    transition: opacity .3s, transform .3s;
}

.lightbox-thumbs img.active {
    opacity: 1;
    border: 2px solid #d4af37;
    transform: scale(1.05);
}


.fleet-modal-close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.modal-specs {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.modal-specs li {
    margin-bottom: 6px;
}

.btn-book-now {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d);
    color: #111;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .4px;
    text-decoration: none;
    margin-top: 15px;
    transition: .25s ease;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.55);
}

.modal-swiper {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.modal-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 64px !important;
    height: 44px !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.swiper-button-prev:after {
    content: "◀ " !important;
}
   
.swiper-button-next:after {
    content: "▶ " !important;
}

.swiper-button-prev {
    left: 15px !important;
}

.swiper-button-next {
    right: 15px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: linear-gradient(135deg, #D4AF37, #f5d76e, #b68e2d);
    opacity: 0.45 !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    border: 2px solid #003B49 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #b68e2d !important;
    opacity: 1 !important;
    transform: scale(1.35) !important;
    box-shadow: 0 0 10px #f5d76e !important;
    border: 2px solid #b68e2d !important;
}

/* ========================== */
/* CONTACT PAGE */
/* ========================== */
.contact-layout {
    align-items: flex-start;
}

.contact-form {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 18px 18px 16px;
    background: rgba(3, 6, 14, 0.98);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(4, 7, 16, 0.9);
    padding: 9px 11px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-soft);
}

.two-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-info-panel {
    padding-top: 8px;
}

.map-embed {
    margin-top: 16px;
}


/* ===== GOLD LUXURY DATEPICKER ===== */
.flatpickr-calendar {
    background: #0f0f10 !important;        /* dark premium background */
    border: 1px solid #D4AF37 !important;  /* gold border */
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
    border-radius: 16px;
    font-family: "Poppins", sans-serif;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: #D4AF37 !important;
    font-weight: 600;
}

.flatpickr-current-month input.cur-year {
    color: #D4AF37 !important;
    font-weight: 700;
}

.flatpickr-weekdays,
span.flatpickr-weekday {
    background: transparent !important;
    color: #D4AF37 !important;
    opacity: 0.9;
}

.flatpickr-day {
    color: #ffffff !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: 0.3s;
}

.flatpickr-day:hover {
    background: rgba(212,175,55,0.25) !important;
    color: #D4AF37 !important;
    border-radius: 8px !important;
}

/* Selected date */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #D4AF37 !important;
    color: #000 !important;
}

/* Disable out dates */
.flatpickr-day.disabled {
    opacity: 0.3 !important;
}

/* Input style premium */
.datepicker {
    border: 1px solid #D4AF37;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    font-weight: 600;
}

.datepicker {
    background: url("https://cdn-icons-png.flaticon.com/512/747/747310.png") no-repeat right 16px center;
    background-size: 18px;
}


/* === MODAL OVERLAY === */
.modal-overlay {
    display: none; /* hidden default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* === MODAL BOX === */
.modal-box {
    background: #0f0f10;
    border: 1px solid #D4AF37;
    padding: 32px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 0 25px rgba(212,175,55,0.3);
    animation: fadeInUp 0.35s ease-out;
}

.modal-box h2 {
    color: #D4AF37;
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
}

.modal-box p {
    color: #fff;
    opacity: .85;
    margin: 10px 0 20px;
    line-height: 1.5;
}

/* === ANIMATION === */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(18px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes pop {
    0% {transform: scale(0.4); opacity: 0;}
    100% {transform: scale(1); opacity: 1;}
}
