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

:root {
    --navy: #121358;
    --royal: #232F72;
    --ocean: #2F578A;
    --turq: #36ADA3;
    --white: #fff;
    --bg: #F5F8FC;
    --gray: #E9EEF5;
    --dark: #101828;
    --overlay: rgba(18, 19, 88, 0.75);
    --radius: 16px;
    --shadow: 0 8px 32px rgba(18, 19, 88, 0.12);
    --glass: rgba(255, 255, 255, 0.08);
    --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.section-pad {
    padding: 100px 0
}

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

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(54, 173, 163, 0.1), rgba(47, 87, 138, 0.1));
    color: var(--turq);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 16px
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    font-family: 'Montserrat', sans-serif
}

.btn-primary {
    background: linear-gradient(135deg, var(--turq), var(--ocean));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(54, 173, 163, 0.35)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(54, 173, 163, 0.5)
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy)
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--tr)
}

.navbar.scrolled {
    background: rgba(18, 19, 88, 0.85);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15)
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white)
}

.brand-logo {
    height: 48px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white)
}

.footer-logo {
    height: 64px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 16px;
    object-fit: cover;
    background: var(--white)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 0
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turq);
    transition: var(--tr)
}

.nav-links a:hover {
    color: var(--white)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta .btn {
    padding: 12px 28px;
    font-size: 0.88rem
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    transition: var(--tr);
    border-radius: 2px
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--navy), var(--royal));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999
}

.mobile-menu.active {
    transform: translateX(0)
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease
}

.hero-slide.active {
    opacity: 1
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 19, 88, 0.8), rgba(47, 87, 138, 0.6));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 32px
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.15
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--turq), #5de0d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.8
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    display: flex;
    gap: 32px
}

.hero-stat {
    text-align: center;
    color: var(--white)
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif
}

.hero-stat .label {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-top: 4px
}

/* BOOKING BOX */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 24px
}

.booking-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 20px 60px rgba(18, 19, 88, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 1200px;
    margin: 0 auto
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 16px;
    align-items: end
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--tr);
    background: var(--white);
    color: var(--dark)
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--turq);
    box-shadow: 0 0 0 4px rgba(54, 173, 163, 0.1)
}

.booking-form .btn {
    padding: 14px 28px;
    height: fit-content
}

/* PARTNERS */
.partners {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray)
}

.partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5
}

.partners-track span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy)
}

/* DESTINATIONS */
.destinations {
    background: var(--bg)
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: var(--shadow)
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease
}

.dest-card:hover img {
    transform: scale(1.08)
}

.dest-card .dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 19, 88, 0.85) 0%, transparent 60%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--tr)
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(18, 19, 88, 0.95) 0%, rgba(18, 19, 88, 0.2) 60%)
}

.dest-card .dest-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--turq);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600
}

.dest-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 6px
}

.dest-card .dest-info {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px
}

.dest-card .dest-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin-top: 8px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.dest-card .dest-price {
    color: var(--turq);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 12px
}

/* PACKAGES */
.packages {
    background: var(--white)
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 28px
}

.pkg-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--tr);
    border: 1px solid var(--gray)
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(18, 19, 88, 0.18)
}

.pkg-card .pkg-img {
    height: 240px;
    overflow: hidden;
    position: relative
}

.pkg-card .pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.06)
}

.pkg-card .pkg-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--turq), var(--ocean));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600
}

.pkg-card .pkg-body {
    padding: 24px
}

.pkg-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px
}

.pkg-card .pkg-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.pkg-card .pkg-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #64748b
}

.pkg-card .pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray)
}

.pkg-card .pkg-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy)
}

.pkg-card .pkg-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: #64748b
}

/* SERVICES */
.services {
    background: linear-gradient(135deg, var(--navy), var(--royal))
}

.services .section-header h2,
.services .section-header p {
    color: var(--white)
}

.services .section-header .badge {
    background: rgba(54, 173, 163, 0.2);
    color: var(--turq)
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px
}

.srv-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--tr);
    cursor: pointer
}

.srv-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: var(--turq);
    box-shadow: 0 0 30px rgba(54, 173, 163, 0.2)
}

.srv-card .srv-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--turq), var(--ocean));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--tr)
}

.srv-card:hover .srv-icon {
    transform: scale(1.1) rotate(-5deg)
}

.srv-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 8px
}

.srv-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem
}

/* WHY CHOOSE */
.why-choose {
    background: var(--bg)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.why-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 520px
}

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

.why-img .floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow)
}

.why-img .floating-card .fc-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--turq)
}

.why-img .floating-card .fc-text {
    font-size: 0.85rem;
    color: #64748b
}

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

.why-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    transition: var(--tr)
}

.why-item:hover {
    background: var(--white);
    box-shadow: var(--shadow)
}

.why-item .wi-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(54, 173, 163, 0.1), rgba(47, 87, 138, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--tr)
}

.why-item:hover .wi-icon {
    background: linear-gradient(135deg, var(--turq), var(--ocean))
}

.why-item h4 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 4px
}

.why-item p {
    font-size: 0.9rem;
    color: #64748b
}

/* VIDEO EXPERIENCE */
.video-exp {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.video-exp .vid-bg {
    position: absolute;
    inset: 0
}

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

.video-exp .vid-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay)
}

.video-exp .vid-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white)
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    cursor: pointer;
    transition: var(--tr);
    font-size: 2rem;
    color: var(--white)
}

.play-btn:hover {
    background: var(--turq);
    border-color: var(--turq);
    transform: scale(1.1)
}

.vid-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 40px
}

.vid-stat {
    text-align: center
}

.vid-stat .vs-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem
}

.vid-stat .vs-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px
}

/* VIDEO MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10000;
    transition: var(--tr);
}

.modal-close:hover {
    color: var(--turq);
    transform: scale(1.1);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* OFFERS */
.offers {
    background: var(--white)
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px
}

.offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    cursor: pointer
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease
}

.offer-card:hover img {
    transform: scale(1.06)
}

.offer-card .offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 19, 88, 0.9) 0%, transparent 50%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.offer-card .offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700
}

.offer-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px
}

.offer-card .offer-price {
    color: var(--turq);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px
}

.offer-card .countdown {
    display: flex;
    gap: 12px
}

.offer-card .countdown .cd-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    color: var(--white)
}

.offer-card .countdown .cd-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: block
}

.offer-card .countdown .cd-label {
    font-size: 0.65rem;
    opacity: 0.7
}

/* INSTAGRAM */
.instagram {
    background: var(--bg)
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px
}

.insta-grid .insta-item:first-child {
    grid-row: span 2
}

.insta-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer
}

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

.insta-item:hover img {
    transform: scale(1.08)
}

.insta-item .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 19, 88, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tr)
}

.insta-item:hover .insta-overlay {
    opacity: 1
}

.insta-item .insta-overlay span {
    color: var(--white);
    font-size: 1.5rem
}

/* TESTIMONIALS */
.testimonials {
    background: var(--white)
}

.test-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.test-card {
    text-align: center;
    padding: 40px
}

.test-card .stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 4px
}

.test-card .quote {
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.9;
    margin-bottom: 28px;
    font-style: italic
}

.test-card .client {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center
}

.test-card .client-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--turq)
}

.test-card .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.test-card .client-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy)
}

.test-card .client-loc {
    font-size: 0.85rem;
    color: #64748b
}

.test-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px
}

.test-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--tr)
}

.test-dots .dot.active {
    background: var(--turq);
    width: 28px;
    border-radius: 5px
}

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(135deg, var(--navy), var(--royal));
    padding: 80px 0
}

.nl-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.nl-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px
}

.nl-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px
}

.nl-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto
}

.nl-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.5)
}

.nl-form input:focus {
    outline: none;
    border-color: var(--turq)
}

/* FOOTER */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-brand h3 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--tr);
    font-size: 1.1rem
}

.footer-social a:hover {
    background: var(--turq);
    transform: translateY(-3px)
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer ul a {
    font-size: 0.9rem;
    transition: var(--tr)
}

.footer ul a:hover {
    color: var(--turq);
    padding-left: 6px
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem
}

/* SCROLL ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* FLOATING ELEMENTS */
.floating {
    animation: float 6s ease-in-out infinite
}

@keyframes float {

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

    50% {
        transform: translateY(-20px)
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(54, 173, 163, 0.4)
    }

    50% {
        box-shadow: 0 0 0 20px rgba(54, 173, 163, 0)
    }
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .nav-links {
        display: none
    }

    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .booking-form {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .why-img {
        height: 380px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-stats {
        display: none
    }

    .vid-stats {
        gap: 24px
    }

    .pkg-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .section-pad {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .hero {
        height: auto;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-align: center
    }

    .hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }

    .hero-content .hero-badge {
        margin: 0 auto 14px;
        display: flex;
        width: fit-content
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center
    }

    .booking-section {
        margin-top: -30px
    }

    .booking-box {
        padding: 24px;
        border-radius: 20px
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .booking-form .btn {
        width: 100%;
        margin-top: 8px
    }

    .dest-grid {
        grid-template-columns: 1fr
    }

    .dest-card {
        height: 340px
    }

    .insta-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .insta-grid .insta-item:first-child {
        grid-row: auto
    }

    .video-exp {
        height: auto;
        padding: 80px 20px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .vid-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        padding: 24px 16px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 32px;
    }

    .vid-stat {
        flex: 1 1 40%;
    }

    .vid-stat .vs-num {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 32px
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 24px
    }

    .footer-brand .footer-logo {
        margin: 0 auto 16px
    }

    .footer-social {
        justify-content: center;
        margin-top: 16px
    }

    .footer-grid>div:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        margin-top: 8px
    }

    .offer-grid {
        grid-template-columns: 1fr
    }

    .nl-form {
        flex-direction: column
    }

    .nl-form .btn {
        width: 100%
    }

    .partners-track {
        gap: 30px
    }

    .partners-track span {
        font-size: 1rem
    }

    .why-img {
        height: 300px
    }

    .why-img .floating-card {
        bottom: 12px;
        left: 12px;
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .nav-logo .brand-text {
        display: inline-block;
        font-size: 1.2rem;
    }
}