/* Root Variables */
:root {
    --primary-color: #f11b1c;
    /* Medium Blue from Image */
    --secondary-color: #023047;
    /* Dark Navy from Image */
    --accent-color: #FFB701;
    /* Yellow from Image */
    --light-blue: #8ECAE6;
    /* Light Blue from Image */
    --orange: #FC8500;
    /* Orange from Image */
    --white: #ffffff;
    --black: #000000;
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --transition: all 0.3s ease;
    --font-family: 'Outfit', sans-serif;
    --heading-font: 'Outfit', sans-serif;
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 100px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 82px;
    width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 56px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 10px 8px;
    display: inline-block;
}

.header.scrolled .nav-link {
    color: var(--black);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    animation: bounce 0.6s ease-in-out;
}

.nav-link:hover::before {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;

    padding: 0 20px;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    font-weight: 700;
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--white);
    animation: fadeInDown 1s ease-out;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 400;
    min-height: 1.6em;
    /* Prevent jumpy layout */
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary-color);
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: #e64444;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-65%) scale(1.1);
    }
}

/* Feature Marquee Section */
.marquee-section {
    background: #FFFAF0;
    /* Very light peach/cream background */
    padding: 20px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 50px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
}

.marquee-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/* About Us Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-image .sub-title {
    align-self: flex-start;
    margin-bottom: 20px;
}

.img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(2, 48, 71, 0.1);
}

/* Flight Booking Section */
.flight-booking-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f7 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
   
    margin-top: 60px;

}

.flight-booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(32, 158, 187, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.flight-booking-wrapper {
    position: relative;
    z-index: 1;
}

.flight-booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.flight-booking-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.flight-booking-header p {
    color: #666;
    font-size: 1.1rem;
}

.flight-search-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Trip Type Selector */
.trip-type-selector {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.trip-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.trip-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.trip-option input[type="radio"]:checked {
    background: var(--secondary-color);
    box-shadow: inset 0 0 0 4px var(--white);
}

.trip-option span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1rem;
}

/* Flight Form */
.flight-form {
    width: 100%;
}

.form-fields-container {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1.1fr 0.9fr 1fr 0.9fr;
    gap: 15px;
    align-items: flex-end;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.85rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-field input,
.form-field select {
    padding: 12px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
    font-family: var(--font-family);
    max-width: 100%;
    width: 100%;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(2, 48, 71, 0.1);
}

.form-field input::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.form-field small {
    margin-top: 4px;
    color: #999;
    font-size: 0.85rem;
}

.swap-button {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.swap-button button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: var(--white);
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.swap-button button:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.search-button-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.btn-search-flight {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search-flight:hover {
    background: #e64444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 27, 28, 0.3);
}

.btn-search-flight:active {
    transform: translateY(0);
}

/* Responsive Flight Booking */
@media (max-width: 1200px) {
    .form-fields-container {
        grid-template-columns: 1fr 0.7fr 1fr 1fr;
        gap: 15px;
    }

    .swap-button {
        order: 2;
        grid-column: span 2;
    }

    .from-field {
        order: 1;
    }

    .to-field {
        order: 3;
    }

    .date-field {
        order: 4;
    }

    .travellers-field {
        grid-column: span 2;
    }

    .search-button-container {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .flight-search-box {
        padding: 25px;
    }

    .form-fields-container {
        grid-template-columns: 1fr;
        gap: 15px;
        display: flex;
        flex-direction: column;
    }

    /* All form fields full width on mobile */
    .form-field {
        width: 100%;
        min-width: 100%;
    }

    .form-field input,
    .form-field select {
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
    }

    /* Order: From, To, Traveller, Date, Get Quote */
    .from-field {
        order: 1;
    }

    .swap-button {
        order: 2;
        display: none; /* Hide swap button on mobile */
    }

    .to-field {
        order: 3;
    }

    .travellers-field {
        order: 4;
    }

    .date-field {
        order: 5;
    }

    .search-button-container {
        order: 6;
        width: 100%;
        grid-column: span 1;
    }

    .search-button-container .btn-search-flight {
        width: 100%;
    }

    .trip-type-selector {
        gap: 20px;
    }

    .flight-booking-header h2 {
        font-size: 2rem;
    }
}

/* Autocomplete Suggestions */
.autocomplete-field {
    position: relative;
}

.suggestions-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.suggestions-list.active {
    display: block;
}

.suggestions-list li {
    padding: 12px 15px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestions-list li:hover,
.suggestions-list li.selected {
    background: #f5f5f5;
    color: var(--secondary-color);
    font-weight: 500;
}

.suggestions-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Quote Modal Popup */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.quote-modal-content {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    max-width: 380px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-color);
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.quote-modal-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.quote-modal-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote-modal-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.quote-form {
    width: 100%;
}

.quote-form-group {
    margin-bottom: 20px;
}

.quote-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 1rem;
}

.quote-form-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.quote-form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(2, 48, 71, 0.1);
}

.quote-form-group input::placeholder {
    color: #ccc;
}

.quote-form-checkboxes {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.checkbox-label span {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.btn-quote-submit {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-quote-submit:hover {
    background: #e64444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 27, 28, 0.3);
}

.btn-quote-submit:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .quote-modal-content {
        padding: 25px;
    }
    
    .quote-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .quote-form-group {
        margin-bottom: 15px;
    }
}

.experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(32, 158, 187, 0.3);
}

.experience-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.experience-card p {
    font-size: 0.9rem;
    font-weight: 400;
}

.about-content {
    flex: 1.2;
}

.sub-title {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    background: rgba(32, 158, 187, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.about-content h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 25px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.about-list {
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;

    font-weight: 500;
    color: var(--secondary-color);
}

.list-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 183, 1, 0.15);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .img-wrapper {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

/* Services Section - Global Travel Theme */
.services {
    position: relative;
    background-color: #f7fbff;
    overflow: hidden;
}

/* Watermark Global Map */
.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?q=80&w=2000&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    filter: grayscale(100%) brightness(1.2);
    z-index: 0;
    pointer-events: none;
}

/* Dotted Connection Lines Overlay */
.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(32, 158, 187, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 183, 1, 0.1) 0%, transparent 40%);
    z-index: 0;
}

/* Floating Real Travel Plane with Glow */
.floating-plane {
    position: absolute;
    width: 280px;
    z-index: 0;
    pointer-events: none;
    animation: flightAcross 20s linear infinite;
    filter: drop-shadow(0 0 20px rgba(32, 158, 187, 0.9)) brightness(1.1);
    opacity: 0.25;
}

.floating-plane img {
    width: 100%;
}

@keyframes flightAcross {
    0% {
        transform: translate(-400px, 400px) rotate(15deg) scale(0.7);
        opacity: 0;
    }

    10% {
        opacity: 0.25;
    }

    90% {
        opacity: 0.25;
    }

    100% {
        transform: translate(1500px, -400px) rotate(15deg) scale(1.2);
        opacity: 0;
    }
}

.services-container {
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 50px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-badge {
    background: rgba(142, 202, 230, 0.2);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(32, 158, 187, 0.3);
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--black);
    font-weight: 700;
}

.plane-icon {
    color: var(--orange);
    font-size: 1.8rem;
    margin-left: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(2, 48, 71, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(32, 158, 187, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 18px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Destinations Section */
.section-header-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.destination-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(2, 48, 71, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(32, 158, 187, 0.15);
}

.dest-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.dest-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-orange {
    background: var(--orange);
}

.badge-blue {
    background: var(--secondary-color);
}

.dest-info {
    padding: 25px;
}

.dest-info h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dest-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.dest-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* responsive grid */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dest-img-box {
        height: 200px;
    }

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

    .section-main-title {
        font-size: 1.6rem;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .connect-main-title {
        font-size: 1.6rem;
    }

    .contact-info-title {
        font-size: 1.6rem;
    }

    .connect-overlay h3 {
        font-size: 1.5rem;
    }

    .services-badge {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .bar {
    background-color: var(--black);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .header {
        height: 60px;
    }

    .header.scrolled {
        height: 60px;
    }

    .header .container {
        padding: 0 20px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo-img {
        height: 56px;
    }

    .hero {
        height: 50vh;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .about-content h2 {
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .connect-main-title {
        font-size: 2rem;
    }

    .contact-info-title {
        font-size: 2rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.98));
        width: 80%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 100px 20px 40px 20px;
        gap: 0;
        z-index: 999;
    }

    .nav-menu li {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .nav-menu .nav-link {
        color: var(--secondary-color);
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu.active {
        left: 0;
    }
}

/* About Us Section Enhanced */
.customer-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: floating 3s ease-in-out infinite;
}

.customer-badge i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.customer-badge span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-text h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.feature-text p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 600px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .customer-badge {
        left: 20px;
        top: -20px;
    }
}

/* Domestic & International Destinations Section */
.domestic-tours {
    background-color: #f7fbff;
    padding: 80px 0px 80px 0px;
}

.international-tours {
    background-color: #f7fbff;
    padding: 80px 0px 0px 0px;
}

.domestic-tours .container,
.international-tours .container {
    max-width: 100%;
    padding: 0 10px;
}

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

.section-header.text-center {
    text-align: center;
    margin-bottom: 50px;
}

.desc-badge {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(32, 158, 187, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 20px;
    border-radius: 50px;
}

.desc-badge i {
    color: var(--accent-color);
}

.main-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.main-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.main-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(32, 158, 187, 0.1);
    z-index: -1;
}

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

/* Responsive Grid */
@media screen and (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .domestic-tours {
    background-color: #f7fbff;
    padding: 80px 0px 40px 0px;
}
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 48, 71, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(32, 158, 187, 0.15);
}

.tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.tour-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 5px;

    padding: 8px 12px;
    border-top-left-radius: 20px;
}

.tour-icons span {
    width: 32px;
    height: 32px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.tour-card:hover .tour-icons span {
    background: var(--primary-color);
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.tour-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 70%;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M5,18 C50,8 150,8 195,18' stroke='%23f11b1c' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M10,16 C60,7 140,7 190,16' stroke='%23f11b1c' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.inclusion-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.85rem;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.inclusion-list li {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusion-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.read-more {
    display: inline-block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.tour-meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    margin-bottom: 20px;
    color: #777;
    font-size: 0.75rem;
    display: none;
    /* Initially hidden */
    align-items: center;
}

.tour-meta i {
    color: var(--accent-color);
    margin-right: 8px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-explore {
    background: #f11b1c;
    color: var(--white);
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: inline-block;
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.btn-explore:hover {
    background: #d41617;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 27, 28, 0.3);
}

/* Load More Button & Hidden Tours */
.hidden-tour,
.hidden-tour-int {
    display: none !important;
}

.mt-50 {
    margin-top: 50px;
}

.btn-more {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

.btn-more:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 27, 28, 0.2);
}

.btn-more i {
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.btn-more:hover i {
    transform: rotate(90deg);
}

@media screen and (max-width: 992px) {

    .main-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 600px) {

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

/* Itinerary List Styling */
.itinerary-list {
    list-style: none;
    padding: 15px;
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px dashed var(--primary-color);
    margin: 10px 0 20px 0;
    display: none;
}

.itinerary-list li {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.itinerary-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Discover Beauty Section */
.discover-beauty-section {
    position: relative;
    background-color: #050a14;
    /* Very dark navy/black */
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
}

.discover-beauty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80&w=1500&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.discover-beauty-section .container {
    position: relative;
    z-index: 1;
}

.beauty-title {
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    color: var(--white);
    /* Ensure it's white */
}

.beauty-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.beauty-row {
    display: flex;
    gap: 25px;
}

.beauty-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
}

.beauty-card.wide-card {
    flex: 2;
    /* Dubai is wider */
}

.beauty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.beauty-card:hover img {
    transform: scale(1.15);
}

.beauty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.beauty-overlay h3 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Beauty Grid */
@media screen and (max-width: 992px) {
    .beauty-row {
        flex-wrap: wrap;
    }

    .top-row .beauty-card,
    .top-row .beauty-card.wide-card {
        flex: 1 1 calc(50% - 25px);
        /* 2 per row on tablet */
    }

    .bottom-row .beauty-card {
        flex: 1 1 calc(50% - 25px);
    }
}

/* Working Process Section Refined */
.working-process {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.working-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(241, 27, 28, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(32, 158, 187, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.process-badge {
    display: inline-block;
    background: rgba(241, 27, 28, 0.08);
    color: #f11b1c;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(241, 27, 28, 0.1);
}

.section-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto 60px;
    color: #777;
    font-size: 1.15rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-item {
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.process-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.process-item.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.process-item.image-item:hover img {
    transform: scale(1.15);
}

.process-item.text-box {
    background: linear-gradient(145deg, #fff5ea 0%, #fffbf5 100%);
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.step-num {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(140, 74, 62, 0.05);
    line-height: 1;
    z-index: 0;
}

.process-icon {
    font-size: 3.5rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.process-item.text-box h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #2e1e1a;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.process-item.text-box p {
    font-size: 1.05rem;
    color: #5d4a46;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Hover accent for text boxes */
.process-item.text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: #f11b1c;
    transition: width 0.4s ease;
}

.process-item.text-box:hover::after {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-main-title {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-main-title {
        font-size: 2.2rem;
    }

    .process-item {
        height: 320px;
    }

    .working-process {
        padding: 70px 0;
    }
}

@media screen and (max-width: 600px) {
    .beauty-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .beauty-card,
    .top-row .beauty-card,
    .top-row .beauty-card.wide-card,
    .bottom-row .beauty-card {
        flex: 1 1 100%;
        /* 1 per row on mobile */
        height: 250px;
    }

    .discover-beauty-section {
        padding: 50px 0;
    }
}

/* Memorable Journey CTA Section */
.memorable-journey-cta {
    background-color: #f11b1c;
    /* Requested color */
    padding: 20px 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

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



.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-cta-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: var(--white);
    color: #f11b1c;
    transform: translateY(-3px);
}

.cta-illustration {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}



.cta-illustration img {
    max-width: 300px;
    height: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

/* Flight Path Animation (Optional touch) */
.flight-path {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

@media screen and (max-width: 992px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .cta-illustration {
        justify-content: center;
    }

    .cta-text {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Connect with Namaskaram Section */
.connect-section {
    background-color: #f9f9f9;
    padding: 60px 0px 0px 0px;
}

.connect-main-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Image Box */
.connect-image-box {
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    align-items: flex-end;

    position: relative;
    overflow: hidden;
}

.connect-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.connect-overlay {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.explore-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.connect-overlay h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.connect-overlay p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 90%;
}

/* Right Form Box */
.connect-form-box {
    background: linear-gradient(135deg, #209ebb 0%, #023047 100%);
    border-radius: 24px;
    padding: 20px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

/* Booking Type Selector - REMOVED (only tour booking now) */

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0);
    color: var(--white);
    font-size: .8rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form select option {
    background: #a0594d;
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #f11b1c 0%, #d41617 100%);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d41617 0%, #f11b1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 27, 28, 0.4);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .connect-image-box {
        min-height: 400px;
    }

    .connect-main-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .connect-section {
        padding: 40px 0;
    }

    .connect-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .connect-form-box {
        padding: 40px 30px;
    }

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

    .connect-overlay h3 {
        font-size: 1.5rem;
    }

}

/* Contact Information Section */
.contact-info-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.contact-info-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    background: linear-gradient(135deg, #209ebb 0%, #023047 100%);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-subheading {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-icon {
    background: rgba(241, 27, 28, 0.15);
    color: #f11b1c;
}

.phone-icon {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.mail-icon {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact-details {
        padding: 40px 30px;
    }

    .contact-heading {
        font-size: 1.8rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-content h4 {
        font-size: 1.1rem;
    }

    .contact-content p {
        font-size: 0.95rem;
    }

}

/* Footer Section */
.site-footer {
    background-color: #1a1a1a;
    padding: 60px 0 60px;
    position: relative;
    border-top: none;
    overflow: hidden;
    color: #999;
}

.footer-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-weight: 900;
    color: rgb(255 255 255 / 3%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-address {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.footer-contact-info a {
    color: #ccc;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--white);
}

.footer-contact-info a i {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-contact-info a:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

.footer-contact-info a:first-child {
    margin-right: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-social .social-icon {
    color: #777;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1px;
    flex-wrap: wrap;

}

.footer-bottom .separator {
    color: #333;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 80px 0 40px;
    }

    .footer-bg-text {
        font-size: 18vw;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        gap: 10px;
        flex-direction: column;
    }

    .footer-bottom .separator {
        display: none;
    }

    .footer-contact-info a:first-child {
        margin-right: 0;
    }
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.credits a {
    color: var(--accent-color) !important;
    font-weight: 600;
}