
/* =========================================================
   JANTA TOUR & TRAVELS
   PREMIUM MASTER STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --primary: #0757a8;
    --primary-dark: #033b78;
    --primary-light: #0d75d8;

    --orange: #f47b20;
    --gold: #e8ad38;

    --white: #ffffff;
    --black: #111827;

    --text: #263447;
    --muted: #6b7280;

    --light: #f5f8fc;
    --light-blue: #eef6ff;

    --border: #e4e9f0;

    --success: #20b76b;

    --shadow-sm:
        0 5px 20px rgba(8, 44, 86, .08);

    --shadow:
        0 15px 45px rgba(8, 44, 86, .12);

    --shadow-lg:
        0 25px 70px rgba(8, 44, 86, .18);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --transition:
        all .35s cubic-bezier(.4, 0, .2, 1);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


body.loading {

    overflow: hidden;

}


img {

    width: 100%;

    display: block;

    object-fit: cover;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


button {

    cursor: pointer;

    border: 0;

}


ul {

    list-style: none;

}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #031d3a,
            #0757a8
        );

    transition:
        opacity .7s ease,
        visibility .7s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-wrapper {

    width: min(90%, 360px);

    text-align: center;

    color: white;

}


.loader-logo {

    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--gold)
        );

    box-shadow:
        0 0 0 10px rgba(255,255,255,.08),
        0 15px 40px rgba(0,0,0,.25);

    animation:
        loaderFloat 2s ease-in-out infinite;

}


.loader-logo i {

    font-size: 32px;

    color: white;

}


.loader-brand {

    margin-top: 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    font-weight: 700;

}


.loader-tagline {

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 3px;

    opacity: .7;

}


.loader-line {

    height: 4px;

    width: 100%;

    margin-top: 28px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.15);

}


.loader-line span {

    display: block;

    height: 100%;

    width: 0;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--gold)
        );

    animation:
        loaderProgress 1.5s ease forwards;

}


@keyframes loaderProgress {

    to {
        width: 100%;
    }

}


@keyframes loaderFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: #062c56;

    color: rgba(255,255,255,.85);

    font-size: 13px;

}


.top-bar-inner {

    max-width: 1400px;

    min-height: 40px;

    margin: auto;

    padding:
        0 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 22px;

}


.top-left span {

    display: flex;

    align-items: center;

    gap: 7px;

}


.top-left i {

    color: var(--gold);

}


.top-right a {

    width: 26px;

    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transition: var(--transition);

}


.top-right a:hover {

    color: white;

    background: var(--orange);

    transform: translateY(-2px);

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: absolute;

    top: 40px;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);

}


.main-header.scrolled {

    position: fixed;

    top: 0;

    background:
        rgba(255,255,255,.96);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow-sm);

}


.nav-container {

    max-width: 1400px;

    min-height: 90px;

    margin: auto;

    padding:
        0 35px;

    display: flex;

    align-items: center;

    gap: 30px;

}


.main-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    flex-shrink: 0;

}


.scrolled .main-logo {

    color: var(--primary-dark);

}


.logo-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--gold)
        );

    color: white;

    font-size: 22px;

}


.logo-content strong {

    display: block;

    font-size: 18px;

    line-height: 1.1;

    letter-spacing: 1px;

}


.logo-content strong span {

    display: block;

    font-size: 10px;

    letter-spacing: 1.8px;

}


.logo-content small {

    display: block;

    margin-top: 3px;

    font-size: 7px;

    letter-spacing: 2px;

    opacity: .7;

}


.main-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 5px;

}


.main-nav a {

    position: relative;

    padding: 10px 12px;

    color: rgba(255,255,255,.9);

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);

}


.scrolled .main-nav a {

    color: var(--text);

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 2px;

    height: 2px;

    background: var(--orange);

    transform: scaleX(0);

    transform-origin: center;

    transition: var(--transition);

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--orange);

}


.main-nav a:hover::after,
.main-nav a.active::after {

    transform: scaleX(1);

}


.nav-call {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 30px;

    background: var(--orange);

    color: white;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 8px 25px rgba(244,123,32,.3);

    transition: var(--transition);

}


.nav-call:hover {

    background: var(--gold);

    transform: translateY(-2px);

}


.mobile-menu {

    display: none;

    width: 44px;

    height: 44px;

    margin-left: auto;

    border-radius: 10px;

    background: var(--primary);

    color: white;

    font-size: 20px;

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 780px;

    height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

}


.hero-slide {

    position: absolute;

    inset: 0;

    background-position: center;

    background-size: cover;

    opacity: 0;

    transform: scale(1.05);

    transition:
        opacity 1s ease,
        transform 7s ease;

}


.hero-slide.active {

    opacity: 1;

    transform: scale(1);

}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    margin: auto;

    padding-top: 80px;

}


.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 30px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    color: #ffd980;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.hero-content h1 {

    max-width: 850px;

    margin-top: 22px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(45px, 6vw, 82px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.hero-content h1 span {

    color: #ffc55c;

}


.hero-content > p {

    max-width: 650px;

    margin-top: 25px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;

}


.btn-primary,
.btn-outline,
.dark-btn,
.whatsapp-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #e9610a
        );

    color: white;

    box-shadow:
        0 12px 30px rgba(244,123,32,.28);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(244,123,32,.38);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,.5);

    background:
        rgba(255,255,255,.08);

    color: white;

    backdrop-filter: blur(10px);

}


.btn-outline:hover {

    background: white;

    color: var(--primary);

}


.hero-trust {

    display: flex;

    gap: 40px;

    margin-top: 50px;

}


.hero-trust > div {

    display: flex;

    flex-direction: column;

}


.hero-trust strong {

    color: #ffc55c;

    font-size: 25px;

}


.hero-trust span {

    color: rgba(255,255,255,.7);

    font-size: 11px;

}


.hero-dots {

    position: absolute;

    right: 45px;

    top: 50%;

    z-index: 4;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.hero-dots button {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.4);

    transition: var(--transition);

}


.hero-dots button.active {

    height: 30px;

    border-radius: 10px;

    background: var(--orange);

}


.scroll-indicator {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 4;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: rgba(255,255,255,.7);

    font-size: 9px;

    letter-spacing: 2px;

}


.scroll-indicator i {

    animation:
        scrollBounce 1.5s infinite;

}


@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================================
   SEARCH
========================================================= */

.travel-search {

    position: relative;

    z-index: 10;

    margin-top: -70px;

}


.search-card {

    width: min(1200px, 90%);

    margin: auto;

    padding: 22px;

    border-radius: 18px;

    background: white;

    box-shadow: var(--shadow-lg);

}


.search-heading {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 15px;

}


.search-heading > span {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--light-blue);

    color: var(--primary);

}


.search-heading small {

    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.search-heading h3 {

    font-size: 17px;

}


#travelSearchForm {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr auto;

    gap: 12px;

}


.search-field {

    min-height: 65px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 15px;

    border: 1px solid var(--border);

    border-radius: 10px;

    transition: var(--transition);

}


.search-field:focus-within {

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(7,87,168,.07);

}


.search-field > i {

    color: var(--orange);

}


.search-field label {

    display: block;

    color: var(--muted);

    font-size: 10px;

}


.search-field select {

    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--text);

    font-weight: 600;

    font-size: 13px;

}


.search-btn {

    min-width: 130px;

    border-radius: 10px;

    background: var(--primary);

    color: white;

    font-weight: 700;

    transition: var(--transition);

}


.search-btn:hover {

    background: var(--orange);

    transform: translateY(-2px);

}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section-container {

    width: min(1200px, 90%);

    margin: auto;

}


section:not(.hero-section) {

    padding: 100px 0;

}


.section-heading {

    margin-bottom: 45px;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

}


.section-heading.center {

    display: block;

    text-align: center;

}


.section-label {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2,
.intro-content h2,
.why-content h2 {

    font-family:
        "Playfair Display",
        serif;

    color: var(--primary-dark);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.15;

}


.section-heading h2 span,
.intro-content h2 span,
.why-content h2 span {

    color: var(--primary);

}


.section-heading p {

    max-width: 620px;

    margin: 12px auto 0;

    color: var(--muted);

}


.view-all,
.text-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);

}


.view-all:hover,
.text-btn:hover {

    color: var(--orange);

    gap: 13px;

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    background: white;

}


.section-container {

    position: relative;

}


.intro-section .section-container {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;

}


.intro-image {

    position: relative;

    padding: 12px;

}


.intro-image::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 65%;

    height: 70%;

    border-radius: 25px;

    background:
        var(--light-blue);

    z-index: 0;

}


.intro-image img {

    position: relative;

    z-index: 1;

    height: 500px;

    border-radius: 25px;

    box-shadow: var(--shadow);

}


.experience-badge {

    position: absolute;

    right: -10px;

    bottom: 45px;

    z-index: 2;

    width: 145px;

    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--gold)
        );

    color: white;

    box-shadow: var(--shadow);

}


.experience-badge strong {

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;

    line-height: 1;

}


.experience-badge span {

    text-align: center;

    font-size: 11px;

}


.intro-content > p {

    margin-top: 18px;

    color: var(--muted);

}


.intro-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin: 30px 0;

}


.intro-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

}


.intro-features i {

    color: var(--orange);

    font-size: 20px;

}


/* =========================================================
   DESTINATIONS
========================================================= */

.destinations-section {

    background: var(--light);

}


.destination-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    grid-template-rows:
        260px 260px;

    gap: 18px;

}


.destination-card {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

}


.destination-card.large {

    grid-row: span 2;

}


.destination-card img {

    width: 100%;

    height: 100%;

    transition:
        transform .7s ease;

}


.destination-card:hover img {

    transform: scale(1.08);

}


.destination-overlay {

    position: absolute;

    inset: auto 0 0;

    padding: 25px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.82)
        );

}


.destination-overlay span {

    font-size: 10px;

    letter-spacing: 1px;

    opacity: .8;

}


.destination-overlay h3 {

    margin-top: 2px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 27px;

}


.destination-overlay p {

    font-size: 11px;

    opacity: .75;

}


.destination-overlay > i {

    position: absolute;

    right: 22px;

    bottom: 25px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

}


/* =========================================================
   PACKAGES
========================================================= */

.packages-section {

    background: white;

}


.package-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.package-card {

    overflow: hidden;

    border-radius: 18px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}


.package-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}


.package-image {

    position: relative;

    height: 250px;

    overflow: hidden;

}


.package-image img {

    height: 100%;

    transition: .7s ease;

}


.package-card:hover .package-image img {

    transform: scale(1.08);

}


.package-tag {

    position: absolute;

    top: 15px;

    left: 15px;

    padding: 6px 10px;

    border-radius: 5px;

    background: var(--orange);

    color: white;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.wishlist {

    position: absolute;

    right: 15px;

    top: 15px;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.9);

    color: var(--primary);

}


.package-content {

    padding: 22px;

}


.package-location {

    color: var(--orange);

    font-size: 10px;

    font-weight: 700;

}


.package-content h3 {

    margin-top: 7px;

    color: var(--primary-dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;

    line-height: 1.2;

}


.package-content > p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

}


.package-meta {

    display: flex;

    gap: 18px;

    padding: 15px 0;

    margin-top: 10px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.package-meta span {

    color: var(--muted);

    font-size: 10px;

}


.package-meta i {

    color: var(--primary);

}


.package-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 17px;

}


.package-bottom small {

    color: var(--muted);

    font-size: 9px;

}


.package-bottom strong {

    color: var(--primary);

    font-size: 22px;

}


.package-arrow {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--light-blue);

    color: var(--primary);

    transition: var(--transition);

}


.package-card:hover .package-arrow {

    background: var(--orange);

    color: white;

    transform: rotate(-45deg);

}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {

    background:
        linear-gradient(
            135deg,
            #f5f9ff,
            #eef5fc
        );

}


.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.category-card {

    padding: 30px 25px;

    border-radius: 18px;

    background: white;

    border: 1px solid var(--border);

    transition: var(--transition);

}


.category-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(7,87,168,.2);

    box-shadow: var(--shadow);

}


.category-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: var(--light-blue);

    color: var(--primary);

    font-size: 23px;

}


.category-card h3 {

    margin-top: 20px;

    color: var(--primary-dark);

    font-size: 18px;

}


.category-card p {

    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

}


.category-card span {

    display: inline-flex;

    gap: 7px;

    margin-top: 20px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   WHY US
========================================================= */

.why-section {

    background: white;

}


.why-section .section-container {

    display: grid;

    grid-template-columns:
        1fr .9fr;

    gap: 80px;

    align-items: center;

}


.why-content > p {

    margin-top: 15px;

    color: var(--muted);

}


.why-list {

    margin-top: 35px;

    display: grid;

    gap: 20px;

}


.why-item {

    display: flex;

    gap: 15px;

}


.why-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--light-blue);

    color: var(--primary);

}


.why-item h4 {

    color: var(--primary-dark);

    font-size: 15px;

}


.why-item p {

    color: var(--muted);

    font-size: 11px;

}


.why-image {

    position: relative;

}


.why-image img {

    height: 550px;

    border-radius: 25px;

}


.why-floating {

    position: absolute;

    left: -35px;

    bottom: 35px;

    padding: 20px;

    min-width: 170px;

    border-radius: 15px;

    background: white;

    box-shadow: var(--shadow-lg);

}


.why-floating i {

    color: var(--gold);

}


.why-floating strong {

    display: block;

    color: var(--primary);

    font-size: 25px;

}


.why-floating span {

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   RELIGIOUS
========================================================= */

.religious-section {

    background: var(--light);

}


.religious-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.religious-card {

    position: relative;

    height: 390px;

    overflow: hidden;

    border-radius: 18px;

}


.religious-card img {

    height: 100%;

    transition: .7s ease;

}


.religious-card:hover img {

    transform: scale(1.08);

}


.religious-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0,0,0,.85)
        );

}


.religious-card > div {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 22px;

    z-index: 2;

    color: white;

}


.religious-card span {

    font-size: 9px;

    color: #ffd47d;

    letter-spacing: 1px;

}


.religious-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

}


/* =========================================================
   HONEYMOON
========================================================= */

.honeymoon-section {

    min-height: 560px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3,20,45,.9),
            rgba(3,20,45,.45)
        ),
        url("https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=2200&q=90")
        center / cover;

    color: white;

}


.honeymoon-content {

    width: min(1200px,90%);

    margin: auto;

}


.section-label.light {

    color: #ffd078;

}


.honeymoon-content h2 {

    max-width: 750px;

    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(40px, 5vw, 65px);

    line-height: 1.1;

}


.honeymoon-content h2 span {

    color: #ffc55c;

}


.honeymoon-content p {

    max-width: 600px;

    margin: 20px 0 30px;

    color: rgba(255,255,255,.8);

}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {

    background: white;

}


.review-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.review-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition: var(--transition);

}


.review-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


.stars {

    color: var(--gold);

    letter-spacing: 3px;

}


.review-card > p {

    margin: 20px 0;

    color: var(--muted);

    font-size: 13px;

    font-style: italic;

}


.review-user {

    display: flex;

    align-items: center;

    gap: 12px;

}


.review-avatar {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    font-weight: 800;

    font-size: 12px;

}


.review-user strong {

    display: block;

    font-size: 13px;

}


.review-user span {

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-preview {

    background: var(--light);

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;

}


.gallery-item {

    position: relative;

    height: 250px;

    overflow: hidden;

    border-radius: 15px;

}


.gallery-item img {

    height: 100%;

    transition: .6s ease;

}


.gallery-item:hover img {

    transform: scale(1.08);

}


.gallery-item > div {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(3,20,45,.45);

    opacity: 0;

    transition: var(--transition);

}


.gallery-item:hover > div {

    opacity: 1;

}


.gallery-item i {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--primary);

}


/* =========================================================
   CTA
========================================================= */

.home-cta {

    padding: 65px 0 !important;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: white;

}


.cta-container {

    width: min(1200px,90%);

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.cta-container > div:first-child > span {

    color: #ffd078;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.cta-container h2 {

    margin-top: 8px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 40px;

    line-height: 1.15;

}


.cta-container h2 strong {

    color: #ffc55c;

}


.cta-container p {

    margin-top: 8px;

    color: rgba(255,255,255,.7);

}


.cta-actions {

    display: flex;

    gap: 12px;

    flex-shrink: 0;

}


.whatsapp-btn {

    background: #20b76b;

    color: white;

}


.whatsapp-btn:hover {

    background: #159b58;

    transform: translateY(-3px);

}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {

    background: #031d3a;

    color: rgba(255,255,255,.7);

}


.footer-container {

    width: min(1200px,90%);

    margin: auto;

    padding: 75px 0 50px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.3fr;

    gap: 45px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

}


.footer-logo > div {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--orange);

}


.footer-logo span {

    font-weight: 800;

    font-size: 17px;

}


.footer-logo small {

    display: block;

    font-size: 9px;

    letter-spacing: 1.5px;

}


.footer-brand > p {

    max-width: 300px;

    margin-top: 20px;

    font-size: 12px;

    line-height: 1.8;

}


.footer-socials {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.footer-socials a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    transition: var(--transition);

}


.footer-socials a:hover {

    background: var(--orange);

    color: white;

    transform: translateY(-3px);

}


.footer-column h4 {

    margin-bottom: 20px;

    color: white;

    font-size: 15px;

}


.footer-column > a {

    display: block;

    margin-bottom: 10px;

    font-size: 12px;

    transition: var(--transition);

}


.footer-column > a:hover {

    color: var(--gold);

    padding-left: 5px;

}


.footer-contact > div {

    display: flex;

    gap: 12px;

    margin-bottom: 17px;

    font-size: 11px;

}


.footer-contact i {

    width: 16px;

    color: var(--orange);

}


.footer-contact a:hover {

    color: var(--gold);

}


.footer-bottom {

    width: min(1200px,90%);

    margin: auto;

    padding: 20px 0;

    border-top:
        1px solid rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 10px;

}


.footer-bottom strong {

    color: white;

}


.legal-links {

    display: flex;

    gap: 20px;

}


.legal-links a:hover {

    color: var(--gold);

}


/* =========================================================
   FLOATING ACTIONS
========================================================= */

.floating-actions {

    position: fixed;

    right: 20px;

    bottom: 25px;

    z-index: 5000;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating-actions a {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: white;

    font-size: 20px;

    box-shadow: var(--shadow);

    transition: var(--transition);

}


.floating-actions a:hover {

    transform: scale(1.1);

}


.floating-whatsapp {

    background: #20b76b;

}


.floating-phone {

    background: var(--primary);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 145px;

    z-index: 4000;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    box-shadow: var(--shadow);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--primary);

    transform: translateY(-3px);

}


/* =========================================================
   GENERIC INNER PAGE SUPPORT
========================================================= */

.page-hero {

    min-height: 420px;

    padding-top: 150px;

    display: flex;

    align-items: center;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(3,20,45,.9),
            rgba(3,20,45,.45)
        ),
        center / cover;

}


.page-hero-content {

    width: min(1200px,90%);

    margin: auto;

}


.page-hero h1 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(40px,5vw,65px);

}


.page-hero p {

    max-width: 650px;

    margin-top: 10px;

    color: rgba(255,255,255,.8);

}


.content-section {

    padding: 90px 0;

}


.card-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

}


.info-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: white;

    box-shadow: var(--shadow-sm);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 0;

    }


    .main-nav a {

        padding: 10px 8px;

        font-size: 12px;

    }


    .nav-call span {

        display: none;

    }


    #travelSearchForm {

        grid-template-columns:
            1fr 1fr;

    }


    .search-btn {

        min-height: 65px;

    }


    .category-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .religious-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 850px) {

    .top-left span:last-child {

        display: none;

    }


    .main-header {

        top: 40px;

    }


    .nav-container {

        min-height: 75px;

    }


    .main-nav {

        position: fixed;

        top: 115px;

        left: 5%;

        right: 5%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 15px;

        border-radius: 15px;

        background: white;

        box-shadow: var(--shadow-lg);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);

    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .main-nav a {

        color: var(--text) !important;

        padding: 13px 15px;

        border-radius: 8px;

    }


    .main-nav a:hover {

        background: var(--light-blue);

    }


    .main-nav a::after {

        display: none;

    }


    .nav-call {

        display: none;

    }


    .mobile-menu {

        display: block;

    }


    .hero-section {

        min-height: 720px;

    }


    .hero-content {

        padding-top: 70px;

    }


    .intro-section .section-container,
    .why-section .section-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .intro-image {

        max-width: 600px;

        margin: auto;

        width: 100%;

    }


    .why-image {

        max-width: 600px;

        width: 100%;

        margin: auto;

    }


    .destination-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            260px 260px 260px;

    }


    .destination-card.large {

        grid-row: span 2;

    }


    .package-grid,
    .review-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .cta-container {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .top-bar {

        display: none;

    }


    .main-header {

        top: 0;

    }


    .nav-container {

        padding: 0 18px;

    }


    .main-nav {

        top: 75px;

    }


    .hero-section {

        min-height: 700px;

        height: 100vh;

    }


    .hero-content {

        width: 88%;

        padding-top: 45px;

    }


    .hero-content h1 {

        font-size: 43px;

        letter-spacing: -1px;

    }


    .hero-content > p {

        font-size: 14px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons a {

        width: 100%;

    }


    .hero-trust {

        gap: 18px;

        margin-top: 35px;

    }


    .hero-trust strong {

        font-size: 19px;

    }


    .hero-trust span {

        font-size: 9px;

    }


    .hero-dots {

        right: 15px;

    }


    .travel-search {

        margin-top: -40px;

    }


    .search-card {

        padding: 15px;

    }


    #travelSearchForm {

        grid-template-columns: 1fr;

    }


    .search-btn {

        min-height: 55px;

    }


    section:not(.hero-section) {

        padding: 70px 0;

    }


    .section-heading {

        display: block;

    }


    .section-heading .view-all {

        margin-top: 20px;

    }


    .section-heading h2,
    .intro-content h2,
    .why-content h2 {

        font-size: 34px;

    }


    .destination-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 250px);

    }


    .destination-card.large {

        grid-row: span 1;

    }


    .package-grid,
    .review-grid,
    .category-grid,
    .religious-grid {

        grid-template-columns: 1fr;

    }


    .package-image {

        height: 230px;

    }


    .intro-features {

        grid-template-columns: 1fr;

    }


    .experience-badge {

        width: 115px;

        height: 115px;

        right: 0;

    }


    .experience-badge strong {

        font-size: 27px;

    }


    .why-floating {

        left: 15px;

        bottom: 20px;

    }


    .why-image img {

        height: 450px;

    }


    .religious-card {

        height: 330px;

    }


    .honeymoon-section {

        min-height: 600px;

    }


    .honeymoon-content h2 {

        font-size: 42px;

    }


    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .gallery-item {

        height: 180px;

    }


    .cta-container h2 {

        font-size: 32px;

    }


    .cta-actions {

        width: 100%;

        flex-direction: column;

    }


    .cta-actions a {

        width: 100%;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .floating-actions {

        right: 15px;

        bottom: 15px;

    }


    .back-to-top {

        right: 15px;

        bottom: 135px;

    }

}


@media (max-width: 400px) {

    .hero-content h1 {

        font-size: 37px;

    }


    .hero-trust {

        gap: 12px;

    }


    .logo-content small {

        display: none;

    }


    .logo-content strong {

        font-size: 15px;

    }


    .logo-content strong span {

        font-size: 8px;

    }


    .logo-icon {

        width: 40px;

        height: 40px;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {

    outline: 3px solid
        rgba(244,123,32,.45);

    outline-offset: 3px;

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background: var(--primary);

    color: white;

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background: #edf1f6;

}


::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--orange);

}
