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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h2 {
    color: #266698;
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

h3 {
    color: #FFF;
    text-align: center;
    font-family: "Mogra", sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1000px;
}

.nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo a:hover {
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #d96d01;
}

.nav-menu a.active {
    color: #1a5f7a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background-image: url('./assets/img/active-underline.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #195f7a;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 6rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-mobile {
    display: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-top: 8rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    background: white;
    color: #333;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-cta:hover {
    background: transparent;
    color: white;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 20px;
    position: relative;
}

.flight-image {
    position: absolute;
    top: -120px;
    right: -200px;
    z-index: 5;
}

.flight-icon {
    width: 180px;
    height: 180px;
    object-fit: contain;
    opacity: 0.8;
    transition: transform 0.3s ease;
    position: relative;
}

.flight-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 200px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #266698 0px,
        #266698 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateY(-50%) rotate(-15deg);
    z-index: -1;
}

.flight-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.section-title {
    color: #266698;
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 300px;
    height: 12px;
    background-image: url('./assets/img/h2-underline.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    padding: 5rem 0;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.destinations-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-container {
    overflow: visible;
    border-radius: 20px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 100%;
}

.destination-card {
    min-width: 320px;
    width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0.6;
    transform: scale(0.9);
    z-index: 1;
}

.destination-card.active {
    opacity: 1 !important;
    transform: translateX(-50%) scale(1) !important;
    z-index: 3;
    min-width: 380px;
    width: 380px;
}

.destination-card.prev,
.destination-card.next {
    opacity: 0.4 !important;
    transform: translateX(-50%) scale(0.85) !important;
    z-index: 2;
    min-width: 380px;
    width: 380px;
}

.card-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(38, 102, 152, 0.7), rgba(38, 102, 152, 0.3), transparent);
    pointer-events: none;
    z-index: 2;
}

.destination-card.active .card-image {
    height: 500px;
}

.destination-card.prev .card-image,
.destination-card.next .card-image {
    height: 500px;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2rem 80px 2rem;
    color: white;
}

.card-overlay h3 {
    font-size: 2.8rem;
    font-weight: 800;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: auto;
    margin-bottom: 20px;
    text-align: center;
}

.rating {
    background: white;
    color: #1a365d;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100px;
}

.rating i {
    color: #1a365d;
    font-size: 0.8rem;
}

.book-btn {
    background: white;
    color: #1a365d;
    border: none;
    padding: 10px 5px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 120px;
    z-index: 3;
}

.book-btn:hover {
    background: #1a365d;
    color: white;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.book-btn i {
    background: #1a365d;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.book-btn:hover i {
    background: white;
    color: #1a365d;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
}

.carousel-btn {
    background: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: #1a365d;
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    height: 4px;
    background: #1a365d;
    border-radius: 2px;
}

/* ===== EXPLORATION SECTION ===== */
.exploration {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

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

.exploration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.exploration-image-tablet {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.exploration-image-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    padding: 5rem 0;
    background: white;
}

.packages-container {
    position: relative;
}

.package-badge {
    position: absolute;
    top: -50px;
    right: 0;
    background: #ffc107;
    color: #dc2626;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-card .package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    z-index: 20;
    width: max-content;
    min-width: 280px;
    white-space: nowrap;
    text-align: center;
    background: #ffc107;
    color: #dc2626;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.package-card .package-badge:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(255, 193, 7, 0);
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 5rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    text-align: left;
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-duration i {
    color: #666;
    font-size: 0.8rem;
}

.package-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

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

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #374151;
}

.package-btn {
    background: #e5e7eb;
    color: #374151;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

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

.all-packages-btn {
    background: #1a365d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.all-packages-btn:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    height: 120vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 0;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

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

.video-content {
    text-align: center;
    color: white;
    z-index: 10;
    margin-top: 1rem;
}

.video-title-desktop {
    color: white;
    text-align: center;
    text-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    font-family: "Mogra", sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

.video-title-mobile {
    color: white;
    text-align: center;
    text-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    font-family: "Mogra", sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: none;
}

@media (max-width: 768px) {
    .video-title-desktop {
        display: none;
    }
    
    .video-title-mobile {
        display: block;
        font-size: 4rem;
        line-height: .9;
        margin-bottom: 2rem;
    }
}

.video-content p {
    color: #004652;
    font-family: "Dancing Script", "Brush Script MT", "Lucida Handwriting", cursive;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.8);
    margin-top: -30px;
}

.play-btn {
    background: transparent;
    color: white;
    border: 3px solid white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(38, 102, 152, 0.4), 0 0 60px rgba(38, 102, 152, 0.2), 0 0 90px rgba(38, 102, 152, 0.1);
    position: relative;
    margin: 0 auto;
}

.play-btn:hover {
    background: white;
    border-color: #1a365d;
    color: #1a365d;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(38, 102, 152, 0.6), 0 0 80px rgba(38, 102, 152, 0.3), 0 0 120px rgba(38, 102, 152, 0.15);
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ===== REASONS SECTION ===== */
.reasons {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.reasons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/img/resons-of-shoose-flight.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
    height: 600px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 3;
    margin-top: 4rem;
}

.reason-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(38, 102, 152, 0.1);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #266698, #4A90E2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-icon {
    background: linear-gradient(135deg, #266698, #4A90E2);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(38, 102, 152, 0.3);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(38, 102, 152, 0.4);
}

.reason-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #266698;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.reason-content p {
    color: #666;
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}




/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/img/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.testimonials .section-header {
    position: relative;
    z-index: 3;
}

.testimonials .flight-image {
    position: absolute;
    top: -100px;
    left: 800px;
    z-index: 3;
}

.testimonials-carousel {
    position: relative;
    z-index: 2;
}

.testimonials .carousel-container {
    overflow: hidden;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials .carousel-track {
    display: flex;
    gap: 2rem;
    padding: 0;
    align-items: center;
    transition: transform 0.5s ease;
    width: max-content;
    height: 100%;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    transition: all 0.5s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-flag {
    margin-bottom: 1rem;
}

.testimonial-flag img {
    width: 30px;
    height: 20px;
    border-radius: 3px;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.thumbs-up {
    color: #B2EBF2;
    font-size: 1.5rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.testimonial-author {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonials .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.testimonials .carousel-btn {
    background: #B2EBF2;
    color: #1a365d;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonials .carousel-btn:hover {
    background: #1a365d;
    color: white;
    transform: scale(1.1);
}

.testimonials .carousel-dots {
    display: flex;
    gap: 10px;
}

.testimonials .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #B2EBF2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials .dot.active {
    background: #154e7a;
    transform: scale(1.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #154e7a url('./assets/img/desktop-footer-bg.png') center/cover no-repeat;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}



.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .contact-item span {
    color: #fff;
}

.contact-item i {
    color: #20c997;
    width: 20px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* About Hero Section */
.about-hero {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .hero-content {
    text-align: center;
    z-index: 10;
}

.contact-hero .hero-title {
    color: #FFF;
    font-family: "Metropolis", sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    text-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.about-hero .hero-title {
    color: #FFF;
    font-family: "Metropolis", sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    text-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #fff;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Info */
.contact-info h2 {
    color: #266698;
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
}



.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-section .phone-numbers span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
}

.contact-section .contact-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
}

.social-media h3 {
    color: #266698;
    font-family: "Black Han Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-align: left;
}

.social-media .social-links {
    display: flex;
    gap: 1rem;
}

.social-media .social-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(100%) saturate(1000%) hue-rotate(180deg) brightness(0.6) contrast(1.4);
}

/* Contact Form */
.contact-form {
    position: relative;
}

.form-decoration {
    position: absolute;
    top: -2rem;
    right: 0;
    z-index: 1;
}

.airplane-path {
    position: relative;
    width: 200px;
    height: 50px;
}

.airplane-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #266698 0px,
        #266698 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateY(-50%);
}



.contact-form h2 {
    color: #266698;
    font-family: "Black Han Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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



.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #266698;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group select option {
    padding: 0.5rem;
    color: #333;
    background: #fff;
}

.send-btn {
    background: #266698;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: flex-start;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(38, 102, 152, 0.2);
}

.send-btn:hover {
    background: #1a4d73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 102, 152, 0.3);
}

.send-btn i {
    transition: transform 0.3s ease;
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.send-btn:hover i {
    transform: translateX(4px);
}

/* Map Section */
.map-section {
    padding: 0 0 0 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 400px;
    max-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Promotional Section */
.promotional-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

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

.promotional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotional-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    padding-left: 3rem;
    z-index: 10;
    text-align: left;
}

.hashtag {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-shadow: 0 4px 9px rgba(0, 0, 0, 0.5);
}

.wonder-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 4px 9px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .header {
        top: 10px;
        width: 95%;
    }
    
    .nav {
        border-radius: 25px;
    }
    
    .nav-container {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    #home .hero-title {
        display: none;
    }
    
    .hero-title-mobile {
        display: block;
        text-align: center;
        text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
        font-family: "Metropolis", sans-serif;
        font-size: 83px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        margin-top: 4rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .exploration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exploration-images {
        grid-template-columns: 1fr;
        height: 300px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-card {
        min-width: 300px;
    }

    .destination-card.active {
        min-width: 320px;
        width: 320px;
    }

    .destinations-carousel {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .flight-image {
        display: none;
    }

    /* Destinations Section - Mobile */
    .destinations {
        padding: 1rem 0;
        margin-top: 2rem;
    }

    .destinations .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .packages .section-title {
        text-align: left;
    }
    
    .reasons .section-title {
        text-align: left;
    }
    
    .testimonials .section-title {
        text-align: left;
    }
    
    .video-section {
        height: 70vh;
        min-height: 400px;
        padding: 1rem 0;
    }
    
    .video-container {
        max-width: 95%;
        margin: 1.5rem auto 0;
        border-radius: 10px;
    }
    
    .exploration-image {
        display: none;
    }
    
    .exploration-image-tablet {
        display: block;
    }
    
    .exploration-image-mobile {
        display: none;
    }
    
    .exploration {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .exploration-background {
        height: 100vh !important;
    }
    
    .exploration-image-mobile {
        height: 100vh !important;
        object-fit: cover;
    }

    /* Contact Page Mobile Styles */
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }

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

    .form-decoration {
        display: none;
    }

    .hashtag {
        font-size: 2rem;
    }

    /* Contact Section Mobile Fixes */
    .contact-section {
        padding: 2rem 0;
    }


    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }

    .phone-numbers {
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-section .phone-numbers span,
    .contact-section .contact-item span {
        font-size: 1rem;
    }

    .social-media h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .form {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .send-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .map-section {
        padding: 2rem 0 0 0;
    }

    .map-container {
        max-height: 300px;
    }

    .map-container iframe {
        height: 300px;
    }

    .promotional-section {
        padding: 0 0 2rem 0;
    }

    .promotional-content {
        padding: 1rem;
    }

    .hashtag {
        font-size: 1.8rem;
    }

    .wonder-text {
        font-size: 1.2rem;
    }

    /* About Page Mobile Styles */
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-sri-lanka .reasons-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .why-sri-lanka .section-title-white {
        text-align: left;
    }
    
    .discover-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .boat-decoration {
        display: none;
    }
    
    .section-title-white {
        font-size: 28px;
        text-align: left;
    }
    
    .why-sri-lanka .section-title-white {
        color: #F4F4E9;
        font-family: "Black Han Sans", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }
    
    .discover-sri-lanka .section-title {
        text-align: left;
    }
    
    .sri-lanka-crowned .section-title-white {
        text-align: left;
    }
    
    .who-we-are .section-title {
        text-align: left;
        display: block;
        width: 100%;
    }
    
    .crowned-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    /* Mobile footer background */
    .footer {
        background: #154e7a url('./assets/img/mobile-footer-bg.png') center/cover no-repeat;
    }
    
    /* Adjust section title underline width for mobile */
    .section-title::after {
        width: 200px;
    }
}

@media (max-width: 768px) and (min-width: 426px) {
    .exploration {
        height: 120vh !important;
        min-height: 120vh !important;
    }
    
    .exploration-background {
        height: 120vh !important;
    }
    
    .exploration-image-tablet {
        height: 120vh !important;
        object-fit: cover;
    }
    
    /* Ensure why-sri-lanka cards display one by one on tablet */
    .why-sri-lanka .reasons-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        justify-content: center;
    }
    
    /* Move hero heading up on tablet */
    .hero-title-mobile {
        margin-top: 4rem;
    }
}

@media (max-width: 424px) {
    .exploration-image-tablet {
        display: none;
    }
    
    .exploration-image-mobile {
        display: block;
    }
    
    .exploration {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .exploration-background {
        height: 100vh !important;
    }
    
    .exploration-image-mobile {
        height: 100vh !important;
        object-fit: cover;
    }

    /* Contact Page Mobile Styles */
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }

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

    .form-decoration {
        display: none;
    }

    .hashtag {
        font-size: 2rem;
    }

    /* Contact Section Mobile Fixes */
    .contact-section {
        padding: 2rem 0;
    }


    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }

    .phone-numbers {
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-section .phone-numbers span,
    .contact-section .contact-item span {
        font-size: 1rem;
    }

    .social-media h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .form {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .send-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .map-section {
        padding: 2rem 0 0 0;
    }

    .map-container {
        max-height: 300px;
    }

    .map-container iframe {
        height: 300px;
    }

    .promotional-section {
        padding: 0 0 2rem 0;
    }

    .promotional-content {
        padding: 1rem;
    }

    .hashtag {
        font-size: 1.8rem;
    }

    .wonder-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Ensure why-sri-lanka cards display one by one on small mobile */
    .why-sri-lanka .reasons-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        justify-content: center;
    }
    
    .why-sri-lanka .reason-card {
        max-width: 100%;
        width: 100%;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .destination-card {
        min-width: 280px;
    }

    .destination-card.active {
        min-width: 300px;
        width: 300px;
    }

    .destinations-carousel {
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .reason-content {
        padding: 1.5rem;
    }

    /* Destinations Section - Small Mobile */
    .destinations {
        padding: 4rem 0;
        margin-top: 1.5rem;
    }

    .destinations .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
}

/* Very small screens (375px and below) */
@media (max-width: 375px) {
    .destinations {
        padding: 0.5rem 0;
        margin-top: 5rem;
    }

    .destinations .section-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .destination-card {
        min-width: 260px;
    }

    .destination-card.active {
        min-width: 280px;
        width: 280px;
    }

    .destinations-carousel {
        padding: 0 0.3rem;
        padding-bottom: 3rem;
    }

    .carousel-controls {
        gap: 1.5rem;
        margin-top: 0.8rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .carousel-dots {
        gap: 0.3rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ===== ABOUT PAGE STYLES ===== */

/* Who We Are Section */
.who-we-are {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.who-we-are-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}


.vision-section {
    background: rgba(245, 245, 220, 0);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
}

.vision-section .vertical-line {
    width: 6px;
    height: 100%;
    background: #266698;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.mission-section {
    background: rgba(245, 245, 220, 0.5);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.mission-section .vertical-line {
    width: 6px;
    height: 100%;
    background: #266698;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

.section-header {
    margin-bottom: 1rem;
}

.vision-section .section-header h3 {
    color: #004652;
    font-family: "Metropolis", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.vision-section p {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.mission-section .section-header h3 {
    color: #004652;
    font-family: "Metropolis", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.mission-section p {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.who-we-are .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.who-we-are .section-title {
    position: relative;
    z-index: 2;
}

.vertical-line {
    width: 4px;
    height: 40px;
    background: #266698;
    margin-right: 1rem;
}

.section-header h3 {
    color: #266698;
    font-family: "Black Han Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.who-we-are .flight-image {
    position: absolute;
    top: -120px;
    right: 100px;
    z-index: 3;
}

.who-we-are .flight-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    opacity: 0.8;
}

.contact-section .flight-image {
    position: absolute;
    top: -50px;
    right: 0px;
    z-index: 1;
}

.contact-section .flight-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    opacity: 0.8;
}

/* Why Sri Lanka Section */
.why-sri-lanka {
    padding: 4rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.why-sri-lanka::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/img/about-why-you-should-select.jpg') center/cover;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
}

.section-title-white {
    color: #F4F4E9;
    font-family: "Mogra", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.section-title-white::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 200px;
    height: 12px;
    background-image: url('./assets/img/underline-why-you-should-select.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.sri-lanka-crowned .section-title-white {
    display: inline-block;
    width: auto;
}

.sri-lanka-crowned .section-title-white::after {
    left: 0;
    transform: translateX(0);
}

.why-sri-lanka .section-title-white {
    display: inline-block;
    width: auto;
}

.why-sri-lanka .section-title-white::after {
    left: 0;
    transform: translateX(0);
}

.why-sri-lanka .reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 2rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.why-sri-lanka .reason-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.why-sri-lanka .reason-card:hover {
    transform: translateY(-5px);
}

.why-sri-lanka .reason-image {
    width: calc(100% + 3rem) !important;
    height: 150px;
    object-fit: cover;
    border-radius: 0;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    display: block;
    max-width: none;
}

.why-sri-lanka .reason-card h3 {
    color: #004652;
    text-align: center;
    font-family: "Mogra", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.why-sri-lanka .reason-card p {
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Sri Lanka Crowned Section */
.sri-lanka-crowned {
    padding: 4rem 0;
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.sri-lanka-crowned-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sri-lanka-crowned .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.sri-lanka-crowned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.crowned-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.crowned-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
background: rgba(0, 0, 0, 0.50);
}

.crowned-text p {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.crowned-text p:last-child {
    margin-bottom: 0;
}

/* Discover Sri Lanka Section */
.discover-sri-lanka {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    min-height: calc(80vh + 50px);
    overflow: hidden;
}

.discover-sri-lanka-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.discover-sri-lanka .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.discover-sri-lanka .section-title {
    position: relative;
    z-index: 2;
    text-align: left;
    display: inline-block;
    width: auto;
}

.discover-sri-lanka .section-title::after {
    left: 0;
}

.discover-text p {
    color: #000;
    text-align: justify;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 auto 1.5rem auto;
    width: 70%;
}

.discover-text p:last-child {
    margin-bottom: 0;
}

/* ===== NAVBAR OFFSET FOR ANCHOR LINKS ===== */
#write-to-us {
    scroll-margin-top: 120px; /* Offset for fixed navbar (20px top + ~100px navbar height) */
}

/* Responsive adjustments for navbar offset */
@media (max-width: 768px) {
    #write-to-us {
        scroll-margin-top: 100px; /* Smaller offset for mobile navbar */
    }
}

@media (max-width: 480px) {
    #write-to-us {
        scroll-margin-top: 80px; /* Even smaller offset for small mobile screens */
    }
}

/* ===== SUCCESS MODAL STYLES ===== */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.success-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideInUp 0.4s ease;
    position: relative;
}

.success-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease;
}

.success-modal h2 {
    color: #004652;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-modal p {
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.success-details h3 {
    color: #004652;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-details li {
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.success-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

.success-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 45px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 30px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    position: relative;
    margin-right: 10px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsiveness for WhatsApp widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        font-size: 11px;
        padding: 5px 8px;
    }
}
