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

:root {
    --primary-orange: #ff6f00;
    --primary-orange-light: #ffe0cc;
    --primary-orange-hover: #e65f00;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --dark-text: #1f2937;
    --muted-text: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-text);
}

/* Custom Navbar styling */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-text);
}

.navbar-brand span {
    color: var(--primary-orange);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}

.btn-orange-outline {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-orange-outline:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 111, 0, 0.4);
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fff6f0 0%, #ffffff 100%);
    padding: 6rem 0 4rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 111, 0, 0.1);
}

.hero-badge {
    background-color: var(--primary-orange-light);
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-meta-icon {
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-orange-light);
}

/* Cards & Details Section */
.card-detail {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.card-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 111, 0, 0.2);
}

.card-detail-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--primary-orange-light);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-detail-title i {
    color: var(--primary-orange);
}

/* Inclusions & Exclusions styling */
.list-checked,
.list-crossed {
    list-style: none;
    padding-left: 0;
}

.list-checked li,
.list-crossed li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.list-checked li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.list-crossed li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Form Section */
.form-card {
    background: #ffffff;
    border: 2px solid var(--primary-orange-light);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.15);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

/* Participant block animation */
.participant-block {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    animation: slideIn 0.3s ease forwards;
}

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

.price-summary-box {
    background-color: var(--primary-orange-light);
    border: 1px dashed var(--primary-orange);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin: 1.5rem 0;
}

.price-summary-box .amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

/* Success Page styles */
.success-card {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 3.5rem 2rem;
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #d1fae5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    animation: popCheck 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popCheck {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ticket-details-box {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.ticket-number {
    font-family: monospace;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Custom Footer */
.custom-footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 4px solid var(--primary-orange);
}

.custom-footer h5 {
    color: var(--white);
}

.custom-footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-footer a:hover {
    color: var(--primary-orange);
}

@media (max-width: 991.98px) {
    .hero-mockup-section {
        background:
            linear-gradient(
                105deg,
                rgba(255, 255, 255, 0.82) 0%,
                rgba(255, 255, 255, 0.25) 45%,
                rgba(255, 255, 255, 0) 100%
            ),
            url("/images/screen.png") no-repeat center center;
        background-size: cover;
    }
}
.hero-logo-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.hero-logo-box i {
    font-size: 2rem;
    color: var(--primary-orange);
}
.hero-logo-box span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-logo-box span .orange-text {
    color: var(--primary-orange);
}
.brush-badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    clip-path: polygon(2% 0%, 98% 2%, 100% 98%, 0% 95%);
    margin-bottom: 1.5rem;
}
.mockup-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.8rem;
    font-size: clamp(1.8rem, 6.5vw, 3.8rem);
    line-height: 1.1;
    color: #111827;
    text-transform: uppercase;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}
.mockup-title span {
    color: var(--primary-orange);
}
.divider-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 1.25rem 0;
}
.mockup-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
}
.leader-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    display: inline-flex;
    max-width: 100%;
    box-sizing: border-box;
}
.leader-avatar {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 3px solid var(--primary-orange); */
    box-shadow: var(--shadow-md);
}
.leader-info {
    text-align: left;
}
.leader-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--muted-text);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.leader-name {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 800;
    margin: 0;
}
.btn-register-mockup {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f33 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-register-mockup:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 111, 0, 0.6);
    color: var(--white);
}
@media (max-width: 480px) {
    .btn-register-mockup {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    .leader-card {
        padding: 0.5rem 0.75rem;
    }
    .leader-avatar {
        width: 45px;
        height: 45px;
    }
    .leader-name {
        font-size: 1.1rem;
    }
}
.spots-card-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    /* max-width: 550px; */
    width: 100%;
    margin-top: 3rem;
    text-align: center;
    border-bottom: 5px solid var(--primary-orange);
    box-sizing: border-box;
}
.spots-badge-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.spots-count-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: 0.5rem;
    color: #111827;
}
.spots-count-text span {
    color: var(--primary-orange);
    font-size: 2.2rem;
}
.spots-subtext {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin: 0.5rem 0 0;
}

/* ==========================================================================
   TREK DETAILS VIEW STYLES - Redesigned Layout
   ========================================================================== */

.details-page-wrap {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.details-header {
    margin-bottom: 2.5rem;
}

.details-logo-box {
    margin-bottom: 1.25rem;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.logo-sub {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--muted-text);
    text-transform: uppercase;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--dark-text);
    text-transform: uppercase;
}

.logo-main .text-orange {
    color: var(--primary-orange);
}

.details-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--dark-text);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.details-title .text-orange {
    color: var(--primary-orange);
}

.details-subtitle {
    font-size: 1.05rem;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

.details-rule {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
    margin-top: 1rem;
}

/* Metadata Cards */
.details-info-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.details-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 111, 0, 0.25);
}

.details-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #fff6f0;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.details-card-content {
    flex: 1;
}

.details-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.details-card-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0;
}

/* Detail Section Cards */
.details-section-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.details-section-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.2);
}

.details-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.details-body-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.details-body-text p {
    margin-bottom: 1rem;
}

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

/* Inclusions & Exclusions Lists (3 columns on Desktop) */
.details-inclusions-list ul,
.details-exclusions-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 2rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 2rem;
    border-top: 4px solid #ff6f00;
}

.footer-brand {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand span {
    color: #ff6f00;
}

.footer-desc {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social-links a:hover {
    background: #ff6f00;
    border-color: #ff6f00;
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: "→";
    font-size: 0.75rem;
    color: #ff6f00;
}

.footer-links a:hover {
    color: #ff6f00;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-contact-item i {
    color: #ff6f00;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .details-inclusions-list ul,
    .details-exclusions-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .details-inclusions-list ul,
    .details-exclusions-list ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.details-inclusions-list ul li,
.details-exclusions-list ul li {
    position: relative;
    padding-left: 2rem;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.details-inclusions-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary-orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
}

.details-exclusions-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary-orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
}

/* Safety Guidelines List (2 columns) */
.details-safety-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .details-safety-list ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.details-safety-list ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.details-safety-list ul li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    /* top: -0.2rem; */
    top: -12.5px;
    color: var(--primary-orange);
    font-size: 1.75rem;
}

/* Terms & Conditions List (2 columns with sequential numbered circles) */
.details-terms-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2.75rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: terms-counter;
}

@media (max-width: 991px) {
    .details-terms-list ul {
        gap: 1.25rem 1.75rem;
    }
}

@media (max-width: 768px) {
    .details-terms-list ul {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.details-terms-list ul li {
    position: relative;
    padding-left: 2.75rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.details-terms-list ul li::before {
    counter-increment: terms-counter;
    content: counter(terms-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Bottom Sticky Footer Bar */
.details-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.06);
}

.footer-mountain-badge {
    width: 44px;
    height: 44px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.25);
    flex-shrink: 0;
}

.footer-tagline-group {
    text-align: left;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    color: #1f2937;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer-tagline .dot {
    color: var(--primary-orange);
    margin: 0 0.5rem;
    font-weight: 900;
}

.footer-subtagline {
    font-size: 0.82rem;
    color: var(--muted-text);
    margin-top: 0.25rem;
    line-height: 1.2;
}

.btn-continue-registration {
    background-color: var(--primary-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 0.8rem 2.25rem;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
    border: none;
}

.btn-continue-registration:hover {
    background-color: var(--primary-orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

@media (max-width: 768px) {
    .details-sticky-footer {
        padding: 0.75rem 0;
    }
    .details-sticky-footer .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .footer-tagline-group {
        text-align: center;
    }
    .footer-tagline {
        font-size: 11px;
        letter-spacing: 0;
        font-weight: 600;
    }
    .footer-subtagline {
        font-size: 0.75rem;
    }
    .btn-continue-registration {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}
/* ==========================================================================
   WELCOME / HOMEPAGE — HERO, LEADER & REGISTRATION LAYOUT
   (Matches reference mockup layout, mapped to the site's orange/white theme)
   ========================================================================== */

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

.trek-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 18, 32, 0.55) 0%,
            rgba(11, 18, 32, 0.18) 42%,
            rgba(11, 18, 32, 0) 68%
        ),
        url("/images/screen.png") no-repeat center center;
    background-size: cover;
    transition: transform 8s ease;
}

.trek-hero:hover .trek-hero__bg {
    transform: scale(1.08);
}

.trek-hero__inner {
    position: relative;
    z-index: 2;
    /* max-width: 760px; */
    padding: 4rem;
}

.trek-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 111, 0, 0.18);
    border: 1px solid rgba(255, 111, 0, 0.4);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.trek-hero__title {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2.4rem, 7vw, 5rem);
    line-height: 1;
    color: var(--white);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.hero-title__km {
    font-size: 80px;
}

.hero-title__adventure {
    font-size: clamp(2.4rem, 4vw, 5rem);
}

.trek-hero__title .accent {
    color: var(--primary-orange);
}

.trek-hero__lead {
    max-width: 540px;
    margin: 0 0 0 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-orange);
}

.trek-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.trek-hero__tagline {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

/* Floating glass info bar — pulled up over the hero's bottom edge.
   It stays in normal document flow (not position:absolute), so the
   sections below it are pushed down automatically — no spacer needed. */
.trek-info-bar-wrap {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    padding: 0 1.25rem;
}

.trek-info-bar {
    max-width: 1024px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(11, 18, 32, 0.25);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.5rem;
}

.trek-info-bar__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
    border-radius: 14px;
    transition: background-color 0.2s ease;
}

.trek-info-bar__item:hover {
    background-color: var(--light-bg);
}

.trek-info-bar__item:last-child {
    border-right: none;
}

.trek-info-bar__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.trek-info-bar__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-text);
    margin-bottom: 0.2rem;
}

.trek-info-bar__value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark-text);
}

/* ---------- MEET YOUR LEADER ---------- */
.trek-leader {
    padding: 6rem 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.trek-leader__grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trek-leader__photo-wrap {
    position: relative;
    flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.trek-leader__photo-decor {
    position: absolute;
    top: 3rem;
    left: 50%;
    width: 335px;
    aspect-ratio: 4 / 5;
    border: 3px solid var(--primary-orange);
    border-radius: 2rem;
    transform: translateX(-30%) rotate(-7deg);
    z-index: 0;
}

.trek-leader__photo-card {
    position: relative;
    z-index: 1;
    width: 330px;
    aspect-ratio: 4 / 5;
    border-radius: 2rem;
    overflow: hidden;
    background-color: #111827;
    box-shadow: var(--shadow-lg);
}

.trek-leader__photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* filter: grayscale(15%); */
    transition:
        filter 0.6s ease,
        transform 0.6s ease;
}

.trek-leader__photo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.trek-leader__content {
    flex: 1 1 380px;
    text-align: left;
}

.trek-leader__eyebrow {
    display: block;
    color: var(--primary-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.trek-leader__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.trek-leader__desc {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.75;
    margin-bottom: 2rem;
    padding: 0 10px;
}

.trek-leader__desc strong {
    color: var(--dark-text);
    font-weight: 700;
}

.trek-leader__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trek-leader__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.trek-leader__logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.trek-leader__tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
    box-shadow: var(--shadow-sm);
}

.trek-leader__tag i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* ---------- READY TO START / REMAINING SPOTS ---------- */
.trek-pricing {
    padding: 4rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.trek-pricing__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.trek-pricing__blob--one {
    top: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 111, 0, 0.08);
}

.trek-pricing__blob--two {
    bottom: -120px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: rgba(15, 23, 42, 0.05);
}

.trek-pricing__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.25rem;
}

.trek-pricing__eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trek-pricing__rule {
    height: 1px;
    width: 60px;
    background-color: var(--border-color);
}

.trek-pricing__eyebrow {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary-orange);
}

.trek-pricing__heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    color: var(--dark-text);
    margin-bottom: 1.75rem;
}

.trek-pricing__price {
    margin-bottom: 2.5rem;
}

.trek-pricing__currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--muted-text);
    vertical-align: top;
    margin-right: 0.25rem;
    position: relative;
    top: 0.6rem;
}

.trek-pricing__value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.2rem, 8vw, 5rem);
    color: var(--dark-text);
    letter-spacing: -1px;
    line-height: 1;
}

.trek-pricing__period {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trek-pricing__card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

.trek-pricing__desc {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.trek-pricing__desc strong {
    color: var(--primary-orange);
    font-weight: 800;
}

.trek-pricing__cta {
    padding: 1.1rem 2.75rem !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trek-pricing__note {
    margin-top: 1.75rem;
    font-size: 0.88rem;
    color: var(--muted-text);
}

.trek-pricing__note a {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
}

.trek-pricing__note a:hover {
    text-decoration: underline;
}

/* ---------- QUICK FACTS STRIP ---------- */
.trek-facts-strip {
    background-color: #111827;
    padding: 1.5rem 0;
}

.trek-facts-strip__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    color: var(--white);
}

.trek-facts-strip__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.trek-facts-strip__item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .trek-hero {
        height: auto;
        min-height: 100vh;
        padding: 0 0 8rem;
        text-align: center;
    }

    .trek-hero__inner {
        margin: 0 auto;
        padding: 0;
    }

    .trek-hero__lead {
        margin: 0 auto;
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--primary-orange);
        padding-top: 1rem;
    }

    .trek-info-bar-wrap {
        margin-top: -100px;
    }

    .trek-info-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trek-info-bar__item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .trek-info-bar__item:last-child {
        border-bottom: none;
    }

    .trek-leader {
        padding: 4rem 0;
    }

    .trek-leader__grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .trek-leader__photo-wrap {
        margin-bottom: 1rem;
    }

    .trek-leader__content {
        text-align: center;
    }

    .trek-leader__tags {
        justify-content: center;
    }

    .trek-leader__logos {
        justify-content: center;
    }

    .trek-leader__photo-decor {
        display: none;
    }

    .trek-pricing {
        padding: 3rem 0;
    }

    .trek-facts-strip__row {
        gap: 1.25rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .trek-hero__badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .trek-info-bar-wrap {
        margin-top: -140px;
        padding: 0 0.75rem;
    }

    .trek-info-bar__item {
        padding: 1.1rem 1.25rem;
    }

    .trek-leader__photo-card,
    .trek-leader__photo-decor {
        width: 230px;
    }

    .trek-pricing__card {
        padding: 2.25rem 1.5rem;
    }

    .trek-pricing__cta {
        width: 100%;
        padding: 1.1rem 0.75rem !important;
        letter-spacing: 0;
    }

    .trek-facts-strip__item {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   NAVIGATION BAR REDESIGN (MATCHES PREMIUM REFERENCE THEME)
   ========================================================================== */

/* Navbar Brand & Logo Toggle Layout */
.custom-navbar .navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.custom-navbar .logo-colored,
.custom-navbar .logo-white {
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.custom-navbar .logo-colored {
    opacity: 1;
    visibility: visible;
}

.custom-navbar .logo-white {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Default state styling updates for custom-navbar links */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.custom-navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-text);
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-orange);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom center;
}

.custom-navbar .nav-link.active::after,
.custom-navbar .nav-link:hover::after {
    transform: scaleX(1);
}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Register CTA Button in navbar */
.btn-navbar-register {
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-orange-hover) 100%
    );
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.65rem 1.6rem !important;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 14px rgba(255, 111, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-navbar-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.45);
    background: linear-gradient(
        135deg,
        var(--primary-orange-hover) 0%,
        var(--primary-orange) 100%
    );
}

.btn-navbar-register:active {
    transform: translateY(-0.5px);
}

/* Homepage-specific Transparent Navbar styling (Top section) */
@media (min-width: 992px) {
    .navbar-transparent-home:not(.scrolled) {
        background-color: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: none !important;
    }

    .navbar-transparent-home:not(.scrolled) .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .navbar-transparent-home:not(.scrolled) .nav-link:hover {
        color: var(--primary-orange) !important;
    }

    .navbar-transparent-home:not(.scrolled) .nav-link::after {
        background-color: var(--white) !important;
    }

    .navbar-transparent-home:not(.scrolled) .logo-colored {
        opacity: 0;
        visibility: hidden;
    }

    .navbar-transparent-home:not(.scrolled) .logo-white {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile toggler icon styling on transparent state */
/* .navbar-transparent-home:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.navbar-transparent-home:not(.scrolled) .navbar-toggler-icon {
    filter: invert(1) grayscale(1) brightness(2);
} */

.footer-link {
    text-decoration: none;
    color: var(--primary-orange);
}
