/* ===========================
   NYABHISH CONSULTING - STYLES
   Premium Travel Website - Enhanced
   =========================== */

/* Root Variables */
:root {
    --primary: #0f3460;
    --primary-light: #16213e;
    --secondary: #1e90ff;
    --accent: #d4af37;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --gray-dark: #333333;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --glow: 0 0 20px rgba(30, 144, 255, 0.3);
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===========================
   HEADER/NAVIGATION
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(15, 52, 96, 0.08);
    padding: 10px 0;
    backdrop-filter: blur(14px);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: clamp(150px, 16vw, 205px);
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: clamp(14px, 1.6vw, 26px);
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 680px;
    height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(7, 26, 48, 0.76), rgba(15, 52, 96, 0.46), rgba(30, 144, 255, 0.2)),
        linear-gradient(0deg, rgba(3, 12, 24, 0.35), rgba(3, 12, 24, 0.1));
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    text-align: left;
    color: var(--white);
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    padding: 0 20px;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    max-width: 680px;
    font-size: clamp(17px, 2vw, 23px);
    margin-bottom: 34px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.hero-control:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    transition: var(--transition);
}

.hero-dot.active {
    width: 34px;
    background: var(--accent);
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 144, 255, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===========================
   SECTION TITLES
   =========================== */
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ===========================
   FEATURE CARDS / WHY CHOOSE US
   =========================== */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.2);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   DESTINATION CARDS
   =========================== */
.popular-destinations {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.destination-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover::after {
    opacity: 1;
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 52, 96, 0.95), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.destination-card:hover .destination-info {
    transform: translateY(-10px);
}

.destination-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.destination-info p {
    font-size: 14px;
    opacity: 0.9;
}

.destinations-section,
.packages-section {
    padding: 80px 0;
}

.destinations-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.destination-card-large {
    position: relative;
    min-height: 430px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--primary);
    isolation: isolate;
    transition: var(--transition);
}

.destination-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card-large img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(to top, rgba(7, 26, 48, 0.96), rgba(15, 52, 96, 0.55), rgba(15, 52, 96, 0.08));
}

.destination-overlay h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.destination-overlay p {
    line-height: 1.6;
}

.destination-highlights {
    margin: 16px 0 20px;
}

.destination-highlights ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
    margin-top: 8px;
    padding-left: 18px;
    font-size: 14px;
}

.destination-overlay .btn {
    align-self: flex-start;
}

/* ===========================
   PACKAGE CARDS
   =========================== */
.featured-packages {
    padding: 80px 0;
    background: var(--gray-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(30, 144, 255, 0.25);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.12);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.package-details {
    padding: 25px;
}

.package-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.package-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.package-meta i {
    margin-right: 8px;
    color: var(--secondary);
}

.package-desc {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.package-includes {
    list-style: none;
    margin-bottom: 15px;
}

.package-includes li {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.package-includes i {
    color: var(--success);
    margin-right: 8px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.price strong {
    color: var(--secondary);
    font-size: 20px;
}

.image-fallback {
    display: none;
}

.has-image-fallback {
    position: relative;
    min-height: 200px;
    background:
        linear-gradient(135deg, rgba(15, 52, 96, 0.88), rgba(30, 144, 255, 0.54)),
        linear-gradient(45deg, rgba(212, 175, 55, 0.24), transparent);
}

.has-image-fallback::after {
    content: attr(data-fallback-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

/* ===========================
   TRAVEL CATEGORIES
   =========================== */
.travel-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.travel-categories .section-title {
    color: var(--white);
}

.travel-categories .section-title::after {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===========================
   STATISTICS
   =========================== */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    padding: 80px 0;
    background: var(--gray-light);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: var(--accent);
    opacity: 0.2;
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.15);
    transform: translateY(-8px);
}

.stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
}

.stars i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 96, 0.6);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===========================
   FILTER BUTTONS
   =========================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-color: var(--secondary);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    animation: slideInLeft 0.8s ease;
}

.about-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: slideInRight 0.8s ease;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    animation: slideInRight 0.8s ease 0.1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mission-vision {
    padding: 80px 0;
    background: var(--gray-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   VALUES SECTION
   =========================== */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   TIMELINE
   =========================== */
.why-trust {
    padding: 80px 0;
    background: var(--gray-light);
}

.trust-timeline {
    position: relative;
    padding: 20px 0;
}

.trust-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--secondary);
}

.timeline-item {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-start;
    padding-right: 52%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-left: 52%;
}

.timeline-point {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border: 3px solid var(--white);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
}

/* ===========================
   TEAM SECTION
   =========================== */
.team-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary);
}

.team-member h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray);
    font-size: 14px;
}

/* ===========================
   SERVICES PAGE
   =========================== */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.advantage-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.advantage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.advantage-item p {
    color: var(--gray);
}

/* ===========================
   GALLERY PAGE
   =========================== */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item {
    background-size: cover;
    background-position: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 96, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
}

.gallery-lightbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
}

.gallery-lightbox:hover {
    background: var(--white);
}

/* ===========================
   TESTIMONIALS PAGE
   =========================== */
.testimonials-page {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.client-info h3 {
    font-size: 16px;
    color: var(--primary);
    margin: 0;
}

.client-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.testimonial-trip {
    font-size: 13px;
    color: var(--gray);
    margin-top: 15px;
}

/* ===========================
   FAQ PAGE
   =========================== */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
    color: var(--primary);
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question i {
    transition: var(--transition);
    color: var(--secondary);
}

.faq-question:hover i {
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    cursor: pointer;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 30px;
    color: var(--secondary);
    min-width: 40px;
}

.info-content h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray);
    font-size: 14px;
    margin: 5px 0;
}

.info-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.social-section {
    margin-top: 30px;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
}

.social-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ===========================
   MAP SECTION
   =========================== */
.map-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ===========================
   BOOKING MODAL
   =========================== */
.modal-open {
    overflow: hidden;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.booking-modal.active {
    display: flex;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 26, 48, 0.72);
    backdrop-filter: blur(8px);
}

.booking-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    max-height: min(90vh, 760px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 12px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.booking-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    color: var(--primary);
    transition: var(--transition);
}

.booking-modal__close:hover {
    background: var(--primary);
    color: var(--white);
}

.booking-modal__eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.booking-modal h2 {
    color: var(--primary);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
    padding-right: 40px;
}

.booking-modal__subtitle {
    color: var(--gray);
    margin-bottom: 24px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-form .form-group {
    margin: 0;
}

.booking-submit {
    align-self: flex-start;
}

.booking-form__success {
    min-height: 22px;
    color: var(--success);
    font-weight: 700;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: min(220px, 100%);
    height: auto;
    margin-bottom: 18px;
    padding: 8px 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 16px;
}

.social-links .social-icon:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ===========================
   FLOATING BUTTONS
   =========================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-light);
    }

    .hamburger {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    .logo {
        width: 170px;
    }

    .hero {
        min-height: 620px;
        height: calc(100vh - 74px);
    }

    .hero-content {
        text-align: center;
        padding: 0 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0 20px;
    }

    .hero-control {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 82px;
    }

    .hero-prev {
        left: 24px;
    }

    .hero-next {
        right: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .destinations-grid,
    .destinations-grid-large,
    .packages-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .destination-card-large,
    .destination-card-large img {
        min-height: 500px;
    }

    .destination-highlights ul,
    .booking-form__grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-right: 0 !important;
        padding-left: 60px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .timeline-point {
        left: 0;
        transform: translateX(-50%);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .back-to-top {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .navbar-content {
        gap: 12px;
    }

    .logo {
        width: 145px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .nav-link {
        font-size: 12px;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-modal {
        padding: 14px;
    }

    .booking-modal__dialog {
        padding: 28px 20px;
    }
}
