/* ============================================
   SKYBRIDGE TRAVELS - PREMIUM CSS
   Color Theme: Black & Gold
   Font: Roboto
   Fully Responsive
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #e8d5a3;
    --gold-dark: #b8960c;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-300: #cccccc;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #222222;
    --gray-900: #111111;
    --red: #e74c3c;
    --green: #27ae60;

    --shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 30px rgba(212, 175, 55, 0.4);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;

    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1400px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--black);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--gray-700);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: var(--shadow-gold);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   ANNOUNCEMENT BAR - INFO STYLE
   ============================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.65rem 1rem;
    position: relative;
    z-index: 1002;
    font-weight: 600;
    font-size: 0.85rem;
    width: 100%;
}

.announcement-content {
    max-width: var(--container-2xl);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-right: 2rem;
    position: relative;
}

.ann-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.ann-item i {
    font-size: 0.8rem;
    opacity: 0.85;
}

.ann-divider {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 300;
    font-size: 1rem;
}

.close-announcement {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 0.25rem 0.4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    opacity: 0.7;
}

.close-announcement:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.announcement-bar.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .ann-divider { display: none; }
    .announcement-content {
        gap: 0.4rem 1.2rem;
        justify-content: flex-start;
        padding-left: 0.5rem;
    }
}

@media (max-width: 576px) {
    .announcement-bar { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
    .ann-item { font-size: 0.72rem; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 1rem 5%;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding: 0.7rem 5%;
}

/* Also support .header naming */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}


/* Nav Links */
.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links>li>a {
    color: var(--gray-200);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.nav-links>li>a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-links>li:hover>a i,
.nav-links>li>a:hover i {
    transform: rotate(180deg);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links>li>a.active {
    background: rgba(212, 175, 55, 0.12);
    position: relative;
}

.nav-links>li>a.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Contact button */
.nav-links>li:last-child>a,
.btn-contact {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    font-weight: 700 !important;
    border-radius: 50px;
}

.nav-links>li:last-child>a:hover,
.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.nav-links>li:last-child>a.active {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black);
}

.nav-links>li:last-child>a.active::before {
    display: none;
}

/* Also support .nav naming */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--gold);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 1.8rem;
}

.dropdown>a i {
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

/* ============================================
   HAMBURGER / MOBILE TOGGLE
   ============================================ */
.hamburger,
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.hamburger:hover,
.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
}

.hamburger span,
.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
    margin: 0;
}

.hamburger.active span:nth-child(1),
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2),
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3),
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    padding: 140px 5% 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.page-header h1 span {
    color: var(--gold);
}

.page-header .breadcrumb,
.breadcrumb {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.page-header .breadcrumb a,
.breadcrumb a {
    color: var(--gold);
}

.page-header .breadcrumb a:hover,
.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1,
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p,
.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HERO QUOTE FORM
   ============================================ */
.hero-quote-form,
.quote-form {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-title span {
    color: var(--gold);
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.field-row,
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.field-group,
.form-group {
    position: relative;
}

.field-label,
.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 0.3rem;
    text-align: justify;
}

.field-input,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--black-lighter);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.field-input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.field-input::placeholder {
    color: var(--gray-600);
}

select.field-input {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.trip-type-wrapper,
.trip-type {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trip-type-btn,
.trip-btn {
    flex: 1;
    padding: 0.9rem;
    background: var(--black-lighter);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trip-type-btn.active,
.trip-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ============================================
   SUGGESTIONS & TRAVELER BOX
   ============================================ */
.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.suggestions-box.show {
    display: block;
}

.suggestion-item {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--gray-300);
}

.suggestion-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.traveler-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    z-index: 100;
    display: none;
    min-width: 240px;
}

.traveler-box.show {
    display: block;
}

.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

.traveler-row:last-child {
    border-bottom: none;
}

.counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.counter button {
    width: 30px;
    height: 30px;
    background: var(--black-lighter);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.counter button:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem;
}

.section-dark {
    background: var(--black-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title span {
    color: var(--gold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* ============================================
   CARDS & GLASS CARD
   ============================================ */
.glass-card {
    background: var(--black-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-sm);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    font-size: 0.875rem;
}

.service-card ul li::before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card,
.feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover,
.feature:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
}

.feature i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.feature-content h4,
.feature h3 {
    margin-bottom: 0.5rem;
}

.feature-content p,
.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
}

.destination-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.destination-overlay p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.destination-price {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.25rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.testimonial-card h4 {
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-box .label {
    color: var(--gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-form,
.contact-form-wrapper {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.map-placeholder,
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-placeholder iframe,
.map-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
    filter: grayscale(100%) brightness(0.7);
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--black);
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card .position {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    background: var(--black-light);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section,
.newsletter {
    background: linear-gradient(135deg, var(--black-light), var(--black));
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-section h2,
.newsletter h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.newsletter-section p,
.newsletter p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    background: var(--black-lighter);
    border: 1px solid var(--gray-700);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    color: var(--black);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer,
footer {
    background: var(--black-light);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid,
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: var(--container-2xl);
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-col p,
.footer-section p,
.footer-col ul li a,
.footer-section a {
    color: var(--gray);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a,
.footer-section a {
    transition: color 0.3s, padding-left 0.3s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--black-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.contact-info li i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gray);
    font-size: 0.875rem;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--gold);
    margin: 2.5rem 0 1.25rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--gold);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--green);
    color: var(--green);
}

.alert-danger,
.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--red);
    color: var(--red);
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-modal-content i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.success-modal-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.success-modal-content p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.success-modal-content button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: var(--gray-500);
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    .container {
        max-width: var(--container-2xl);
    }

    .hero h1,
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* ============================================
   RESPONSIVE — TABLET LANDSCAPE (≤1280px)
   ============================================ */
@media (max-width: 1280px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* ============================================
   RESPONSIVE — TABLET PORTRAIT (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .nav-links>li>a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger,
    .mobile-toggle {
        display: flex;
    }

    /* Slide-in nav panel */
    .nav-links,
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        padding: 80px 1.25rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        overflow-y: auto;
    }

    .nav-links.active,
    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-links>li,
    .nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links>li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-links>li>a,
    .nav a {
        padding: 0.9rem 0;
        display: flex;
        justify-content: space-between;
        border-radius: 0;
        font-size: 1rem;
        width: 100%;
        color: var(--white);
    }

    .nav-links>li>a:hover,
    .nav a:hover {
        background: transparent;
        color: var(--gold);
        padding-left: 0.5rem;
    }

    .nav-links>li>a.active {
        background: transparent;
        color: var(--gold);
    }

    .nav-links>li>a.active::before {
        display: none;
    }

    /* Contact button in mobile */
    .nav-links>li:last-child>a {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        color: var(--black);
        justify-content: center;
        padding: 0.8rem;
        border-radius: var(--radius-sm);
        margin-top: 0.5rem;
    }

    .nav-links>li:last-child>a:hover {
        transform: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        backdrop-filter: none;
    }

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

    .dropdown-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 0.7rem 0 0.7rem 1rem;
        font-size: 0.9rem;
        border-left: none;
    }

    .dropdown-menu li a:hover {
        background: rgba(212, 175, 55, 0.08);
        padding-left: 1.5rem;
        border-left-color: transparent;
    }

    /* General layout */
    .announcement-bar {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }

    .announcement-content {
        padding-right: 1.5rem;
    }

    .close-announcement {
        right: 0.5rem;
    }

    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .section {
        padding: 5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .features-grid,
    .destinations-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .page-header {
        padding: 100px 5% 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .partners-grid {
        gap: 1.5rem;
    }

    .partner-logo img {
        height: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 0 1rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .nav-container {
        padding: 0.8rem 5%;
    }

    .logo {
        font-size: 1.3rem;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤576px)
   ============================================ */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .announcement-bar {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-quote-form,
    .quote-form {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .glass-card,
    .service-card,
    .feature-card,
    .feature,
    .testimonial-card,
    .team-card,
    .contact-info-card,
    .contact-form,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .page-header {
        padding: 7.5rem 1rem 2.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .trip-type-wrapper,
    .trip-type {
        flex-direction: column;
    }

    .trip-type-btn,
    .trip-btn {
        padding: 0.6rem;
    }

    .nav-links {
        width: 85%;
    }
}

/* ============================================
   LOGO IMAGE - RESPONSIVE
   ============================================ */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* Shrinks slightly when navbar is scrolled */
.navbar.scrolled .logo-img {
    height: 44px;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo-img {
        height: 48px;
    }
    .navbar.scrolled .logo-img {
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .navbar.scrolled .logo-img {
        height: 36px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 34px;
    }
}