/* ============================================
   CEYLORA TOURS - Perspective Zoom Design
   ============================================ */

:root {
    --color-black: #0f172a;
    --color-dark: #1e293b;
    --color-white: #ffffff;
    --color-primary: #0ea5e9;
    --color-primary-dark: #0284c7;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-gray: #94a3b8;
    --color-gray-light: #cbd5e1;
}

/* Reset */
*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-black);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0;
}

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

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

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

main {
    margin: 0;
}

/* ============================================
   OLD PRELOADER (DISABLED - Using new splash)
   ============================================ */
.preloader {
    display: none !important;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader img {
    width: 150px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
    margin-top: 20px;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    left: 20px;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(53, 53, 53, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 4px -2px rgba(255, 255, 255, 0.3),
        0 0 4px -2px rgba(255, 255, 255, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active {
    display: flex;
    animation: fadeUp 0.3s ease forwards;
}

.lang-option {
    background: none;
    border: none;
    color: var(--color-gray-light);
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.lang-option.active {
    background: var(--color-primary);
    color: white;
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Mobile Language Selector */
.mobile-lang-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-light);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-lang-option.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo img:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.nav-menu-desktop {
    display: flex;
    gap: 10px;
}

.nav-menu-desktop .nav-link {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu-desktop .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.nav-btn {
    display: none;
    width: 56px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-btn__svg {
    pointer-events: none;
    width: 56px;
    height: 30px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.5s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--color-primary);
    padding-left: 20px;
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
        left: 10px;
        right: 10px;
        width: auto;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    .nav-menu-desktop {
        display: none;
    }

    .nav-btn {
        display: block;
    }
}

/* ============================================
   ZOOM CONTAINER - PERSPECTIVE EFFECT
   ============================================ */
.zoom-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    perspective: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, var(--color-black) 0%, #0c1929 100%);
}

.zoom-heading {
    font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
    line-height: 1.2;
    text-align: center;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0;
    transform: translate3d(-50%, -50%, -2000px);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 10;
}

.zoom-item {
    position: absolute;
    transform-origin: center center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.zoom-item:hover {
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
}

.zoom-item[data-layer="3"] {
    opacity: 0.6;
    z-index: 3;
}

.zoom-item[data-layer="2"] {
    opacity: 0.4;
    z-index: 2;
}

.zoom-item[data-layer="1"] {
    opacity: 0.2;
    z-index: 1;
}

/* Zoom item positions */
.zoom-item:nth-child(2) {
    left: 5%;
    top: 15%;
    width: 15vw;
}

.zoom-item:nth-child(3) {
    right: 5%;
    top: 20%;
    width: 12vw;
}

.zoom-item:nth-child(4) {
    left: 25%;
    bottom: 20%;
    width: 10vw;
}

.zoom-item:nth-child(5) {
    right: 25%;
    bottom: 15%;
    width: 11vw;
}

.zoom-item:nth-child(6) {
    left: 15%;
    top: 35%;
    width: 13vw;
}

.zoom-item:nth-child(7) {
    right: 15%;
    top: 10%;
    width: 10vw;
}

.zoom-item:nth-child(8) {
    left: 8%;
    bottom: 10%;
    width: 9vw;
}

.zoom-item:nth-child(9) {
    right: 8%;
    bottom: 30%;
    width: 12vw;
}

.zoom-item:nth-child(10) {
    left: 35%;
    top: 8%;
    width: 8vw;
}

.zoom-item:nth-child(11) {
    right: 35%;
    top: 40%;
    width: 9vw;
}

.zoom-item:nth-child(12) {
    left: 45%;
    bottom: 8%;
    width: 7vw;
}

.zoom-item:nth-child(13) {
    right: 10%;
    top: 45%;
    width: 8vw;
}

.zoom-item:not(.zoom-heading) {
    max-height: 300px;
    max-width: 300px;
}

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

/* ============================================
   TEXT REVEAL SECTION
   ============================================ */
.section-stick {
    min-height: 100vh;
    background: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.opacity-reveal {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    text-align: center;
    max-width: 80%;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    color: var(--color-white);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--color-gray-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-img-1 {
    width: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-content {
    padding: 20px;
}

.about-text {
    color: var(--color-gray-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: var(--color-primary);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TOURS SECTION
   ============================================ */
.tours-section {
    padding: 120px 40px;
    background: var(--color-dark);
}

.tours-header {
    text-align: center;
    margin-bottom: 60px;
}

.tours-header .section-subtitle {
    margin-top: 15px;
}

.tours-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* New Glassmorphism Tour Cards */
.tour-card {
    position: relative;
    color: #e5e5e5;
    border-radius: 2rem;
    overflow: hidden;
    padding: 0.75rem;
    background: rgba(53, 53, 53, 0.4);
    box-shadow: inset 0 0 4px -2px rgba(255, 255, 255, 0.3),
        0 0 4px -2px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-primary));
    background-size: 300% 300%;
    border-radius: 2.1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: inset 0 0 4px -2px rgba(255, 255, 255, 0.5),
        0 0 4px -2px rgba(255, 255, 255, 0.5),
        0 30px 60px rgba(14, 165, 233, 0.3);
    border-color: transparent;
    background: rgba(53, 53, 53, 0.8);
}

.tour-card-inner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    display: grid;
    grid-template-areas: "stack";
    box-shadow: inset 0 0 4px -2px rgba(255, 255, 255, 0.3),
        0 0 4px -2px rgba(255, 255, 255, 0.3);
}

.tour-card-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    mask: linear-gradient(-14deg, black 30%, transparent 66%);
    -webkit-mask: linear-gradient(-14deg, black 30%, transparent 66%);
    pointer-events: none;
}

.tour-card-image {
    grid-area: stack;
    height: 280px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(16, 185, 129, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.tour-card:hover .tour-card-overlay {
    opacity: 1;
}

.view-details {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.view-details:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.view-details i {
    transition: transform 0.3s ease;
}

.tour-card:hover .view-details i {
    transform: translateX(5px);
}

.tour-card-content {
    grid-area: stack;
    z-index: 2;
    margin-top: auto;
    padding: 1.5rem;
}

.tour-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.tour-card-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
}

.tour-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tour-card-meta span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

.tour-card-meta i {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .tours-section {
        padding: 60px 20px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-header .section-subtitle {
    margin-top: 15px;
}

.packages-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--color-primary);
    transform: translateX(15px);
}

.package-card.honeymoon {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.package-card.honeymoon:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: #ec4899;
}

.package-days {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 15px;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--color-white);
}

.package-card.honeymoon .package-days {
    background: #ec4899;
}

.package-info {
    flex: 1;
    min-width: 0;
}

.package-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-card>i {
    font-size: 20px;
    color: var(--color-gray);
    transition: all 0.3s ease;
}

.package-card:hover>i {
    color: var(--color-primary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 20px;
    }

    .package-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        height: auto;
    }

    .package-days {
        font-size: 24px;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .package-info h3 {
        white-space: normal;
    }

    .package-card>i {
        display: none;
    }
}

/* ============================================
   TRIP PLANNER SECTION
   ============================================ */
.trip-planner-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--color-black) 0%, #0c1929 50%, var(--color-dark) 100%);
}

.trip-planner-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.trip-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: var(--color-dark);
}

.submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 18px 40px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5),
        0 0 0 4px rgba(14, 165, 233, 0.2);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}

@media (max-width: 768px) {
    .trip-planner-section {
        padding: 80px 20px;
    }

    .trip-form {
        padding: 30px 20px;
    }

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 40px;
    background: var(--color-dark);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text {
    color: var(--color-gray-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 24px;
    color: var(--color-primary);
    width: 30px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 12px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item .value {
    font-size: 16px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 40px 40px;
    background: var(--color-black);
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 18px;
    color: var(--color-gray-light);
    font-style: italic;
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-gray);
}

.footer-developer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-developer a {
    color: var(--color-primary);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--color-primary), #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-developer a:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.back-to-top {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

/* ============================================
   TOUR MODALS
   ============================================ */
.tour-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.tour-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--color-dark);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.tour-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(53, 53, 53, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: rotate(90deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.modal-hero {
    position: relative;
    height: 300px;
}

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

.modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--color-dark) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.modal-hero-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.modal-hero-overlay p {
    color: var(--color-gray-light);
    font-size: 16px;
}

.modal-body {
    padding: 40px;
}

.modal-section {
    margin-bottom: 40px;
}

.modal-section:last-of-type {
    margin-bottom: 30px;
}

.modal-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.modal-section h3 i {
    color: var(--color-primary);
}

.modal-section>p {
    color: var(--color-gray-light);
    line-height: 1.8;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.place-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.place-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.place-item h4 {
    padding: 15px 15px 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.place-item p {
    padding: 0 15px 15px;
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.5;
}

.includes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray-light);
}

.includes-list li i {
    color: var(--color-secondary);
    font-size: 12px;
}

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

.detail-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 11px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.modal-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.modal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modal-cta:hover::before {
    left: 100%;
}

.modal-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5),
        0 0 0 3px rgba(14, 165, 233, 0.3);
}

.modal-cta:active {
    transform: translateY(-2px) scale(0.98);
}

.modal-cta i {
    transition: transform 0.3s ease;
}

.modal-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .modal-body {
        padding: 20px;
        max-height: 60vh;
        overflow-y: auto;
    }

    .modal-hero {
        height: 180px;
    }

    .modal-hero-overlay {
        padding: 20px;
    }

    .modal-hero-overlay h2 {
        font-size: 1.5rem;
    }

    .includes-list {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .place-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-right: 10px;
    }

    .place-item img {
        width: 80px;
        height: 80px;
        border-radius: 12px 0 0 12px;
    }

    .place-item h4 {
        padding: 0;
        margin-bottom: 5px;
    }

    .place-item p {
        display: none;
        /* Hide description on mobile for compactness */
    }

    .place-item-content {
        flex: 1;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--color-white);
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ============================================
   ADDITIONAL BUTTON ANIMATIONS
   ============================================ */

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn-ripple:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Magnetic Button Effect via JS */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glow Pulse Animation */
.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.6), 0 0 60px rgba(14, 165, 233, 0.3);
    }
}

/* Border Animation */
.btn-border-anim {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-border-anim::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Modal scrollbar */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--color-dark);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
}

.welcome-container {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-top: 20px;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.highlights-section {
    padding: 100px 5%;
    background: var(--color-dark);
}

.highlights-header {
    text-align: center;
    margin-bottom: 60px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 32px;
    color: var(--color-white);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.highlight-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 5%;
    background: var(--color-black);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-icon i {
    font-size: 24px;
    color: var(--color-white);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   WHY TRAVEL WITH US SECTION
   ============================================ */
.why-travel-section {
    padding: 100px 5%;
    background: var(--color-dark);
}

.why-travel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.why-travel-content {
    padding-right: 40px;
}

.travel-reasons {
    margin-top: 40px;
}

.reason-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateX(10px);
}

.reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    min-width: 60px;
}

.reason-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.reason-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-travel-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-travel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why-travel-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), transparent);
    border-radius: 20px;
    z-index: 1;
}

/* ============================================
   TAXI SECTION
   ============================================ */
.taxi-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
}

.taxi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.taxi-content {
    padding-right: 40px;
}

.taxi-text {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin: 20px 0 40px;
    line-height: 1.8;
}

.taxi-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.taxi-service-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.taxi-service-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.taxi-service-item i {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: block;
}

.taxi-service-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.taxi-service-item p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.taxi-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.taxi-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.taxi-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.taxi-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* ============================================
   NAVIGATION DROPDOWN
   ============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown .nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--color-gray-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-primary);
    padding-left: 30px;
}

/* ============================================
   PLACES LIST IN MODALS
   ============================================ */
.places-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.places-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-light);
    font-size: 0.95rem;
}

.places-list li i {
    color: var(--color-primary);
    font-size: 14px;
}

/* ============================================
   ITINERARY STYLES FOR MULTI-DAY PACKAGES
   ============================================ */
.itinerary-section {
    margin-top: 20px;
}

.day-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-card:hover {
    border-color: var(--color-primary);
    background: rgba(14, 165, 233, 0.05);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(14, 165, 233, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.day-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
}

.day-location {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    font-weight: 500;
}

.day-activities {
    padding: 20px 25px;
}

.day-activities li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-gray-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.day-activities li:last-child {
    border-bottom: none;
}

.day-activities li i {
    color: var(--color-primary);
    font-size: 6px;
    margin-top: 8px;
}

/* Honeymoon Day Card */
.day-card.honeymoon-day .day-header {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(244, 63, 94, 0.2));
}

.day-card.honeymoon-day .day-number {
    color: #f43f5e;
}

.day-card.honeymoon-day .day-activities li i {
    color: #f43f5e;
    font-size: 12px;
}

.honeymoon-cta {
    background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
}

.honeymoon-cta:hover {
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.4) !important;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 992px) {

    .why-travel-container,
    .taxi-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-travel-content,
    .taxi-content {
        padding-right: 0;
    }

    .why-travel-image {
        order: -1;
    }

    .taxi-services {
        grid-template-columns: 1fr;
    }

    .taxi-image img {
        height: 350px;
    }
}


/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 2px;
}

@media (max-width: 768px) {

    .highlights-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .reason-item {
        flex-direction: column;
        gap: 15px;
    }

    .reason-number {
        font-size: 1.5rem;
    }

    .nav-dropdown .dropdown-content {
        display: none;
    }

    .places-list {
        grid-template-columns: 1fr;
    }

    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ==================== FORM NOTIFICATION ==================== */
.form-notification-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
}

.form-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    z-index: 10000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
}

.form-notification.success {
    background: rgba(16, 185, 129, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-notification.error {
    background: rgba(239, 68, 68, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-notification i.status-icon {
    font-size: 40px;
    color: white;
    margin-bottom: 5px;
}

.form-notification span {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    width: auto;
    height: auto;
}

.notification-close:hover {
    background: white;
    color: var(--color-black);
    transform: translateY(-2px);
}

/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 768px) {

    /* --- Global & Typography --- */
    :root {
        --section-padding: 60px 20px;
    }

    h1.zoom-heading {
        font-size: 2.5rem !important;
        /* Force smaller size */
        white-space: normal;
        /* Allow wrapping */
        width: 90%;
        line-height: 1.2;
    }

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

    .opacity-reveal {
        font-size: 1.5rem;
        padding: 0 10px;
        opacity: 1 !important;
        transform: none !important;
    }

    /* --- Header --- */
    .header {
        padding: 10px 15px;
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 15px;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    /* --- Zoom Hero Section --- */
    /* Adjust positions to keep them visible but not overflowing */
    .zoom-item {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        /* Reduce shadow */
    }

    .zoom-item:not(.zoom-heading) {
        max-height: 150px;
        /* Smaller images */
        max-width: 150px;
    }

    /* Reposing items for portrait mode */
    .zoom-item:nth-child(2) {
        left: 5%;
        top: 15%;
        width: 25vw;
    }

    .zoom-item:nth-child(3) {
        right: 5%;
        top: 18%;
        width: 22vw;
    }

    .zoom-item:nth-child(4) {
        left: 10%;
        bottom: 25%;
        width: 20vw;
    }

    .zoom-item:nth-child(5) {
        right: 10%;
        bottom: 20%;
        width: 22vw;
    }

    .zoom-item:nth-child(6) {
        left: 50%;
        top: 10%;
        transform: translateX(-50%);
        width: 25vw;
    }

    /* Center top */
    .zoom-item:nth-child(7) {
        right: 5%;
        top: 40%;
        width: 18vw;
    }

    .zoom-item:nth-child(8) {
        left: 5%;
        bottom: 10%;
        width: 18vw;
    }

    .zoom-item:nth-child(9) {
        right: 5%;
        bottom: 40%;
        width: 20vw;
    }

    /* Hide some background layers on mobile to reduce clutter */
    .zoom-item[data-layer="1"] {
        display: none;
    }

    /* --- Sections Spacing --- */
    .welcome-section,
    .highlights-section,
    .why-choose-section,
    .why-travel-section,
    .tours-section,
    .packages-section,
    .taxi-section,
    .trip-planner-section,
    .contact-section,
    .about-section {
        padding: 60px 20px;
    }

    /* --- Grids (Single Column) --- */
    .highlights-grid,
    .why-choose-grid,
    .tours-grid,
    .taxi-services,
    .details-grid,
    .places-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-container,
    .why-travel-container,
    .taxi-container,
    .contact-container,
    .includes-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* --- About Section --- */
    .about-images {
        height: 300px;
        /* Smaller container */
        margin-bottom: 20px;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* --- Packages --- */
    .packages-container {
        width: 100%;
        max-width: 100%;
    }

    .package-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .package-days {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 10px;
    }

    .package-card>i {
        align-self: flex-end;
        /* Arrow to bottom right */
        margin-top: -20px;
    }

    /* --- Trip Planner Form --- */
    .trip-form {
        padding: 25px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Stack inputs */
        gap: 15px;
    }

    /* --- Contact --- */
    .contact-content {
        padding-right: 0;
        order: 2;
        /* Image first? No, content first is usually better for mobile, let's keep default (content top) */
    }

    .contact-image {
        order: 1;
        /* Move image to top if desired, or keep at bottom. Let's keep bottom. */
        margin-top: 20px;
        height: 300px;
        /* Restrict height */
    }

    .contact-image img {
        height: 100%;
        object-fit: cover;
    }

    /* --- Modals --- */
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 85vh;
    }

    .modal-hero {
        height: 180px;
    }

    .modal-hero-overlay h2 {
        font-size: 1.8rem;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 20px;
    }

    .back-to-top {
        right: 20px;
        bottom: 90px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* --- WhatsApp Float --- */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* --- Mobile Menu Fixes --- */
    .mobile-menu-content {
        padding-top: 100px;
    }

    .mobile-link {
        font-size: 20px;
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
        opacity: 0.8;
    }

    .mobile-menu-close:hover {
        transform: rotate(90deg);
        opacity: 1;
        color: var(--color-primary);
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .zoom-heading {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: var(--color-gray-light);
    padding: 80px 0 30px;
    font-size: 0.95rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.footer-desc {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
    border-color: var(--color-primary);
}

/* Links Columns */
.footer-col h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links li a {
    color: var(--color-gray);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Contact Column */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-gray);
}

.contact-list li i {
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 5px;
}

.contact-list li a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--color-gray);
}

.developer a {
    color: var(--color-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer a:hover {
    color: var(--color-primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    /* Keep it fixed */
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-col {
        align-items: center;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .back-to-top {
        bottom: 90px;
        /* Adjust for WhatsApp button overlap if needed, or keep same */
    }
}