@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0E7490;
    --primary-hover: #0891b2;
    --secondary: #F59E0B;
    --secondary-hover: #d97706;
    --dark: #1F2937;
    --light: #F3F4F6;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0E7490, #0891b2);
    --gradient-secondary: linear-gradient(135deg, #F59E0B, #d97706);
    --font-family: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

li {
    list-style: none;
}

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

input, select, button {
    font-family: var(--font-family);
    border: none;
    outline: none;
}

/* Layout Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.top-bar {
    background-color: #0d1e34;
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info, .quick-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.contact-info a:hover {
    opacity: 1;
    color: var(--secondary);
}

.quick-links a {
    opacity: 0.85;
}

.quick-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 75px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: var(--primary);
}

.auth-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(14, 116, 144, 0.2);
}

.auth-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(14, 116, 144, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Sub Navigation (Badges Banner on Header image) */
.sub-nav {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    gap: 30px;
    width: fit-content;
    margin: 0 auto;
    transform: translateY(-30px);
    z-index: 10;
    position: relative;
}

.sub-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.sub-nav-item i {
    font-size: 20px;
    color: var(--primary);
}

.sub-nav-item:hover, .sub-nav-item.active {
    background-color: rgba(14, 116, 144, 0.1);
    color: var(--primary);
}

/* Hero Section (Universal) */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 60px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(29, 78, 137, 0.4) 0%, rgba(13, 30, 52, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-tag {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
}

.hero-badge i {
    color: var(--secondary);
}

/* Search Widget Styling */
.search-widget {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 30px;
    width: 100%;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(14, 116, 144, 0.1);
}

.widget-tabs {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid var(--light);
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary);
    background-color: rgba(14, 116, 144, 0.08);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.trip-types {
    display: flex;
    gap: 25px;
}

.trip-type-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.trip-type-label input {
    accent-color: var(--primary);
}

.search-grid {
    display: grid;
    grid-template-columns: 2fr 40px 2fr 1.5fr 1.5fr 2fr;
    gap: 12px;
    align-items: center;
}

.input-box {
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    position: relative;
}

.input-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}

.input-box label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.input-box input, .input-box select {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    width: 100%;
    background: transparent;
    padding-top: 2px;
}

.swap-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.swap-btn {
    background-color: var(--light);
    border: 1px solid #D1D5DB;
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.swap-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: rotate(180deg);
}

.submit-btn {
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Trust Badges Banner */
.trust-badges-bar {
    background-color: #0b1a2d;
    padding: 25px 0;
    color: var(--white);
    margin-top: 50px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge-item i {
    font-size: 28px;
    color: var(--secondary);
}

.trust-badge-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.trust-badge-text p {
    font-size: 12px;
    opacity: 0.7;
}

/* Section Common Styling */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

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

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* All Travel Needs (Cards grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    padding: 20px 10px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 116, 144, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

.service-card:nth-child(1) .service-icon { background-color: #ecfdf5; color: #10b981; }
.service-card:nth-child(2) .service-icon { background-color: #eff6ff; color: #3b82f6; }
.service-card:nth-child(3) .service-icon { background-color: #fffbeb; color: #f59e0b; }
.service-card:nth-child(4) .service-icon { background-color: #fdf2f8; color: #ec4899; }
.service-card:nth-child(5) .service-icon { background-color: #f0fdfa; color: #14b8a6; }
.service-card:nth-child(6) .service-icon { background-color: #faf5ff; color: #a855f7; }
.service-card:nth-child(7) .service-icon { background-color: #f0fdf4; color: #22c55e; }
.service-card:nth-child(8) .service-icon { background-color: #fff7ed; color: #f97316; }

.service-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.service-card p {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Popular Destinations Section */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.filter-tab {
    background-color: var(--light);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--primary);
    color: var(--white);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.dest-img-container {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.dest-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.dest-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(13, 30, 52, 0.7);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.dest-info {
    padding: 16px;
}

.dest-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-price {
    font-size: 12px;
    color: var(--text-muted);
}

.dest-price span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.section-action-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-action-header .section-header {
    text-align: left;
    margin: 0;
}

.view-all-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

.view-all-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(14, 116, 144, 0.15);
}

/* Offers Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.offer-card {
    background-size: cover;
    background-position: center;
    height: 280px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.offer-card-content {
    position: relative;
    z-index: 2;
}

.offer-tag {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.offer-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.offer-discount {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.offer-discount span {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.book-now-btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

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

/* Why Choose Us & Statistics Split */
.why-stats-split {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 50px;
    align-items: center;
}

.why-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.why-item-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background-color: rgba(14, 116, 144, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-item-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.stats-grid-container {
    background-color: #f7fafc;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.stats-grid-container::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230e7490' fill-opacity='0.05' d='M0,224L120,208C240,192,480,160,720,160C960,160,1200,192,1320,208L1440,224L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

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

.stat-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Testimonial Carousel */
.testimonials-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.testimonial-card-inner::after {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    color: rgba(14, 116, 144, 0.08);
    font-family: serif;
    line-height: 1;
}

.rating-stars {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--dark);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.carousel-nav-prev { left: -60px; }
.carousel-nav-next { right: -60px; }

/* About Page Asymmetric Collage Grid */
.about-collage-section {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 50px;
    align-items: center;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.collage-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item.big-vertical {
    grid-row: span 2;
    height: 380px;
}

.collage-item.small-horizontal {
    height: 180px;
}

.collage-item.medium-square {
    height: 185px;
}

.collage-item.tall-vertical {
    grid-row: span 2;
    height: 380px;
}

.collage-quote {
    font-family: serif;
    font-size: 20px;
    color: var(--primary);
    font-style: italic;
    margin-top: 20px;
    border-left: 3px solid var(--secondary);
    padding-left: 15px;
}

.collage-author {
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    color: var(--text-muted);
}

/* About Mission/Vision Layout */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    display: flex;
    gap: 20px;
}

.mv-card:nth-child(2) {
    border-top-color: var(--secondary);
}

.mv-icon {
    font-size: 32px;
    color: var(--primary);
}

.mv-card:nth-child(2) .mv-icon {
    color: var(--secondary);
}

.mv-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mv-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Extended Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Our People/Team Section */
.team-split-section {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr;
    gap: 50px;
    align-items: center;
}

.team-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-info-wrapper h4 {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-info-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.team-info-wrapper p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.team-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
}

.team-bullet i {
    color: var(--primary);
    font-size: 16px;
}

/* Holidays Page Widget & Themes */
.holiday-search-grid {
    display: grid;
    grid-template-columns: 3fr 3fr 2.5fr 2fr;
    gap: 15px;
    align-items: center;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.theme-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
    transition: var(--transition);
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 116, 144, 0.2);
}

.theme-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    display: inline-block;
}

.theme-card span {
    font-size: 11px;
    font-weight: 600;
    display: block;
    color: var(--dark);
}

.theme-card:nth-child(1) i { color: #f59e0b; }
.theme-card:nth-child(2) i { color: #ec4899; }
.theme-card:nth-child(3) i { color: #10b981; }
.theme-card:nth-child(4) i { color: #06b6d4; }
.theme-card:nth-child(5) i { color: #a855f7; }
.theme-card:nth-child(6) i { color: #3b82f6; }
.theme-card:nth-child(7) i { color: #e11d48; }
.theme-card:nth-child(8) i { color: #d97706; }

/* Holiday Destinations Card with duration metadata */
.holiday-dest-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.holiday-dest-duration i {
    color: var(--primary);
}

/* Footer Section */
.main-footer {
    background-color: #0b1727;
    color: var(--white);
    padding: 70px 0 20px;
    font-size: 13px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 1.5fr 1.8fr 3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.75;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-newsletter p {
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.newsletter-input:focus {
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-btn {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 700;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--secondary-hover);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    opacity: 0.6;
}

.footer-bottom-links a:hover {
    opacity: 0.9;
}

.copyright {
    opacity: 0.6;
    font-size: 12px;
}

.payment-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-badge {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
    opacity: 0.8;
    color: var(--white);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .themes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
        border-top: 1px solid var(--light);
    }
    .nav-menu.show {
        display: flex;
    }
    .auth-btn {
        width: 100%;
        text-align: center;
    }
    .hero-title {
        font-size: 34px;
    }
    .search-widget {
        padding: 20px;
        margin-top: -50px;
    }
    .search-grid {
        grid-template-columns: 1fr;
    }
    .swap-btn-container {
        transform: rotate(90deg);
        margin: -5px 0;
    }
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-stats-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-grid-container {
        padding: 20px;
    }
    .about-collage-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .team-split-section {
        grid-template-columns: 1fr;
    }
    .carousel-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .destination-grid {
        grid-template-columns: 1fr;
    }
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-top .footer-newsletter {
        grid-column: span 1;
    }
    .footer-divider {
        flex-direction: column;
        align-items: flex-start;
    }
}
