/* index.css */

/* Custom Design System Tokens */
:root {
    --bg-base: #050d0a;
    --bg-base-gradient: linear-gradient(135deg, #071712 0%, #030806 100%);
    --bg-surface: rgba(14, 28, 23, 0.45);
    --bg-surface-opaque: #0b1511;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(245, 166, 35, 0.4);

    --primary: #f5a623;
    --primary-hover: #e09210;
    --primary-gradient: linear-gradient(135deg, #f5a623 0%, #d4af37 100%);
    --secondary: #2a5c4a;
    --secondary-hover: #1e4537;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #1ebd56;

    --text-primary: #f8faf9;
    --text-secondary: #9cb1aa;
    --text-muted: #627770;

    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;

    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(245, 166, 35, 0.2);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-base);
    background-image: var(--bg-base-gradient);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Utility Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Scroll Triggered Animations */
.animate-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

.animate-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Navigation Bar */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
}

.navbar {
    background: rgba(10, 20, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

/* .navbar.scrolled {
    background: rgba(5, 13, 10, 0.9);
    padding: 10px 25px;
    border-bottom: 1px solid rgba(245, 166, 35, 0.3);
} */

.logo-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(245, 166, 35, 0.1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #050d0a;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.cta-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-image: url("../assets/images/hero_background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(9, 30, 22, 0.6) 0%,
            rgba(3, 10, 7, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #050d0a;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* Sections Base Styling */
section {
    padding: 50px 0 !important;
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background-color: #030806;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-premium);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
}

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

.card-fallback-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65) contrast(1.1);
}

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

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

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(3, 8, 6, 0.95) 100%);
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-icon-box {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: #050d0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.service-emphasis {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Services Comparison Table (GEO & SEO Optimization) */
.services-comparison-box {
    margin-top: 50px;
    padding: 35px 30px;
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.comparison-table-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.comparison-table-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 8px auto 0 auto;
    border-radius: var(--radius-sm);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.services-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    min-width: 800px;
}

.services-comparison-table th,
.services-comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    vertical-align: middle;
}

.services-comparison-table th {
    background-color: rgba(10, 20, 16, 0.4);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.services-comparison-table tr {
    transition: background-color 0.3s ease;
}

.services-comparison-table tr:hover {
    background-color: rgba(245, 166, 35, 0.02);
}

.services-comparison-table td strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Why Choose Us Section */
.why-us-section {
    background-color: var(--bg-base);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 166, 35, 0.25);
    transform: translateY(-5px);
}

.why-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(245, 166, 35, 0.15);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Booking Section */
.booking-section {
    background-color: #030806;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.booking-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 18px 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: var(--primary);
    background: rgba(14, 28, 23, 0.6);
    border-bottom: 2px solid var(--primary);
}

.booking-content {
    padding: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.input-group input,
.input-group select {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.15);
}

.form-disclaimer {
    background: rgba(245, 166, 35, 0.05);
    border-left: 3px solid var(--primary);
    padding: 12px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg,
            var(--whatsapp-green) 0%,
            var(--whatsapp-green-hover) 100%);
    color: white;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-submit:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-base);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 10px;
    align-items: center;
    padding: 55px;
    border: none;
    background: none;
    box-shadow: none;
    width: 100%;
    position: relative;
}

.testimonial-hero-phrase {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.testimonial-hero-phrase .quote-symbol {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.18;
    position: absolute;
    top: -65px;
    left: -20px;
}

.testimonial-hero-phrase h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.stars {
    color: var(--primary);
    font-size: 1.15rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(245, 166, 35, 0.2);
}

.testimonial-text {
    font-family: var(--font-body);
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-style: normal;
    font-weight: 400;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.user-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.user-meta {
    display: inline-block;
    color: var(--primary);
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-section {
    background-color: #030806;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.detail-item h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-link:hover {
    color: var(--primary);
}

.contact-actions-box {
    position: relative;
}

.glass-cta-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    text-align: center;
}

.glass-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.glass-cta-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta-block {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp {
    background: linear-gradient(135deg,
            var(--whatsapp-green) 0%,
            var(--whatsapp-green-hover) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Footer Section */
.footer {
    background-color: #020504;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* padding: 40px 0 0; */
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    /* margin-bottom: 60px; */
    padding: 25px 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 380px;
    line-height: 1.6;
}

.footer-links-group h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    /* margin-bottom: 30px; */
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 15px 0;
}

.footer-branding {
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* Responsive Styles for Mobile, Tablet and Large Screen Sizes */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

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

    .header {
        top: 0;
        width: 100%;
    }

    .navbar {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 15px 20px;
    }

    /* .navbar.scrolled {
        padding: 10px 20px;
    } */

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 13, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Toggle active classes */
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

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

    .booking-content {
        padding: 24px;
    }

    .booking-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .booking-tabs::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .tab-btn {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
        padding: 15px 20px;
        font-size: 0.9rem;
        border-bottom: 2px solid transparent;
    }

    .tab-btn.active {
        border-bottom: 2px solid var(--primary);
    }

    .slider-arrow {
        display: none !important;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-flex {
        justify-content: center;
        text-align: center;
        flex-direction: column-reverse;
        gap: 10px;
    }
}

/* Custom Additions - Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
    background: rgba(5, 13, 10, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.testimonials-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-track .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    border: none;
    background: none;
    box-shadow: none;
    padding: 30px;
    margin: 0;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.slider-arrow:hover {
    background: rgba(245, 166, 35, 0.12);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
    transform: scale(1.08);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    height: 8px;
    border-radius: 4px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.3);
}

/* Form Validation Styles */
.input-group input:invalid:not(:placeholder-shown),
.input-group select:invalid:not(:placeholder-shown) {
    border-color: #ff4d4f;
    box-shadow: 0 0 10px rgba(255, 77, 79, 0.15);
}

.input-group input:valid:not(:placeholder-shown) {
    border-color: #52c41a;
    box-shadow: 0 0 10px rgba(82, 196, 26, 0.15);
}

/* Mobile responsive fixes for Testimonials Slider */
@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        gap: 10px;
        position: relative;
        padding: 0 10px;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        background: rgba(10, 20, 16, 0.85);
        border: 1px solid var(--border-color);
    }

    .slider-arrow.prev {
        left: -15px;
    }

    .slider-arrow.next {
        right: -15px;
    }

    .testimonials-track .testimonial-card {
        padding: 30px 20px;
    }
}

/* Trending Himalayan Journeys Styles */
.routes-section {
    background-color: var(--bg-base);
}

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

.route-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.route-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.1);
}

.route-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(245, 166, 35, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.route-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.route-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.route-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.route-card:hover .route-action {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* FAQ Accordion Styles */
.faq-section {
    background-color: #030806;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: var(--shadow-premium);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 30px 24px 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Floating WhatsApp Badge Styles */
.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            var(--whatsapp-green) 0%,
            var(--whatsapp-green-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0) translateY(20px);
    pointer-events: none;
}

.whatsapp-float-widget.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.whatsapp-float-widget:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-widget:active {
    transform: scale(0.95);
}

.wa-widget-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--whatsapp-green);
    border-radius: 50%;
    animation: widget-pulse 2s infinite;
    z-index: -1;
}

@keyframes widget-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

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

/* Media Query Adaptations for Trending Routes & FAQ */
@media (max-width: 1024px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .routes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 24px 20px 24px;
    }

    .cta-text-nav {
        display: none;
    }

    .cta-btn-nav {
        padding: 10px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .btn {
        padding: 12px 24px;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    section {
        padding: 45px 0;
    }

    .whatsapp-float-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* Booking Section Responsiveness Fixes */
    .booking-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: wrap;
        /* override nowrap */
    }

    .tab-btn {
        flex: 1 1 auto;
        width: 100%;
        padding: 12px 6px;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tab-btn:nth-child(2n) {
        border-right: none;
    }

    .tab-btn.active {
        border-bottom-color: var(--primary);
    }

    .booking-image-side {
        padding: 40px 20px;
        min-height: 300px;
    }

    .stats-pills-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-pill-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        text-align: left;
    }

    .services-comparison-box {
        padding: 25px 15px;
    }
}

/* ------------------------------------------------------------------------- */
/* Phase 2 Additions: Typer, Back to Top, visual gallery & Weather Widget   */
/* ------------------------------------------------------------------------- */

/* Typer Cursor Blink */
#typer-text {
    border-right: 2px solid var(--primary);
    padding-right: 5px;
    animation: cursor-blink 0.8s step-end infinite;
    white-space: nowrap;
}

@keyframes cursor-blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary);
    }
}

/* Back to Top scroll progress widget */
#back-to-top {
    position: fixed;
    bottom: 110px;
    right: 36px;
    width: 48px;
    height: 48px;
    background: rgba(5, 13, 10, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    z-index: 998;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-premium);
}

#back-to-top.visible {
    opacity: 1;
    transform: scale(1);
}

#back-to-top:hover {
    background: var(--bg-surface-opaque);
    border-color: var(--primary);
    transform: scale(1.08);
}

.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 131.95;
    stroke-dashoffset: 131.95;
    transition: stroke-dashoffset 0.1s linear;
}

.arrow-up {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: -2px;
}

/* Destination Visual Gallery Styles */
.gallery-section {
    background-color: var(--bg-base);
}

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

.gallery-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    background-color: var(--bg-surface-opaque);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(to top,
            rgba(5, 13, 10, 0.98) 0%,
            rgba(5, 13, 10, 0.7) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    transition: all 0.4s ease;
    opacity: 0.9;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(0.85) contrast(1.15);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
}

.gallery-overlay span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Himalayan Weather Widget Styles */
.weather-widget {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 24px;
    text-align: left;
}

.weather-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.weather-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all 0.3s ease;
}

.weather-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(245, 166, 35, 0.15);
}

.loc-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.temp-val {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
}

.cond-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Media Query Adaptations for Phase 2 additions */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 80px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .gallery-card {
        height: 280px;
    }
}

/* Custom Counter Styles */
.custom-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 48px;
    width: 100%;
}

.custom-counter input[type="number"] {
    width: 50px;
    border: none;
    background: transparent;
    text-align: center;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.custom-counter input[type="number"]::-webkit-outer-spin-button,
.custom-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.counter-btn {
    width: 44px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-btn:hover {
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary);
}

.counter-btn:active {
    transform: scale(0.9);
}

/* Suggestion Pills Styles */
.suggestion-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.suggestion-pills .pill {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.suggestion-pills .pill:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.suggestion-pills .pill:active {
    transform: translateY(0);
}

/* Dynamic Hidden Selects Transition helper */
.input-group {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* Make wide input fields fill full row on larger form layouts */
@media (min-width: 600px) {
    .full-width-tablet {
        grid-column: span 2;
    }
}

/* Booking Split Wrapper Styles */
.booking-split-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.booking-form-side {
    display: flex;
    flex-direction: column;
}

.booking-image-side {
    position: relative;
    background-image:
        linear-gradient(rgba(3, 8, 6, 0.45), rgba(3, 8, 6, 0.9)),
        url("../assets/images/luxury_resort.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 50px 40px;
    border-left: 1px solid var(--border-color);
}

.image-side-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-image-side h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 800;
}

.booking-image-side p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-pills-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.stat-pill-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.stat-pill-item:hover {
    background: rgba(245, 166, 35, 0.05);
    border-color: rgba(245, 166, 35, 0.25);
    transform: translateY(-2px);
}

.stat-pill-item strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-pill-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Media Query for split layout responsive view */
@media (max-width: 991px) {
    .booking-split-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-image-side {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 50px 30px;
        min-height: 380px;
    }
}

/* Testimonials Aurora Glow Blob & Split Layout Responsive Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-glow-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(245, 166, 35, 0.08) 0%,
            rgba(42, 92, 74, 0.05) 50%,
            transparent 80%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    animation: floatGlow 20s infinite alternate ease-in-out;
}

@keyframes floatGlow {
    0% {
        transform: translate(-45%, -55%) scale(1);
    }

    100% {
        transform: translate(-55%, -45%) scale(1.15);
    }
}

@media (max-width: 991px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 30px;
    }

    .testimonial-hero-phrase h3 {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .testimonial-hero-phrase .quote-symbol {
        font-size: 6rem;
        top: -50px;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        padding: 30px 15px;
        gap: 25px;
    }

    .testimonial-hero-phrase h3 {
        font-size: 1.45rem;
    }

    .testimonial-details {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .booking-content {
        padding: 20px 16px;
    }
}

/* About Us Section Styles */
.about-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom,
            rgba(3, 8, 6, 0.95),
            rgba(5, 13, 10, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    margin-top: 50px;
}

.about-story-block h3,
.about-values-block h3,
.team-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-story-block p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-values-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about-values-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.about-values-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.about-team-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    background: rgba(245, 166, 35, 0.03);
    border-color: rgba(245, 166, 35, 0.15);
    transform: translateY(-5px);
}

.team-member-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.team-member-card span {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive queries for About Section */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 60px 0;
    }

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

    .about-story-block h3,
    .about-values-block h3,
    .team-section-title {
        font-size: 1.5rem;
    }
}

/* Subpage Hero Banner */
.subpage-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-image: url("../images/package.png");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    /* margin-top: 80px; */
}

.subpage-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(9, 30, 22, 0.7) 0%,
            rgba(3, 10, 7, 0.95) 100%);
    z-index: 1;
}

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

.subpage-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.subpage-hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Detail Section layouts for Subpages */
.details-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-block:nth-child(even) {
    direction: rtl;
}

.detail-block:nth-child(even) .detail-text-wrapper {
    direction: ltr;
}

.detail-text-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-text-wrapper .detail-tagline {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.detail-text-wrapper p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.detail-benefits {
    margin-bottom: 25px;
}

.detail-benefits h4,
.detail-safety-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.detail-benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-benefits-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.detail-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform 0.5s ease;
}

.detail-block:hover .detail-img {
    transform: scale(1.05);
}

/* FAQs and Trek info structures */
.detail-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.detail-faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
}

.detail-faq-item h5 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Subpage responsiveness */
@media (max-width: 991px) {
    .subpage-hero {
        height: 280px;
    }

    .subpage-hero-title {
        font-size: 2.2rem;
    }

    .detail-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-block:nth-child(even) {
        direction: ltr;
    }

    .detail-img-wrapper {
        height: 300px;
        order: -1;
    }
}