/* stye/stye.css */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --secondary: #f4f6f8;
    --gold: #b8860b;
    --gold-accent: #d4a853;
    --gold-light: #e2b85b;
    --gold-dark: #8b6914;
    --text: #1e293b;
    --text-muted: #64748b;
    --card: #ffffff;
    --card-hover: #f9fafb;
    --border: rgba(0,0,0,0.08);
    --border-light: rgba(0,0,0,0.12);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #f0f2f5;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Top Bar === */
.top-bar {
    background: #1e293b;
    padding: 10px 0;
    font-size: 13px;
    color: #94a3b8;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left span i {
    color: var(--gold-accent);
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #94a3b8;
}

.top-bar-right a:hover {
    background: var(--gold-accent);
    color: #1e293b;
    border-color: var(--gold-accent);
}

/* === Navigation === */
.main-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: relative;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-script {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 26px;
    font-weight: 700;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li > a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--gold);
}

.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(184, 134, 11, 0.08);
    color: var(--gold);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: #ffffff;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #ffffff;
}

.btn-white {
    background: #fff;
    color: var(--text);
}

.btn-white:hover {
    background: var(--gold-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--card);
    z-index: 2001;
    padding: 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu ul {
    margin-top: 50px;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--gold);
}

.mobile-menu ul li a i {
    width: 20px;
    text-align: center;
    color: var(--gold);
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.mobile-menu-footer p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(15, 23, 42, 0.82) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--gold-accent);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title span {
    color: var(--gold-accent);
    font-style: italic;
}

.hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-accent);
    font-weight: 700;
}

.hero-stat p {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* === Search Box === */
.search-box-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 60px;
}

.search-box {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 30px 35px;
    box-shadow: var(--shadow-lg);
}

.search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.search-tab {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    font-family: var(--font-body);
}

.search-tab:hover {
    color: var(--text);
    background: var(--secondary);
}

.search-tab.active {
    background: rgba(184, 134, 11, 0.1);
    color: var(--gold);
}

.search-tab i {
    font-size: 16px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    background: var(--secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group select option {
    background: var(--card);
    color: var(--text);
}

.search-form .btn {
    height: 46px;
    white-space: nowrap;
}

/* === Section Styles === */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--primary);
}

.section-gray {
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.section-header-left .section-desc {
    margin: 0;
}

/* === Destination Cards === */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.35) 60%, rgba(15, 23, 42, 0.15) 100%);
}

.destination-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.destination-country {
    font-size: 13px;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.destination-price {
    font-size: 14px;
    color: #94a3b8;
}

.destination-price strong {
    color: var(--gold-accent);
    font-size: 20px;
    font-weight: 700;
}

.destination-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.destination-card:hover .destination-link {
    opacity: 1;
    transform: translateY(0);
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 134, 11, 0.2);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #ffffff;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .link-gold {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .link-gold i {
    transition: var(--transition);
}

.service-card:hover .link-gold i {
    transform: translateX(4px);
}

/* === Packages Section === */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.package-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 134, 11, 0.2);
}

.package-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-accent);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-body {
    padding: 24px;
}

.package-location {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.3;
}

.package-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.package-feature i {
    color: var(--gold);
    font-size: 12px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    font-size: 13px;
    color: var(--text-muted);
}

.package-price strong {
    font-size: 26px;
    color: var(--gold);
    font-weight: 700;
}

.package-price strong small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

/* === Testimonials === */
.testimonials-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.03);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: var(--gold-accent);
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--gold);
}

/* === CTA Section === */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.cta-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === Blog Section === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--gold-accent);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--gold);
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text);
    transition: var(--transition);
}

.blog-card:hover .blog-body h3 {
    color: var(--gold);
}

.blog-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link i {
    transition: var(--transition);
}

.blog-card:hover .blog-link i {
    transform: translateX(4px);
}

/* === Newsletter === */
.newsletter-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-accent), var(--gold-light));
    padding: 50px 0;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.newsletter-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.newsletter-input-group input {
    border: none;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    width: 320px;
    outline: none;
    color: var(--text);
}

.newsletter-input-group input::placeholder {
    color: #999;
}

.newsletter-input-group .btn {
    border-radius: 0;
    background: var(--text);
    color: var(--gold-accent);
}

.newsletter-input-group .btn:hover {
    background: #0f172a;
}

/* === Footer === */
.main-footer {
    background: #0f172a;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 18px;
}

.footer-about p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-accent);
    color: #ffffff;
    border-color: var(--gold-accent);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-accent);
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-accent);
    padding-left: 6px;
}

.footer-col ul li a i {
    font-size: 10px;
    color: var(--gold-accent);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact li i {
    color: var(--gold-accent);
    font-size: 16px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-links a:hover {
    color: var(--gold-accent);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-accent);
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* === Page Header (Inner Pages) === */
.page-header {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-header-content p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--gold-accent);
}

.breadcrumb span {
    color: #94a3b8;
}

/* === Flight Search Styles === */
.flight-search-section {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.flight-type-toggle {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    padding: 4px;
    width: fit-content;
}

.flight-type-btn {
    padding: 10px 24px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.flight-type-btn.active {
    background: var(--gold-accent);
    color: #ffffff;
}

.flight-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

/* === Flight Results === */
.flights-results {
    margin-top: 30px;
}

.flight-result-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}

.flight-result-card:hover {
    border-color: rgba(184, 134, 11, 0.25);
    box-shadow: var(--shadow);
}

.flight-airline {
    display: flex;
    align-items: center;
    gap: 14px;
}

.flight-airline-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
}

.flight-airline-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 2px;
}

.flight-airline-code {
    font-size: 12px;
    color: var(--text-muted);
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.flight-point {
    flex: 1;
}

.flight-point-code {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.flight-point-city {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.flight-line {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.flight-line-bar {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    position: relative;
}

.flight-line-bar::before,
.flight-line-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-accent);
    transform: translateY(-50%);
}

.flight-line-bar::before { left: 0; }
.flight-line-bar::after { right: 0; }

.flight-line i {
    color: var(--gold);
    font-size: 16px;
}

.flight-duration {
    font-size: 12px;
    color: var(--text-muted);
}

.flight-times {
    display: flex;
    gap: 30px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.flight-price-col {
    text-align: right;
}

.flight-price-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.flight-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.flight-price-amount small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

/* === Deals Cards === */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.deal-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.deal-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.08);
}

.deal-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc2626;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.deal-body {
    padding: 22px;
}

.deal-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.deal-route {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-route i {
    color: var(--gold);
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.deal-new-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

/* === Hotels Page === */
.hotels-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-light);
    background: var(--card);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-accent);
    color: #ffffff;
    border-color: var(--gold-accent);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hotel-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hotel-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.08);
}

.hotel-rating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--gold-accent);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: none;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hotel-favorite:hover,
.hotel-favorite.active {
    background: #dc2626;
    color: #fff;
}

.hotel-body {
    padding: 22px;
}

.hotel-location {
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.hotel-amenities {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.hotel-amenity {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.hotel-amenity i {
    color: var(--gold);
    font-size: 13px;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-price-from {
    font-size: 12px;
    color: var(--text-muted);
}

.hotel-price-from strong {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
}

.hotel-price-from strong small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

/* === Car Rental Page === */
.car-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.car-category {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.car-category:hover,
.car-category.active {
    border-color: var(--gold-accent);
    background: rgba(184, 134, 11, 0.06);
}

.car-category i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.car-category span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.car-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.car-image {
    height: 200px;
    overflow: hidden;
    background: var(--secondary);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.08);
}

.car-body {
    padding: 22px;
}

.car-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.car-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.car-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.car-spec i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-price {
    font-size: 12px;
    color: var(--text-muted);
}

.car-price strong {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
}

/* === About Page === */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold-accent);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
}

.about-experience-badge h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text);
}

.about-text h2 span {
    color: var(--gold);
    font-style: italic;
}

.about-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    gap: 12px;
}

.about-feature i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 22px;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 13px;
    color: var(--gold);
}

/* === Contact Page === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(184, 134, 11, 0.25);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form textarea {
    background: var(--secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    width: 100%;
    height: 140px;
    resize: vertical;
}

.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-content: center;
}

/* === Blog Page === */
.blog-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-main .blog-card {
    margin-bottom: 28px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.sidebar-search {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.sidebar-search input {
    flex: 1;
    background: var(--secondary);
    border: none;
    padding: 10px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}

.sidebar-search input:focus {
    border-color: var(--gold);
}

.sidebar-search button {
    background: var(--gold-accent);
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.sidebar-categories li:last-child a {
    border-bottom: none;
}

.sidebar-categories li a:hover {
    color: var(--gold);
}

.sidebar-categories li a span {
    background: var(--secondary);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    padding: 6px 14px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--card);
}

.sidebar-tags a:hover {
    background: var(--gold-accent);
    color: #ffffff;
    border-color: var(--gold-accent);
}

/* === Terms Page === */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: var(--gold);
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

.terms-content ul {
    margin: 14px 0 14px 20px;
    list-style: disc;
}

.terms-content ul li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 6px;
}

.terms-content code {
    background: var(--secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--gold);
}

/* === Fade In Animation === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .search-form { grid-template-columns: repeat(2, 1fr); }
    .search-form .btn { grid-column: 1 / -1; }
    .flight-search-form { grid-template-columns: repeat(2, 1fr); }
    .flight-search-form .btn { grid-column: 1 / -1; }
    .car-categories { grid-template-columns: repeat(3, 1fr); }
    .flight-result-card { grid-template-columns: 1fr; gap: 20px; }
    .flight-price-col { text-align: left; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero-section { min-height: 80vh; }
    .hero-title { font-size: 34px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 28px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 30px; }
    .destinations-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
    .hotels-grid { grid-template-columns: 1fr; }
    .cars-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-input-group input { width: 100%; }
    .newsletter-input-group { flex-direction: column; }
    .newsletter-input-group .btn { width: 100%; justify-content: center; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .page-header { height: 280px; }
    .page-header-content h1 { font-size: 32px; }
    .cta-content h2 { font-size: 30px; }
    .search-form { grid-template-columns: 1fr; }
    .flight-search-form { grid-template-columns: 1fr; }
    .car-categories { grid-template-columns: repeat(2, 1fr); }
    .about-features { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    .flight-route { flex-direction: column; gap: 10px; }
    .flight-line { display: none; }
    .flight-times { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .car-categories { grid-template-columns: 1fr; }
    .search-box { padding: 20px; }
    .flight-search-section { padding: 24px; }
    .contact-form-card { padding: 24px; }
}