/* =====================================================
   SOT TRAVELS — INDEX PAGE
   MODERN TRAVEL UI
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {

    --primary: #0b6b68;
    --primary-dark: #07504e;
    --primary-light: #e7f5f3;

    --accent: #d99b4c;

    --dark: #10201f;
    --dark-2: #18302e;

    --text: #273635;
    --muted: #6c7b79;

    --white: #ffffff;
    --light: #f6f8f7;
    --light-2: #eef3f1;

    --border: #dfe7e4;

    --shadow-sm:
        0 8px 25px rgba(16, 32, 31, 0.06);

    --shadow:
        0 20px 60px rgba(16, 32, 31, 0.10);

    --shadow-lg:
        0 30px 80px rgba(16, 32, 31, 0.16);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1240px;

    --transition:
        all 0.3s ease;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


body.loaded {
    opacity: 1;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4 {

    font-family: "Manrope", sans-serif;

    color: var(--dark);

    line-height: 1.15;

}


h1 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
}


h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}


h3 {
    font-size: 1.25rem;
}


p {
    color: var(--muted);
}


/* =====================================================
   SECTION
===================================================== */

section {
    position: relative;
}


.section-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 0.76rem;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    margin-bottom: 16px;

}


.section-heading {

    max-width: 680px;

    margin-bottom: 55px;

}


.section-heading.centered {

    text-align: center;

    margin-inline: auto;

}


.section-heading h2 {
    margin-bottom: 16px;
}


.section-heading p {
    font-size: 1.05rem;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    transition: var(--transition);

}


.header.sticky {

    position: fixed;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow-sm);

    padding: 14px 0;

}


.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.logo-mark {

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--white);

    color: var(--primary);

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;

    font-weight: 800;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.logo-text strong {

    font-family: "Manrope", sans-serif;

    font-size: 1.05rem;

    font-weight: 800;

}


.logo-text small {

    font-size: 0.65rem;

    opacity: 0.65;

    margin-top: 4px;

}


/* Hero header logo */

.header:not(.sticky) .logo-text strong,
.header:not(.sticky) .logo-text small {

    color: var(--white);

}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-menu a {

    position: relative;

    color: rgba(255, 255, 255, 0.86);

    font-size: 0.9rem;

    font-weight: 600;

    transition: var(--transition);

}


.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: currentColor;

    transition: var(--transition);

}


.nav-menu a:hover,
.nav-menu a.active {

    color: var(--white);

}


.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}


.header.sticky .nav-menu a {

    color: var(--text);

}


.header.sticky .nav-menu a:hover,
.header.sticky .nav-menu a.active {

    color: var(--primary);

}


/* =====================================================
   NAV ACTIONS
===================================================== */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 18px;

}


.nav-login {

    color: var(--white);

    font-size: 0.88rem;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 7px;

}


.header.sticky .nav-login {

    color: var(--text);

}


.nav-book {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: var(--white);

    color: var(--primary);

    padding: 12px 18px;

    border-radius: 999px;

    font-size: 0.85rem;

    font-weight: 800;

    transition: var(--transition);

}


.nav-book:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);

}


.header.sticky .nav-book {

    background: var(--primary);

    color: var(--white);

}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 12px;

    background: var(--white);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    width: 20px;

    height: 2px;

    background: var(--dark);

    transition: var(--transition);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 850px;

    padding: 150px 0 100px;

    display: flex;

    align-items: center;

    background: var(--dark);

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(6, 29, 28, 0.96) 0%,
            rgba(6, 29, 28, 0.76) 45%,
            rgba(6, 29, 28, 0.38) 100%
        ),

        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=80")
        center / cover no-repeat;

    transform: scale(1.02);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(217, 155, 76, 0.18),
            transparent 30%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 520px);

    align-items: center;

    gap: 70px;

}


.hero-content {

    color: var(--white);

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.73rem;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    margin-bottom: 24px;

}


.hero h1 {

    max-width: 800px;

    color: var(--white);

    letter-spacing: -0.045em;

    margin-bottom: 24px;

}


.hero-content > p {

    max-width: 650px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 1.08rem;

    line-height: 1.8;

    margin-bottom: 30px;

}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 40px;

}


.btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 999px;

    font-size: 0.9rem;

    font-weight: 800;

    transition: var(--transition);

}


.btn-primary {

    background: var(--accent);

    color: var(--dark);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(217, 155, 76, 0.25);

}


.btn-outline {

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: var(--white);

    background: rgba(255, 255, 255, 0.06);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--dark);

}


/* =====================================================
   HERO TRUST
===================================================== */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.8rem;

}


.trust-item i {

    color: var(--accent);

}


/* =====================================================
   BOOKING CARD
===================================================== */

.booking-card {

    background: rgba(255, 255, 255, 0.98);

    border-radius: var(--radius-lg);

    padding: 30px;

    box-shadow: var(--shadow-lg);

}


.booking-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

}


.booking-label {

    color: var(--primary);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 0.16em;

}


.booking-header h2 {

    font-size: 1.65rem;

    margin-top: 5px;

}


.booking-step {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 0.75rem;

    font-weight: 800;

}


/* =====================================================
   TRIP TYPE
===================================================== */

.trip-type {

    display: flex;

    gap: 8px;

    padding: 5px;

    background: var(--light);

    border-radius: 12px;

    margin-bottom: 20px;

}


.trip-option {

    flex: 1;

    position: relative;

    cursor: pointer;

}


.trip-option input {

    position: absolute;

    opacity: 0;

}


.trip-option span {

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    font-size: 0.8rem;

    font-weight: 700;

    color: var(--muted);

    transition: var(--transition);

}


.trip-option input:checked + span {

    background: var(--white);

    color: var(--primary);

    box-shadow: var(--shadow-sm);

}


/* =====================================================
   BOOKING GRID
===================================================== */

.booking-grid {

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: end;

    gap: 10px;

    margin-bottom: 14px;

}


.booking-grid.two {

    grid-template-columns: 1fr 1fr;

}


.booking-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.booking-field label {

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 0.74rem;

    font-weight: 800;

    color: var(--dark);

}


.booking-field label i {

    color: var(--primary);

}


.booking-field input,
.booking-field select {

    width: 100%;

    height: 50px;

    border: 1px solid var(--border);

    border-radius: 11px;

    padding: 0 13px;

    outline: none;

    background: var(--white);

    color: var(--text);

    font-size: 0.82rem;

    transition: var(--transition);

}


.booking-field input:focus,
.booking-field select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(11, 107, 104, 0.08);

}


.booking-swap {

    padding-bottom: 5px;

}


.booking-swap button {

    width: 34px;
    height: 34px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--white);

    color: var(--primary);

    transition: var(--transition);

}


.booking-swap button:hover {

    background: var(--primary);

    color: var(--white);

    transform: rotate(180deg);

}


/* =====================================================
   BOOKING SUBMIT
===================================================== */

.booking-submit {

    width: 100%;

    height: 54px;

    margin-top: 8px;

    border: 0;

    border-radius: 12px;

    background: var(--primary);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 800;

    font-size: 0.9rem;

    transition: var(--transition);

}


.booking-submit:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(11, 107, 104, 0.22);

}


.booking-note {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 13px;

    font-size: 0.68rem;

    color: var(--muted);

}


.booking-note i {

    color: var(--primary);

}


/* =====================================================
   HERO SCROLL
===================================================== */

.hero-scroll {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

}


.hero-scroll i {

    animation: bounce 1.6s infinite;

}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    background: var(--white);

    border-bottom: 1px solid var(--border);

}


.stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat-card {

    min-height: 125px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-right: 1px solid var(--border);

}


.stat-card:last-child {
    border-right: 0;
}


.stat-icon {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary);

}


.stat-card h2 {

    font-size: 1.65rem;

    margin-bottom: 2px;

}


.stat-card p {

    font-size: 0.73rem;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    padding: 120px 0;

    background: var(--white);

}


.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: center;

}


.about-visual {

    position: relative;

}


.about-image-card {

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

}


.about-image-placeholder {

    min-height: 570px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: var(--white);

    background:

        linear-gradient(
            rgba(8, 56, 54, 0.28),
            rgba(8, 56, 54, 0.60)
        ),

        url("https://images.unsplash.com/photo-1507699622108-4be3abd695ad?auto=format&fit=crop&w=1000&q=85")
        center / cover no-repeat;

}


.about-image-placeholder i {

    font-size: 3rem;

}


.about-image-placeholder span {

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}


.experience-badge {

    position: absolute;

    right: -25px;

    bottom: 35px;

    min-width: 180px;

    padding: 20px;

    border-radius: 18px;

    background: var(--accent);

    box-shadow: var(--shadow);

    display: flex;

    align-items: center;

    gap: 12px;

}


.experience-badge strong {

    font-family: "Manrope", sans-serif;

    font-size: 2rem;

    color: var(--dark);

}


.experience-badge span {

    color: var(--dark);

    font-size: 0.72rem;

    font-weight: 700;

    line-height: 1.35;

}


.about-content h2 {

    margin-bottom: 22px;

}


.about-mission {

    font-size: 1.05rem;

    line-height: 1.85;

    margin-bottom: 35px;

}


.about-points {

    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 30px;

}


.about-point {

    display: flex;

    gap: 15px;

}


.about-point > span {

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--primary-light);

    color: var(--primary);

}


.about-point h3 {

    font-size: 0.98rem;

    margin-bottom: 3px;

}


.about-point p {

    font-size: 0.8rem;

    line-height: 1.6;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-weight: 800;

    font-size: 0.85rem;

}


.text-link i {

    transition: var(--transition);

}


.text-link:hover i {

    transform: translateX(5px);

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    padding: 120px 0;

    background: var(--light);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    padding: 35px;

    min-height: 310px;

    border-radius: var(--radius);

    background: var(--white);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.service-number {

    position: absolute;

    top: 25px;

    right: 28px;

    font-family: "Manrope", sans-serif;

    font-size: 0.72rem;

    font-weight: 800;

    color: #b5c0be;

}


.service-icon {

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 1.25rem;

    margin-bottom: 35px;

}


.service-card h3 {

    margin-bottom: 12px;

}


.service-card p {

    font-size: 0.88rem;

    line-height: 1.75;

}


.service-link {

    position: absolute;

    bottom: 28px;

    left: 35px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 0.78rem;

    font-weight: 800;

}


/* =====================================================
   ROUTES
===================================================== */

.routes-section {

    padding: 120px 0;

    background: var(--dark);

}


.routes-section h2 {

    color: var(--white);

}


.routes-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

}


.routes-header .section-eyebrow {

    color: var(--accent);

}


.routes-header > p {

    max-width: 380px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 0.9rem;

}


.routes-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.route-card {

    background: var(--white);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);

}


.route-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);

}


.route-card-content {

    padding: 27px;

}


.route-label {

    color: var(--primary);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.route-card h3 {

    margin: 8px 0 25px;

    font-size: 1.25rem;

}


.route-locations {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 10px;

    align-items: center;

}


.route-locations small {

    display: block;

    color: var(--muted);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    margin-bottom: 4px;

}


.route-locations strong {

    display: block;

    font-size: 0.78rem;

    line-height: 1.4;

}


.route-arrow {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 0.8rem;

}


.route-price {

    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

}


.route-price small {

    color: var(--muted);

    font-size: 0.7rem;

}


.route-price strong {

    color: var(--dark);

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;

}


.route-loading {

    grid-column: 1 / -1;

    text-align: center;

    padding: 50px;

    color: rgba(255, 255, 255, 0.65);

}


/* =====================================================
   HOW IT WORKS
===================================================== */

.how-section {

    padding: 120px 0;

    background: var(--white);

}


.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.step-card {

    position: relative;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

}


.step-number {

    position: absolute;

    top: 25px;

    right: 28px;

    color: #ccd5d2;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

}


.step-icon {

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background: var(--primary);

    color: var(--white);

    font-size: 1.2rem;

    margin-bottom: 30px;

}


.step-card h3 {

    margin-bottom: 12px;

}


.step-card p {

    font-size: 0.87rem;

    line-height: 1.7;

}


/* =====================================================
   VISION
===================================================== */

.vision-section {

    padding: 100px 0;

    background: var(--light);

}


.vision-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.vision-card {

    position: relative;

    padding: 45px;

    border-radius: var(--radius-lg);

    overflow: hidden;

}


.vision-card.mission {

    background: var(--primary);

}


.vision-card.vision {

    background: var(--accent);

}


.vision-card .section-eyebrow {

    margin-top: 20px;

}


.vision-card.mission .section-eyebrow {

    color: rgba(255, 255, 255, 0.65);

}


.vision-card p {

    font-family: "Manrope", sans-serif;

    font-size: 1.1rem;

    line-height: 1.75;

    margin-top: 8px;

}


.vision-card.mission p {

    color: rgba(255, 255, 255, 0.85);

}


.vision-card.vision p {

    color: var(--dark);

}


.vision-icon {

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.13);

    color: var(--white);

}


.vision-card.vision .vision-icon {

    background: rgba(16, 32, 31, 0.10);

    color: var(--dark);

}


/* =====================================================
   FAQ
===================================================== */

.faq-section {

    padding: 120px 0;

    background: var(--white);

}


.faq-grid {

    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 100px;

    align-items: start;

}


.faq-intro {

    position: sticky;

    top: 120px;

}


.faq-intro h2 {

    margin-bottom: 18px;

}


.faq-intro > p {

    font-size: 0.92rem;

    line-height: 1.8;

    margin-bottom: 25px;

}


.faq-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.faq-item {

    border: 1px solid var(--border);

    border-radius: 14px;

    overflow: hidden;

    background: var(--white);

}


.faq-question {

    width: 100%;

    border: 0;

    background: transparent;

    padding: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    color: var(--dark);

    font-weight: 800;

}


.faq-question i {

    color: var(--primary);

    transition: var(--transition);

}


.faq-answer {

    display: none;

    padding: 0 22px 22px;

}


.faq-answer p {

    font-size: 0.85rem;

    line-height: 1.8;

}


.faq-item.active .faq-answer {

    display: block;

}


.faq-item.active .faq-question i {

    transform: rotate(45deg);

}


.faq-loading {

    padding: 30px;

    text-align: center;

    color: var(--muted);

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding: 100px 0;

    background: var(--primary);

    overflow: hidden;

}


.cta-container {

    position: relative;

}


.cta-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

}


.cta-section .section-eyebrow {

    color: rgba(255, 255, 255, 0.65);

}


.cta-section h2 {

    color: var(--white);

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    letter-spacing: -0.04em;

    margin-bottom: 20px;

}


.cta-section p {

    color: rgba(255, 255, 255, 0.72);

    margin-bottom: 30px;

}


.cta-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn-light {

    background: var(--white);

    color: var(--primary);

}


.btn-light:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}


.btn-ghost {

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.3);

}


.btn-ghost:hover {

    background: rgba(255, 255, 255, 0.1);

}


.cta-decoration {

    position: absolute;

    right: -50px;

    top: 50%;

    transform: translateY(-50%);

    width: 430px;
    height: 430px;

}


.cta-decoration span {

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

}


.cta-decoration span:nth-child(2) {

    inset: 55px;

}


.cta-decoration span:nth-child(3) {

    inset: 110px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding-top: 75px;

    background: #091716;

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;

}


.footer .logo-mark {

    background: var(--primary);

    color: var(--white);

}


.footer-logo {

    margin-bottom: 20px;

}


.footer-logo .logo-text strong {

    color: var(--white);

}


.footer-logo .logo-text small {

    color: rgba(255, 255, 255, 0.55);

}


.footer-brand > p {

    max-width: 330px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.82rem;

    line-height: 1.8;

    margin-bottom: 22px;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.7);

    transition: var(--transition);

}


.footer-social a:hover {

    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h3 {

    color: var(--white);

    font-size: 0.85rem;

    margin-bottom: 8px;

}


.footer-column a,
.footer-column p {

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.78rem;

    line-height: 1.7;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--white);

}


.footer-column a i {

    width: 18px;

    color: var(--primary);

}


.footer-booking p {

    margin-bottom: 8px;

}


.footer-book-btn {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 17px;

    border-radius: 999px;

    background: var(--accent);

    color: var(--dark) !important;

    font-weight: 800;

}


.footer-bottom {

    min-height: 70px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.68rem;

}


/* =====================================================
   SCROLL TOP
===================================================== */

.scrollTop {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    display: grid;

    place-items: center;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 900;

    box-shadow: var(--shadow);

}


.scrollTop.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.scrollTop:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1100px) {


    .nav-menu {

        gap: 18px;

    }


    .nav-actions {

        gap: 10px;

    }


  


    .hero-container {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 450px);

        gap: 40px;

    }


    .hero {

        min-height: 800px;

    }


    .about-grid {

        gap: 50px;

    }


    .faq-grid {

        gap: 50px;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE MENU
===================================================== */

@media (max-width: 900px) {

/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.nav-menu {

    position: fixed;

    top: 0;
    right: 0;

    width: min(360px, 88vw);
    height: 100dvh;

    padding:
        105px
        28px
        35px;

    background:
        rgba(255, 255, 255, 0.98);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 8px;

    box-shadow:
        -15px 0 45px rgba(
            0,
            0,
            0,
            0.12
        );

    transform:
        translateX(105%);

    visibility: hidden;

    opacity: 0;

    transition:
        transform 0.35s
            cubic-bezier(
                0.4,
                0,
                0.2,
                1
            ),
        opacity 0.25s ease,
        visibility 0.35s ease;

    z-index: 1050;

}


/* OPEN MENU */

.nav-menu.active {

    transform:
        translateX(0);

    visibility: visible;

    opacity: 1;

}


/* MOBILE NAV LINKS */

.nav-menu a,
.header:not(.sticky) .nav-menu a,
.header.sticky .nav-menu a {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 52px;

    padding:
        0 16px;

    border-radius: 12px;

    color: var(--dark);

    font-size: 0.95rem;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


/* REMOVE DESKTOP UNDERLINE */

.nav-menu a::after {

    display: none;

}


/* MOBILE HOVER */

.nav-menu a:hover {

    background:
        rgba(
            11,
            107,
            104,
            0.08
        );

    color: var(--primary);

    transform:
        translateX(4px);

}


/* MOBILE ACTIVE */

.nav-menu a.active {

    background:
        rgba(
            11,
            107,
            104,
            0.10
        );

    color: var(--primary);

}


/* MOBILE MENU BUTTON */

.menu-toggle {

    display: flex;

    position: relative;

    z-index: 1200;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 12px;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    box-shadow:
        0 6px 18px
        rgba(
            0,
            0,
            0,
            0.10
        );

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


/* HAMBURGER LINES */

.menu-toggle span {

    width: 20px;
    height: 2px;

    border-radius: 999px;

    background:
        var(--dark);

    transition:
        transform 0.3s ease,
        opacity 0.2s ease;

}


/* HAMBURGER → X */

.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}

.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}

.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* PREVENT BACKGROUND SCROLL */

body.menu-open {

    overflow: hidden;

}


/* MOBILE HEADER */

.header,
.header.sticky {

    width: 100%;

}


.nav-container {

    gap: 12px;

}


/* LOGIN HIDE ON MOBILE */

/* MOBILE HEADER ACTIONS */

.nav-actions {
    display: none !important;
}
.nav-login,
.nav-book {
    display: flex;
}

    


    .hero-container {

        grid-template-columns: 1fr;

    }


    .hero {

        padding-top: 130px;

        padding-bottom: 70px;

    }


    .booking-card {

        max-width: 650px;

        width: 100%;

    }


    .hero-scroll {

        display: none;

    }


    .stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-card:nth-child(2) {

        border-right: 0;

    }


    .stat-card:nth-child(-n+2) {

        border-bottom: 1px solid var(--border);

    }


    .about-grid {

        grid-template-columns: 1fr;

    }


    .about-image-placeholder {

        min-height: 450px;

    }


    .services-grid,
    .routes-grid,
    .steps-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .vision-grid {

        grid-template-columns: 1fr;

    }


    .faq-grid {

        grid-template-columns: 1fr;

    }


    .faq-intro {

        position: static;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   RESPONSIVE — SMALL MOBILE
===================================================== */

@media (max-width: 600px) {


    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }


    .header {

        padding: 14px 0;

    }


    .logo-mark {

        width: 40px;
        height: 40px;

    }


    .logo-text strong {

        font-size: 0.92rem;

    }


    .logo-text small {

        display: none;

    }

/* 
    .nav-book {

        display: none;

    } */


    .hero {

        min-height: auto;

        padding: 110px 0 45px;

    }


    .hero-background {

        background-position: 62% center;

    }


    .hero h1 {

        font-size: 2.65rem;

    }


    .hero-content > p {

        font-size: 0.94rem;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .hero-trust {

        flex-direction: column;

        gap: 10px;

    }


    .booking-card {

        padding: 20px;

        border-radius: 20px;

    }


    .booking-header h2 {

        font-size: 1.35rem;

    }


    .booking-grid,
    .booking-grid.two {

        grid-template-columns: 1fr;

    }


    .booking-swap {

        display: none;

    }


    .stats {

        grid-template-columns: 1fr;

    }


    .stat-card {

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }


    .stat-card:last-child {

        border-bottom: 0;

    }


    .about-section,
    .services-section,
    .routes-section,
    .how-section,
    .faq-section {

        padding: 80px 0;

    }


    .about-image-placeholder {

        min-height: 350px;

    }


    .experience-badge {

        right: 15px;

        bottom: 20px;

        min-width: 155px;

        padding: 15px;

    }


    .experience-badge strong {

        font-size: 1.65rem;

    }


    .services-grid,
    .routes-grid,
    .steps-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 280px;

    }


    .routes-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .route-locations {

        grid-template-columns:
            1fr;

        gap: 8px;

    }


    .route-arrow {

        transform: rotate(90deg);

    }


    .vision-section {

        padding: 70px 0;

    }


    .vision-card {

        padding: 30px;

    }


    .cta-section {

        padding: 75px 0;

    }


    .cta-section h2 {

        font-size: 2.5rem;

    }


    .cta-decoration {

        opacity: 0.35;

        right: -180px;

    }


    .footer {

        padding-top: 55px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 45px;

    }


    .footer-bottom {

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .scrollTop {

        right: 15px;

        bottom: 15px;

        width: 42px;
        height: 42px;

    }

}

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.logo-img{
    height:115px;
    width:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 4px 12px rgba(0,0,0,.30));
    transition:.3s;
}

.logo-img:hover{
    transform:scale(1.05);
}


@media (max-width:768px){

.logo-img{
    height:65px;
}

}
/* =========================================
   HEADER LOGO - DARK HERO / LIGHT STICKY
========================================= */

/* Top hero section - logo white */
.header:not(.sticky) .logo-img {
    filter: brightness(0) invert(1)
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

/* Scroll hone ke baad - original blue logo */
.header.sticky .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.whiteSpace {
    white-space: pre-line;
}

/* =====================================================
   QUICK BOOKING - FULL WIDTH ROUTE
   ===================================================== */

.booking-route-field {
    grid-column: 1 / -1;
    width: 100%;
}



/* =========================================
   FOOTER LOGO - WHITE ON DARK BACKGROUND
========================================= */

.footer .logo-img {
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
/* =====================================================
   TRIPADVISOR REVIEW SECTION
===================================================== */

.tripadvisor-review-section {
    padding: 90px 0;
    background: #f8fafc;
}

.tripadvisor-review-section .section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}


.tripadvisor-review-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 93, 91, 0.12);
    box-shadow: 0 15px 45px rgba(15, 93, 91, 0.08);
}


.tripadvisor-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}


.tripadvisor-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(15, 93, 91, 0.1);
    color: #0f5d5b;

    font-size: 20px;
}


.tripadvisor-card-top h3 {
    margin: 0 0 5px;
    font-size: 20px;
    color: #1f2933;
}


.tripadvisor-card-top p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}


.tripadvisor-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}


/* Tripadvisor fallback */

.tripadvisor-widget .TA_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tripadvisor-widget .TA_links li {
    list-style: none;
}


.tripadvisor-widget img {
    max-width: 220px;
    height: auto;
    display: block;
}


.tripadvisor-review-note {
    margin: 25px 0 0;
    text-align: center;

    font-size: 14px;
    color: #6b7280;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .tripadvisor-review-section {
        padding: 70px 0;
    }


    .tripadvisor-review-card {
        padding: 25px 20px;
        border-radius: 16px;
    }


    .tripadvisor-card-top {
        align-items: flex-start;
    }


    .tripadvisor-widget {
        min-height: 160px;
        overflow-x: auto;
    }

}

/* =====================================================
   SOT CUSTOMER REVIEWS — PREMIUM
   ===================================================== */

.reviews-section {
    position: relative;
    padding: 115px 0 105px;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(11, 107, 104, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(217, 155, 76, 0.08),
            transparent 28%
        ),
        var(--light);
    overflow: hidden;
}


/* Decorative background circles */

.reviews-section::before,
.reviews-section::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(11, 107, 104, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-section::before {
    width: 420px;
    height: 420px;
    left: -230px;
    top: 90px;
}

.reviews-section::after {
    width: 300px;
    height: 300px;
    right: -160px;
    bottom: 50px;
}


/* =========================
   HEADER
   ========================= */

.reviews-header {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.reviews-header .section-eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

.reviews-header h2 {
    margin-bottom: 16px;
    letter-spacing: -0.035em;
}

.reviews-header p {
    max-width: 570px;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.8;
}


/* =========================
   SLIDER
   ========================= */

.reviews-slider {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 18px;
}

.reviews-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 8px 3px 15px;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 20px;

    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================
   REVIEW CARD
   ========================= */

.review-card {
    position: relative;

    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 31px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 1)
        );

    border: 1px solid rgba(11, 107, 104, 0.10);
    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(16, 32, 31, 0.07);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* top accent line */

.review-card::before {
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );

    opacity: 0.85;
}


/* subtle quote watermark */

.review-card::after {
    content: "“";

    position: absolute;
    right: 24px;
    bottom: -25px;

    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;

    color: rgba(11, 107, 104, 0.035);

    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-7px);

    border-color: rgba(11, 107, 104, 0.16);

    box-shadow:
        0 25px 60px rgba(16, 32, 31, 0.12);
}


/* =========================
   CARD TOP
   ========================= */

.review-card-top {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;

    gap: 13px;

    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.review-avatar {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            #ffffff
        );

    border: 2px solid rgba(11, 107, 104, 0.10);

    color: var(--primary);

    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(11, 107, 104, 0.08);
}

.review-customer {
    min-width: 0;
    flex: 1;
}

.review-customer h3 {
    margin: 0 0 6px;

    font-size: 1rem;
    font-weight: 800;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-stars {
    color: var(--accent);

    font-size: 0.82rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-quote {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 0.9rem;

    transition: var(--transition);
}

.review-card:hover .review-quote {
    background: var(--primary);
    color: var(--white);

    transform: rotate(-5deg);
}


/* =========================
   REVIEW BODY
   ========================= */

.review-card-body {
    position: relative;
    z-index: 1;

    flex: 1;

    min-height: 135px;
}

.review-card-body p {
    margin: 0;

    color: var(--text);

    font-size: 0.88rem;
    line-height: 1.85;
}


/* quotation mark before review */

.review-card-body p::before {
    content: "“";
    color: var(--primary);

    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;

    margin-right: 3px;
    vertical-align: -5px;
}


/* =========================
   FOOTER
   ========================= */

.review-card-footer {
    position: relative;
    z-index: 1;

    padding-top: 19px;
    margin-top: 20px;

    border-top: 1px solid var(--border);
}

.review-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--primary);

    font-size: 0.68rem;
    font-weight: 800;
}

.review-card-footer i {
    font-size: 0.72rem;
}


/* =========================
   NAVIGATION
   ========================= */

.review-nav {
    position: relative;
    z-index: 3;

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(11, 107, 104, 0.13);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);

    box-shadow:
        0 10px 30px rgba(16, 32, 31, 0.10);

    transition: var(--transition);
}

.review-nav:hover {
    background: var(--primary);
    color: var(--white);

    border-color: var(--primary);

    transform: scale(1.07);
    box-shadow:
        0 14px 30px rgba(11, 107, 104, 0.20);
}

.review-nav:active {
    transform: scale(0.96);
}


/* =========================
   DOTS
   ========================= */

.reviews-dots {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 27px;
}

.review-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background: #c9d6d3;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.review-dot:hover {
    transform: scale(1.3);
}

.review-dot.active {
    width: 26px;

    background: var(--primary);
}


/* =========================
   LOADING / EMPTY
   ========================= */

.reviews-loading,
.reviews-empty {
    width: 100%;
    min-height: 230px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 40px;

    border: 1px dashed var(--border);
    border-radius: 22px;

    background: var(--white);

    color: var(--muted);
    text-align: center;
}

.reviews-loading i,
.reviews-empty i {
    color: var(--primary);
    font-size: 1.5rem;
}

.reviews-empty h3 {
    margin-top: 4px;
}


/* =====================================================
   TABLET — 2 CARDS
   ===================================================== */

@media (max-width: 900px) {

    .reviews-section {
        padding: 90px 0;
    }

    .review-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

}


/* =====================================================
   MOBILE — 1 CARD
   ===================================================== */

@media (max-width: 600px) {

    .reviews-section {
        padding: 78px 0;
    }

    .reviews-header {
        margin-bottom: 35px;
    }

    .reviews-header h2 {
        font-size: 2rem;
    }

    .reviews-header p {
        font-size: 0.88rem;
    }

    .reviews-slider {
        gap: 7px;
    }

    .reviews-viewport {
        padding-inline: 2px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 25px 21px;
        border-radius: 21px;
    }

    .review-card-body {
        min-height: 115px;
    }

    .review-nav {
        width: 38px;
        height: 38px;
    }

    .review-nav i {
        font-size: 0.72rem;
    }

    .review-stars {
        font-size: 0.76rem;
    }

    .review-avatar {
        width: 46px;
        height: 46px;
    }

    .review-quote {
        width: 36px;
        height: 36px;
    }

}

/* =====================================================
   GLOBAL PAGE LOADER
===================================================== */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white, #ffffff);

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.55s ease,
        visibility 0.55s ease;
}


/* Loader hidden state */

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Loader content */

.page-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    animation: loaderContentIn 0.6s ease;
}


/* Logo */

.page-loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 28px;
}

.page-loader-logo span {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.page-loader-logo small {
    margin-top: 3px;

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.32em;

    color: var(--text-light);
}


/* Spinner */

.page-loader-spinner {
    width: 38px;
    height: 38px;

    border: 3px solid rgba(11, 107, 104, 0.12);
    border-top-color: var(--primary);

    border-radius: 50%;

    animation: pageLoaderSpin 0.85s linear infinite;

    margin-bottom: 18px;
}


/* Text */

.page-loader-content p {
    margin: 0;

    font-size: 0.78rem;
    font-weight: 600;

    color: var(--text-light);

    letter-spacing: 0.02em;
}


/* Animations */

@keyframes pageLoaderSpin {

    to {
        transform: rotate(360deg);
    }

}


@keyframes loaderContentIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .page-loader-logo span {
        font-size: 1.7rem;
    }

    .page-loader-spinner {
        width: 34px;
        height: 34px;
    }

}

/* =====================================================
   MOBILE HORIZONTAL OVERFLOW FIX
   ===================================================== */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =====================================================
   MOBILE MENU AUTH BUTTONS
   ===================================================== */

.mobile-menu-actions {
    display: none;
}

@media (max-width: 900px) {

    .mobile-menu-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-menu-login,
    .mobile-menu-signup {
        min-height: 48px;
        padding: 0 14px;
        border-radius: 12px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;

        transition: all 0.25s ease;
    }

    .mobile-menu-login {
        color: var(--primary);
        background: var(--primary-light);
        border: 1px solid rgba(11, 107, 104, 0.15);
    }

    .mobile-menu-signup {
        color: var(--white);
        background: var(--primary);
        border: 1px solid var(--primary);
    }

    .mobile-menu-login:hover {
        transform: translateY(-2px);
        background: rgba(11, 107, 104, 0.12);
    }

    .mobile-menu-signup:hover {
        transform: translateY(-2px);
    }

    .mobile-menu-login i,
    .mobile-menu-signup i {
        font-size: 0.9rem;
    }
}

/* =====================================================
   MOBILE AUTH BUTTONS — PREMIUM STYLE
   ===================================================== */

.mobile-menu-actions {
    display: none;
}

@media (max-width: 900px) {

    .mobile-menu-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(20, 35, 35, 0.08);
    }

    .mobile-menu-login,
    .mobile-menu-signup {
        min-height: 50px;
        padding: 0 14px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        border-radius: 14px;

        font-size: 0.84rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-decoration: none;

        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            background 0.25s ease;
    }

    /* LOGIN */
    .mobile-menu-login {
        color: var(--primary);
        background: rgba(11, 107, 104, 0.06);
        border: 1px solid rgba(11, 107, 104, 0.18);
    }

    /* SIGN UP */
    .mobile-menu-signup {
        color: #ffffff;
        background: var(--primary);
        border: 1px solid var(--primary);

        box-shadow:
            0 7px 18px rgba(11, 107, 104, 0.20);
    }

    .mobile-menu-login i,
    .mobile-menu-signup i {
        font-size: 0.9rem;
    }

    .mobile-menu-login:active,
    .mobile-menu-signup:active {
        transform: scale(0.97);
    }

    .mobile-menu-login:hover {
        background: rgba(11, 107, 104, 0.11);
        transform: translateY(-2px);
    }

    .mobile-menu-signup:hover {
        transform: translateY(-2px);
        box-shadow:
            0 10px 24px rgba(11, 107, 104, 0.28);
    }
}