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

:root {
    --black: #000000;
    --dark-grey: #1a1a1a;
    --grey: #333333;
    --light-grey: #cccccc;
    --white: #ffffff;
    --re-red: #C41E3A;
    --re-red-dark: #9a1829;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.bike-loader {
    position: fixed;
    top: 50%;
    left: -400px;
    transform: translateY(-50%);
    width: 350px;
    height: 200px;
    animation: bikeRideAcross 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 1;
}

@keyframes bikeRideAcross {
    0% {
        left: -400px;
    }
    100% {
        left: calc(100% + 100px);
    }
}

.bike-icon {
    position: relative;
    width: 350px;
    height: 200px;
    animation: bikeBounce 0.15s ease-in-out infinite alternate;
}

.loading-bike-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(196, 30, 58, 0.3));
    animation: bikeTilt 0.15s ease-in-out infinite alternate;
}

@keyframes bikeTilt {
    from {
        transform: rotate(-1deg) translateY(0px);
    }
    to {
        transform: rotate(1deg) translateY(-2px);
    }
}

@keyframes bikeBounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-5px);
    }
}

/* Exhaust Smoke */
.smoke-container {
    position: absolute;
    left: 80px;
    bottom: 60px;
    width: 200px;
    height: 100px;
    pointer-events: none;
}

.smoke {
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.8) 0%, rgba(120, 120, 120, 0.5) 40%, transparent 100%);
    border-radius: 50%;
    animation: smokeFlow 1.2s ease-out infinite;
    opacity: 0;
}

.smoke-1 {
    animation-delay: 0s;
}

.smoke-2 {
    animation-delay: 0.15s;
}

.smoke-3 {
    animation-delay: 0.3s;
}

.smoke-4 {
    animation-delay: 0.45s;
}

.smoke-5 {
    animation-delay: 0.6s;
}

.smoke-6 {
    animation-delay: 0.75s;
}

.smoke-7 {
    animation-delay: 0.9s;
}

.smoke-8 {
    animation-delay: 1.05s;
}

@keyframes smokeFlow {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0.9;
    }
    30% {
        opacity: 0.8;
    }
    60% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-150px, -80px) scale(4);
        opacity: 0;
    }
}

/* Full Screen Smoke Overlay */
.smoke-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(150, 150, 150, 0) 0%, rgba(100, 100, 100, 0.3) 50%, rgba(80, 80, 80, 0.6) 100%);
    opacity: 0;
    animation: smokeScreenFill 2.5s ease-out forwards;
    animation-delay: 0.5s;
    pointer-events: none;
    z-index: 5;
}

@keyframes smokeScreenFill {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: scale(2);
    }
}

.loading-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 6px;
    color: var(--white);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.loading-text .word {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.6s ease forwards;
}

.loading-text .word:nth-child(1) {
    animation-delay: 0.2s;
}

.loading-text .word:nth-child(2) {
    animation-delay: 0.4s;
    color: var(--re-red);
}

.loading-text .word:nth-child(3) {
    animation-delay: 0.6s;
}

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

.loading-bar-container {
    margin-top: 20px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--grey);
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--re-red), #ff4d6d, var(--re-red));
    background-size: 200% 100%;
    width: 0;
    animation: loadProgress 2.5s ease-in-out forwards, shimmer 1.5s linear infinite;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--re-red);
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading-status {
    font-size: 14px;
    color: var(--light-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--white);
}

.logo span {
    color: var(--re-red);
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--re-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.admin-btn {
    background: var(--re-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    margin-left: 10px;
}

.admin-btn:hover {
    background: var(--re-red-dark);
    transform: translateY(-2px) rotate(360deg);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 40px 0 60px;
    max-width: 900px;
    margin: 0;
    margin-left: 0;
}

.hero-label {
    display: inline-block;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-label span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid var(--re-red);
}

.hero-title-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.title-word {
    display: block;
    color: var(--white);
    letter-spacing: 8px;
}

.title-word-highlight {
    display: block;
    color: var(--re-red);
    letter-spacing: 12px;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
}

.hero-description {
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.btn-primary-new,
.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid;
}

.btn-primary-new {
    background: var(--re-red);
    color: var(--white);
    border-color: var(--re-red);
}

.btn-primary-new:hover {
    background: transparent;
    transform: translateY(-2px);
}

.btn-primary-new i {
    transition: transform 0.3s;
    font-size: 12px;
}

.btn-primary-new:hover i {
    transform: translateX(5px);
}

.btn-secondary-new {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--re-red);
    border-color: var(--re-red);
    transform: scale(1.1);
}

.hero-carousel-dots {
    display: flex;
    gap: 12px;
}

.hero-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-carousel-dots .dot.active {
    background: var(--re-red);
    border-color: var(--white);
    transform: scale(1.3);
    width: 30px;
    border-radius: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--white);
    margin: 0 auto 10px;
    animation: scrollDown 2s infinite;
}

.scroll-indicator p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-grey);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: var(--light-grey);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
}

.btn-primary {
    background: var(--re-red);
    color: var(--white);
    border: 2px solid var(--re-red);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--white);
    animation: scrollDown 2s infinite;
}

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

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0.3;
    }
}

/* Section Styles */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 70px);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--light-grey);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Fleet Selector - Royal Enfield Carousel Style */
.fleet-selector {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-grey) 50%, var(--black) 100%);
    position: relative;
}

.fleet-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-fleet {
    margin-bottom: 50px;
    text-align: left;
    padding-left: 20px;
}

.fleet-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 30, 58, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.fleet-badge i {
    color: var(--re-red);
    font-size: 16px;
}

.section-title-fleet {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(45px, 7vw, 75px);
    letter-spacing: 6px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle-fleet {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--light-grey);
    letter-spacing: 1.5px;
    font-weight: 300;
    max-width: 700px;
}

/* Bike Carousel */
.bike-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    border-color: var(--re-red);
    background: rgba(196, 30, 58, 0.1);
}

.carousel-arrow.left {
    left: 50px;
}

.carousel-arrow.right {
    right: 50px;
}

/* Bike Names Navigation */
.bike-names-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
}

.bike-name-item {
    text-align: left;
    transition: all 0.3s;
}

.bike-name-item.prev-bike,
.bike-name-item.next-bike {
    opacity: 0.4;
    font-size: 18px;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.bike-name-item.current-bike {
    opacity: 1;
}

.bike-category {
    display: block;
    font-size: 12px;
    color: var(--light-grey);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bike-name-item.current-bike h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 4px;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

/* Bike Display Area */
.bike-display-area {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 450px;
    margin-bottom: 40px;
    overflow: hidden;
}

.bike-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), 
                opacity 0.8s ease, 
                visibility 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bike-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
}

.bike-slide.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.bike-slide.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.bike-slide.slide-in-left {
    transform: translateX(-100%);
}

.bike-slide.slide-in-right {
    transform: translateX(100%);
}

.bike-slide img {
    max-width: 90%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
    position: relative;
    z-index: 1;
    margin-bottom: auto;
}

/* Bike Info Overlay */
.bike-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 70%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.bike-slide.active .bike-info-overlay {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
    pointer-events: auto;
}

/* Quick Specs */
.bike-specs-quick {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    min-width: 90px;
}

.spec-item:hover {
    background: rgba(196, 30, 58, 0.25);
    border-color: var(--re-red);
    transform: translateY(-3px);
}

.spec-item i {
    font-size: 18px;
    color: var(--re-red);
}

.spec-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Pricing Display */
.bike-pricing-display {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--re-red) 0%, #9a1829 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
    position: relative;
    overflow: hidden;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: priceShine 3s linear infinite;
}

@keyframes priceShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: baseline;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.price-period {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes bikeZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Action Buttons */
.bike-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-know-more {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-know-more i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-know-more:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-know-more:hover i {
    transform: scale(1.2);
}

.btn-configure {
    padding: 16px 40px;
    background: var(--re-red);
    border: 2px solid var(--re-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-configure:hover {
    background: transparent;
    transform: translateX(5px);
}

.btn-configure i {
    transition: transform 0.3s;
}

.btn-configure:hover i {
    transform: translateX(5px);
}

/* Experience Section */
.experience {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    width: 100%;
}

.experience-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.experience .section-title {
    color: var(--black);
    margin-bottom: 40px;
}

.experience-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--grey);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--re-red);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--grey);
    letter-spacing: 1px;
}

/* Popular Tour Packages Section */
.tour-packages-section {
    padding: 100px 0;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

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

.packages-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 30, 58, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
}

.packages-badge i {
    color: var(--re-red);
    font-size: 16px;
}

.section-title-packages {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 65px);
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.packages-subtitle {
    font-size: 16px;
    color: var(--light-grey);
    letter-spacing: 1px;
}

/* Packages Carousel */
.packages-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 80px;
}

.packages-carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.packages-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    gap: 30px;
}

.tour-package-card-new {
    min-width: calc(33.333% - 20px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(196, 30, 58, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-package-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, transparent 50%, rgba(196, 30, 58, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.tour-package-card-new:hover::before {
    opacity: 1;
}

.tour-package-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--re-red);
    box-shadow: 0 25px 50px rgba(196, 30, 58, 0.3), 0 0 40px rgba(196, 30, 58, 0.2);
}

.tour-package-card-new.featured {
    border-color: var(--re-red);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
}

.tour-package-card-new.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(196, 30, 58, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.package-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--re-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 2;
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
    }
}

.package-badge-top.featured-badge {
    background: linear-gradient(135deg, var(--re-red) 0%, #9a1829 100%);
    animation: badgePulse 2s ease-in-out infinite, shimmerBadge 3s linear infinite;
}

@keyframes shimmerBadge {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

.package-image-new {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.package-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tour-package-card-new:hover .package-image-new img {
    transform: scale(1.15) rotate(2deg);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(196, 30, 58, 0.3) 100%);
    transition: background 0.5s;
}

.tour-package-card-new:hover .package-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(196, 30, 58, 0.5) 100%);
}

.package-details-new {
    padding: 35px 30px;
    position: relative;
    z-index: 2;
}

.package-details-new h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.4s;
}

.tour-package-card-new:hover .package-details-new h3 {
    color: var(--re-red);
    transform: translateX(5px);
}

.package-description {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 25px;
    transition: color 0.4s;
}

.tour-package-card-new:hover .package-description {
    color: var(--dark-grey);
}

.package-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 2px solid rgba(196, 30, 58, 0.15);
    border-bottom: 2px solid rgba(196, 30, 58, 0.15);
}

.info-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item-new i {
    color: var(--re-red);
    font-size: 22px;
    width: 24px;
    transition: transform 0.4s;
}

.tour-package-card-new:hover .info-item-new i {
    transform: scale(1.2);
}

.info-item-new div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    font-weight: 600;
}

.info-value {
    font-size: 15px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-price-new {
    margin-bottom: 25px;
}

.price-label {
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    color: var(--re-red);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(196, 30, 58, 0.2);
    transition: all 0.4s;
}

.tour-package-card-new:hover .price-amount {
    transform: scale(1.08);
    text-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.price-amount span {
    font-size: 16px;
    color: var(--grey);
    font-weight: 400;
}

.btn-package-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 28px;
    background: var(--re-red);
    border: 2px solid var(--re-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-package-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-package-new:hover::before {
    left: 100%;
}

.btn-package-new:hover {
    background: var(--black);
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-package-new i {
    transition: transform 0.5s;
    font-size: 16px;
}

.btn-package-new:hover i {
    transform: translateX(8px);
}

.tour-package-card-new.featured .btn-package-new {
    background: linear-gradient(135deg, var(--re-red) 0%, #9a1829 100%);
    border-color: var(--re-red);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.tour-package-card-new.featured .btn-package-new:hover {
    background: var(--black);
    border-color: var(--black);
}

.package-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(196, 30, 58, 0.9);
    border: 2px solid var(--re-red);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-nav-btn:hover {
    background: var(--white);
    color: var(--re-red);
    transform: translateY(-50%) scale(1.1);
}

.package-nav-btn.prev-package {
    left: 0;
}

.package-nav-btn.next-package {
    right: 0;
}

.package-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.package-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.package-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.package-dot.active {
    background: var(--re-red);
    border-color: var(--white);
    transform: scale(1.3);
}

/* Trip Packages */
.trip-packages {
    padding: 100px 0;
    background: var(--dark-grey);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.package-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover img {
    transform: scale(1.1);
}

.package-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
}

.package-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.package-duration {
    color: var(--re-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.package-content p {
    margin-bottom: 20px;
    color: var(--light-grey);
}

/* Rental Process */
.rental-process {
    padding: 100px 0;
    background: var(--black);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--re-red);
    opacity: 0.3;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.process-step p {
    color: var(--light-grey);
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: var(--dark-grey);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-item:hover img {
    transform: scale(1.2);
}

/* Social Media Section */
.social-media-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-grey) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.social-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.social-header .section-title {
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.social-header .section-subtitle {
    font-size: 18px;
    color: var(--light-grey);
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.social-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 60px 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease backwards;
}

.social-card:nth-child(1) { animation-delay: 0.1s; }
.social-card:nth-child(2) { animation-delay: 0.2s; }
.social-card:nth-child(3) { animation-delay: 0.3s; }
.social-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.social-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.6s;
}

.social-card:hover::before {
    animation: shine 1.5s infinite;
}

.social-card:hover::after {
    opacity: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.social-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.social-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: all 0.8s;
    animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.6s;
    z-index: -1;
}

.social-card:hover .social-icon::after {
    opacity: 0.6;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-card.instagram:hover {
    border-color: #e6683c;
    box-shadow: 0 30px 60px rgba(230, 104, 60, 0.5), 0 0 40px rgba(230, 104, 60, 0.3);
}

.social-card.instagram:hover .social-icon::before {
    border-color: #e6683c;
    animation: pulse-ring 1.5s infinite, rotate360 10s linear infinite;
}

.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    color: var(--white);
}

.social-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 30px 60px rgba(24, 119, 242, 0.5), 0 0 40px rgba(24, 119, 242, 0.3);
}

.social-card.facebook:hover .social-icon::before {
    border-color: #1877f2;
    animation: pulse-ring 1.5s infinite, rotate360 10s linear infinite;
}

.social-card.google .social-icon {
    background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
    color: #4285f4;
}

.social-card.google:hover {
    border-color: #4285f4;
    box-shadow: 0 30px 60px rgba(66, 133, 244, 0.5), 0 0 40px rgba(66, 133, 244, 0.3);
}

.social-card.google:hover .social-icon::before {
    border-color: #4285f4;
    animation: pulse-ring 1.5s infinite, rotate360 10s linear infinite;
}

.social-card.linkedin .social-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
    color: var(--white);
}

.social-card.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 30px 60px rgba(0, 119, 181, 0.5), 0 0 40px rgba(0, 119, 181, 0.3);
}

.social-card.linkedin:hover .social-icon::before {
    border-color: #0077b5;
    animation: pulse-ring 1.5s infinite, rotate360 10s linear infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.social-card:hover .social-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.social-content {
    z-index: 1;
}

.social-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    transition: all 0.4s;
    font-weight: 700;
}

.social-card:hover .social-content h3 {
    transform: scale(1.08);
    letter-spacing: 2px;
}

.social-content p {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 12px;
    transition: all 0.4s;
}

.social-card:hover .social-content p {
    color: var(--white);
    transform: translateY(-2px);
}

.social-handle {
    display: inline-block;
    font-size: 15px;
    color: var(--re-red);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s;
    padding: 8px 16px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 20px;
}

.social-card:hover .social-handle {
    transform: scale(1.1);
    letter-spacing: 1.5px;
    background: rgba(196, 30, 58, 0.2);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.social-arrow {
    margin-top: auto;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--re-red);
    font-size: 20px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.social-card:hover .social-arrow {
    background: var(--re-red);
    color: var(--white);
    transform: translateX(15px) rotate(45deg) scale(1.3);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.5);
}

.social-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(196, 30, 58, 0.3);
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.social-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1), transparent);
    transition: left 0.8s;
}

.social-cta:hover::before {
    left: 100%;
}

.social-cta:hover {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(196, 30, 58, 0.08) 100%);
    border-color: rgba(196, 30, 58, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.social-cta p {
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.8px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hashtag {
    color: var(--re-red);
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s;
    display: inline-block;
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.social-cta:hover .hashtag {
    transform: scale(1.15);
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.8);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: var(--dark-grey);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.booking-form {
    background: var(--black);
    padding: 40px;
    border: 1px solid var(--grey);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    color: var(--light-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background: var(--dark-grey);
    border: 1px solid var(--grey);
    color: var(--white);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--re-red);
}

.rental-summary {
    background: var(--dark-grey);
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid var(--re-red);
}

.rental-summary h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.summary-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.total-amount {
    font-size: 18px;
    color: var(--re-red);
    padding-top: 10px;
    border-top: 1px solid var(--grey);
    margin-top: 10px;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-top: 20px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--black);
    padding: 30px;
    border: 1px solid var(--grey);
}

.info-card i {
    font-size: 32px;
    color: var(--re-red);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    color: var(--light-grey);
    font-size: 14px;
    border-bottom: 1px solid var(--grey);
}

.info-card li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--black);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--dark-grey);
    margin-bottom: 20px;
    border: 1px solid var(--grey);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(196, 30, 58, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.faq-question i {
    color: var(--re-red);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--light-grey);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--dark-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 28px;
    color: var(--re-red);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.contact-item p {
    color: var(--light-grey);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid var(--grey);
}

.social-links a:hover {
    background: var(--re-red);
    border-color: var(--re-red);
    transform: translateY(-3px);
}

.map-container {
    height: 100%;
    min-height: 400px;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid var(--grey);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.footer-col h3 span {
    color: var(--re-red);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--light-grey);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-tagline {
    font-style: italic;
    color: var(--light-grey);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--re-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--grey);
    color: var(--light-grey);
    font-size: 14px;
}

.footer-bottom p {
    margin: 8px 0;
}

.gravita-link {
    color: var(--re-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.gravita-link:hover {
    color: #ff3366;
    text-decoration: underline;
}

.gravita-link::after {
    content: ' ↗';
    font-size: 12px;
    opacity: 0.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-arrow.left {
        left: 20px;
    }
    
    .carousel-arrow.right {
        right: 20px;
    }
    
    .bike-names-nav {
        gap: 60px;
    }
    
    .bike-name-item.current-bike h3 {
        font-size: 36px;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Social Media Tablet */
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .social-card {
        padding: 45px 30px;
    }
    
    /* Package Carousel Tablet */
    .tour-package-card-new {
        min-width: calc(50% - 15px);
    }
    
    /* Experience Section Tablet */
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Tablet Portrait and Small Laptops */
@media (max-width: 900px) {
    /* Hero Content */
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-title-new {
        font-size: 70px;
    }
    
    /* Fleet Section */
    .section-title-fleet {
        font-size: 55px;
    }
    
    /* Package Cards */
    .packages-carousel-wrapper {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .section-header-fleet {
        margin-bottom: 60px;
    }
    
    .fleet-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .fleet-badge i {
        font-size: 14px;
    }
    
    .section-title-fleet {
        font-size: 42px;
        letter-spacing: 5px;
    }
    
    .section-subtitle-fleet {
        font-size: 14px;
        letter-spacing: 1px;
        padding: 0 15px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-arrow.left {
        left: 10px;
    }
    
    .carousel-arrow.right {
        right: 10px;
    }
    
    .bike-names-nav {
        gap: 30px;
        flex-direction: column;
    }
    
    .bike-name-item.prev-bike,
    .bike-name-item.next-bike {
        display: none;
    }
    
    .bike-name-item.current-bike h3 {
        font-size: 32px;
    }
    
    .bike-display-area {
        height: 350px;
    }
    
    .bike-slide img {
        max-width: 95%;
        max-height: 60%;
    }
    
    /* Bike Pricing Mobile */
    .bike-info-overlay {
        padding: 15px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 80%, transparent 100%);
    }
    
    .bike-specs-quick {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        flex: none;
    }
    
    .spec-item {
        padding: 8px 12px;
        min-width: 70px;
        flex: 1;
        max-width: 90px;
    }
    
    .spec-item i {
        font-size: 16px;
    }
    
    .spec-item span {
        font-size: 10px;
    }
    
    .bike-pricing-display {
        margin-left: 0;
        justify-content: center;
    }
    
    .price-tag {
        padding: 12px 20px;
        align-items: center;
    }
    
    .price-value {
        font-size: 32px;
    }
    
    .price-period {
        font-size: 14px;
    }
    
    .price-label {
        font-size: 9px;
    }
    
    .bike-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .btn-know-more,
    .btn-configure {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Mobile Styles */
    .hero-content {
        padding: 0 20px;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-label {
        margin-bottom: 20px;
    }
    
    .hero-label span {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .hero-title-new {
        font-size: 50px;
        margin-bottom: 25px;
    }
    
    .title-word {
        letter-spacing: 5px;
    }
    
    .title-word-highlight {
        letter-spacing: 8px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 18px 40px;
        font-size: 14px;
        letter-spacing: 2.5px;
        border-width: 2px;
    }
    
    .btn-primary-new i {
        font-size: 14px;
    }
    
    .hero-carousel-controls {
        padding: 10px 20px;
        gap: 20px;
    }
    
    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Loading Mobile */
    .bike-loader {
        width: 250px;
        height: 150px;
        left: -300px;
    }
    
    .bike-icon {
        width: 250px;
        height: 150px;
    }
    
    .loading-bike-img {
        width: 100%;
        height: 100%;
    }
    
    .smoke-container {
        left: 60px;
        bottom: 45px;
        width: 150px;
        height: 80px;
    }
    
    .smoke {
        width: 30px;
        height: 30px;
    }
    
    .loading-text {
        font-size: 28px;
        letter-spacing: 3px;
        flex-direction: column;
        gap: 5px;
    }
    
    .loading-bar {
        width: 250px;
    }
    
    .loading-status {
        font-size: 12px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .btn-hero {
        justify-content: center;
    }
    
    .bike-navigation {
        flex-direction: column;
    }
    
    .bike-nav-btn {
        width: 100%;
    }
    
    .bike-specs {
        grid-template-columns: 1fr;
    }
    
    .bike-pricing {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-packages-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .section-title-packages {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .package-image {
        height: 200px;
    }
    
    .package-details {
        padding: 20px;
    }
    
    .package-details h3 {
        font-size: 18px;
    }
    
    .features-list {
        padding: 0 20px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
    }
    
    .feature-number {
        font-size: 36px;
        min-width: auto;
    }
    
    .feature-info {
        gap: 20px;
    }
    
    .feature-icon-inline {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon-inline i {
        font-size: 20px;
    }
    
    .feature-text h3 {
        font-size: 18px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .tour-packages-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Packages Carousel Mobile */
    .packages-carousel-wrapper {
        padding: 0 60px;
    }
    
    .tour-package-card-new {
        min-width: 100%;
    }
    
    .package-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .package-nav-btn.prev-package {
        left: 5px;
    }
    
    .package-nav-btn.next-package {
        right: 5px;
    }
    
    .package-details-new {
        padding: 25px 20px;
    }
    
    .package-details-new h3 {
        font-size: 20px;
    }
    
    .package-info-grid {
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    /* Hero Section Mobile */
    .hero-title-new {
        font-size: 45px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    /* Bike Carousel Mobile */
    .bike-name-item.current-bike h3 {
        font-size: 28px;
    }
    
    .bike-display-area {
        height: 300px;
    }
    
    /* Package Cards Mobile */
    .tour-package-card-new {
        min-width: 100%;
    }
    
    .package-details-new h3 {
        font-size: 22px;
    }
    
    .price-value {
        font-size: 32px;
    }
    
    /* Social Media Extra Small */
    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .social-content h3 {
        font-size: 20px;
    }
    
    /* Booking Form Mobile */
    .booking-form {
        padding: 25px 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        gap: 30px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease;
}


/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L50 50 L0 100 L50 50 L100 100 L100 0 Z" fill="rgba(196,30,58,0.05)"/></svg>');
    opacity: 0.3;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(196, 30, 58, 0.3) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 100px);
    letter-spacing: 10px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.about-hero-content p {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* About Content Section */
.about-content {
    padding: 100px 0;
    background: var(--white);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 60px);
    color: var(--black);
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey);
    letter-spacing: 0.5px;
}

/* Mission Section */
.about-mission {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 50px;
    background: var(--black);
    color: var(--white);
    border-left: 5px solid var(--re-red);
}

.mission-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--re-red);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--re-red);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.founder-badge i {
    font-size: 18px;
}

.founder-info h3 {
    font-size: 14px;
    color: var(--re-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--black);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.founder-title {
    font-size: 16px;
    color: var(--grey);
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.founder-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey);
}

/* Commitment Section */
.commitment-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.commitment-box {
    background: var(--black);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.commitment-box:hover {
    transform: translateY(-10px);
    border-color: var(--re-red);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.commitment-box i {
    font-size: 48px;
    color: var(--re-red);
    margin-bottom: 20px;
}

.commitment-box h4 {
    font-size: 20px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.commitment-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Conclusion Section */
.about-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 8px;
}

.conclusion-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey);
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 15px;
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--re-red);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 50px;
        letter-spacing: 6px;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .about-intro {
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .about-mission {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .founder-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .founder-info h2 {
        font-size: 36px;
    }
    
    .commitment-section {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .about-conclusion {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .conclusion-text {
        font-size: 16px;
    }
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 50%, var(--black) 100%);
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L50 50 L0 100 L50 50 L100 100 L100 0 Z" fill="rgba(196,30,58,0.05)"/></svg>');
    opacity: 0.3;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(196, 30, 58, 0.4) 100%);
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.gallery-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 100px);
    letter-spacing: 10px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.gallery-hero-content p {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* Gallery Content Section */
.gallery-content {
    padding: 100px 0;
    background: var(--white);
}

/* Tour Gallery Section */
.tour-gallery-section {
    margin-bottom: 100px;
}

.tour-gallery-section:last-child {
    margin-bottom: 0;
}

.tour-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.tour-gallery-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 60px);
    color: var(--black);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--grey);
    font-weight: 500;
}

.tour-meta i {
    color: var(--re-red);
    font-size: 18px;
}

/* Tour Gallery Image */
.tour-gallery-image {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.tour-gallery-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tour Carousel */
.tour-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 600px;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--re-red);
    border-color: var(--re-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

/* Tour Description */
.tour-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tour-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey);
    letter-spacing: 0.3px;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: var(--black);
    text-align: center;
}

.gallery-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 60px);
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .gallery-hero-content h1 {
        font-size: 50px;
        letter-spacing: 6px;
    }
    
    .gallery-content {
        padding: 60px 0;
    }
    
    .tour-gallery-image {
        margin: 0 auto 30px;
        border-radius: 8px;
    }
    
    .tour-gallery-image img {
        height: 400px;
    }
    
    .tour-gallery-section {
        margin-bottom: 60px;
    }
    
    .tour-gallery-header {
        padding: 0 20px;
    }
    
    .tour-meta {
        gap: 20px;
        font-size: 14px;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev-btn {
        left: 10px;
    }
    
    .carousel-btn.next-btn {
        right: 10px;
    }
    
    .tour-description {
        padding: 0 20px;
    }
    
    .tour-description p {
        font-size: 15px;
    }
    
    .gallery-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        height: 300px;
    }
    
    .tour-gallery-image img {
        height: 300px;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 10px;
    }
}


/* Mobile Responsive - Additional Styles */
@media (max-width: 768px) {
    /* Social Media Mobile */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .social-card {
        padding: 40px 25px;
    }
    
    .social-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .social-content h3 {
        font-size: 22px;
    }
    
    .social-content p {
        font-size: 13px;
    }
    
    .social-cta {
        padding: 35px 20px;
    }
    
    .social-cta p {
        font-size: 16px;
    }  }
    
    .tour-packages-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .package-image-new {
        height: 220px;
    }
    
    .package-details-new {
        padding: 25px 20px;
    }
    
    .package-details-new h3 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .social-content h3 {
        font-size: 18px;
    }
    
    .social-content p {
        font-size: 13px;
    }
    
    .tour-packages-grid-new {
        grid-template-columns: 1fr;
    }
    
    .package-badge-top {
        font-size: 10px;
        padding: 6px 12px;
        top: 15px;
        right: 15px;
    }
    
    .packages-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .section-title-packages {
        font-size: 32px;
    }
    
    .packages-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
}


/* ==================== ROUTES PAGE STYLES ==================== */

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    overflow: hidden;
}

.routes-hero {
    background-image: url('https://theadventurelovers.com/wp-content/uploads/2023/04/C-2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content-center {
    text-align: center;
    z-index: 2;
    padding: 40px 20px;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 20px;
    color: var(--light-grey);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb a {
    color: var(--re-red);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--light-grey);
}

/* Routes Overview */
.routes-overview {
    padding: 80px 20px;
    background: var(--dark-grey);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-intro p {
    font-size: 18px;
    color: var(--light-grey);
    line-height: 1.8;
}

/* Routes Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.route-card {
    background: var(--grey);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.route-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.route-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.route-card:hover .route-card-image img {
    transform: scale(1.1);
}

.route-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--re-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.route-card-content {
    padding: 30px;
}

.route-card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.route-distance {
    color: var(--re-red);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-desc {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.route-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.route-highlights span {
    background: rgba(196, 30, 58, 0.1);
    color: var(--re-red);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-view-route {
    width: 100%;
    padding: 14px 24px;
    background: var(--re-red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-view-route:hover {
    background: var(--re-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

/* Route Modal */
.route-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.route-modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.route-modal-content {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--grey);
    border-radius: 12px;
    position: relative;
    animation: slideInUp 0.4s ease;
}

.route-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--re-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.route-modal-close:hover {
    background: var(--re-red-dark);
    transform: rotate(90deg);
}

.route-detail-header {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.route-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.route-detail-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-grey);
}

.route-meta i {
    color: var(--re-red);
}

.route-detail-body {
    padding: 40px;
}

.route-overview,
.route-highlights,
.route-itinerary,
.route-inclusions,
.route-booking {
    margin-bottom: 50px;
}

.route-overview h3,
.route-highlights h3,
.route-itinerary h3,
.route-inclusions h3,
.route-booking h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
}

.route-overview p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 30px;
}

.route-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-box {
    background: var(--dark-grey);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box i {
    font-size: 32px;
    color: var(--re-red);
    margin-bottom: 15px;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.info-box p {
    color: var(--light-grey);
    font-size: 16px;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--light-grey);
}

.highlights-list li i {
    color: var(--re-red);
    font-size: 18px;
}

/* Itinerary */
.itinerary-day {
    background: var(--dark-grey);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(196, 30, 58, 0.1);
    border-bottom: 2px solid var(--re-red);
}

.day-number {
    background: var(--re-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.day-info {
    flex: 1;
}

.day-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--light-grey);
}

.day-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.day-meta i {
    color: var(--re-red);
}

.day-content {
    padding: 25px;
}

.day-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 20px;
}

.day-stops {
    margin-bottom: 20px;
}

.day-stops h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-stops h4 i {
    color: var(--re-red);
}

.day-stops ul {
    list-style: none;
    padding: 0;
}

.day-stops ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-grey);
}

.day-stops ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--re-red);
    font-weight: 700;
}

.day-highlights {
    display: grid;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.highlight-item i {
    color: var(--re-red);
    font-size: 18px;
    width: 24px;
}

.highlight-item span {
    color: var(--light-grey);
    font-size: 14px;
}

/* Inclusions/Exclusions */
.route-inclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.inclusion-section,
.exclusion-section {
    background: var(--dark-grey);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inclusion-section h3 {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusion-section h3 {
    color: #dc3545;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusion-section ul,
.exclusion-section ul {
    list-style: none;
    padding: 0;
}

.inclusion-section ul li,
.exclusion-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inclusion-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.exclusion-section ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
}

/* Booking Section */
.route-booking {
    text-align: center;
    background: var(--dark-grey);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--re-red);
}

.route-booking h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.route-booking p {
    font-size: 18px;
    color: var(--light-grey);
    margin-bottom: 30px;
}

.booking-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-book-now,
.btn-book-form {
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-book-now {
    background: #25d366;
    color: var(--white);
}

.btn-book-now:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-book-form {
    background: var(--re-red);
    color: var(--white);
}

.btn-book-form:hover {
    background: var(--re-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .route-detail-header {
        height: 250px;
    }
    
    .route-detail-overlay h2 {
        font-size: 28px;
    }
    
    .route-detail-body {
        padding: 20px;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
    }
    
    .route-inclusions {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    .btn-book-now,
    .btn-book-form {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==================== ENHANCED MOBILE RESPONSIVENESS ==================== */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 42px;
    }

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

    .tour-packages-carousel {
        padding: 0 20px;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    /* Navigation - Enhanced Design */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 14px 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
    }

    .logo {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .logo h1 {
        font-size: 19px;
        white-space: nowrap;
        letter-spacing: 1.2px;
        line-height: 1;
        margin: 0;
        font-weight: 700;
    }

    .logo span {
        color: var(--re-red);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 62px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 25px 0;
        z-index: 999;
        max-height: calc(100vh - 62px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 16px 30px;
        display: block;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu a:hover {
        background: rgba(196, 30, 58, 0.1);
        color: var(--re-red);
        padding-left: 40px;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--re-red);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::before {
        width: 20px;
        margin-left: 15px;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        padding: 10px;
        position: relative;
        z-index: 1001;
    }

    .hamburger:hover {
        background: rgba(196, 30, 58, 0.15);
        border-color: var(--re-red);
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background: var(--white);
        transition: all 0.3s ease;
        margin: 2.5px 0;
        display: block;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hamburger.active {
        background: rgba(196, 30, 58, 0.25);
        border-color: var(--re-red);
    }

    /* WhatsApp Button - Enhanced Design */
    .whatsapp-btn {
        padding: 0;
        font-size: 20px;
        min-width: auto;
        border-radius: 8px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #25d366;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
        background: #20ba5a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-btn .whatsapp-text {
        display: none;
    }

    .whatsapp-btn i {
        margin: 0;
    }

    /* Hide admin button on mobile if present */
    .admin-btn {
        display: none;
    }

    /* Hero Section - Full Screen on Mobile */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 20px;
        margin-top: 60px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 17px;
        margin: 15px 0 30px;
        line-height: 1.6;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        display: block;
        margin: 0 auto 15px;
        text-align: center;
    }

    .hero-label {
        font-size: 13px;
        margin-bottom: 18px;
        padding: 8px 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        margin-top: 25px;
    }

    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 18px 45px;
        font-size: 15px;
        letter-spacing: 2.5px;
        border-width: 2px;
    }

    .btn-primary-new i {
        font-size: 15px;
    }

    .hero-carousel-dots {
        bottom: 80px;
        z-index: 10;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    /* Fleet Section */
    .fleet-selector {
        padding: 60px 0;
    }

    .fleet-container {
        padding: 0 15px;
    }

    .section-header-fleet {
        padding-left: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title-fleet {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .section-subtitle-fleet {
        font-size: 14px;
    }

    /* Bike Carousel */
    .bike-carousel {
        padding: 0 10px;
    }

    /* Carousel Arrows - Mobile Optimized */
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
        top: 40%;
    }

    .carousel-arrow.left {
        left: 5px;
    }

    .carousel-arrow.right {
        right: 5px;
    }

    /* Bike Names Navigation - Mobile Stack */
    .bike-names-nav {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        margin-bottom: 30px;
        align-items: center;
        text-align: center;
    }

    .bike-name-item.prev-bike,
    .bike-name-item.next-bike {
        font-size: 14px;
        opacity: 0.5;
    }

    .bike-name-item.current-bike {
        order: -1;
    }

    .bike-name-item.current-bike h3 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .bike-category {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    /* Bike Display Area */
    .bike-display-area {
        height: 350px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .bike-slide img {
        max-width: 95%;
        max-height: 65%;
    }

    /* Bike Info Overlay - Mobile Layout */
    .bike-info-overlay {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 80%, transparent 100%);
    }

    .bike-specs-quick {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .spec-item {
        padding: 8px 12px;
        min-width: auto;
        flex: 1;
        min-width: 80px;
    }

    .spec-item i {
        font-size: 16px;
    }

    .spec-item span {
        font-size: 11px;
    }

    .bike-pricing-display {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .price-tag {
        align-items: center;
    }

    .price-label {
        font-size: 11px;
    }

    .price-value {
        font-size: 28px;
    }

    .price-period {
        font-size: 14px;
    }

    .bike-carousel-container {
        padding: 0 15px;
    }

    .bike-carousel-controls {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }

    .bike-nav-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .bike-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .bike-name-display {
        width: 100%;
        text-align: center;
    }

    #currentName h3 {
        font-size: 24px;
    }

    /* Tour Packages - Fixed for Mobile */
    .tour-packages-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .packages-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .section-title-packages {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .packages-subtitle {
        font-size: 14px;
    }

    .packages-carousel-wrapper {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 100%;
        overflow: visible;
    }

    .packages-carousel-container {
        overflow: visible;
        padding: 0 10px;
    }

    .packages-carousel-track {
        gap: 20px;
    }

    .tour-package-card-new {
        min-width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .package-image-new {
        height: 220px;
    }

    .package-details-new {
        padding: 25px 20px;
    }

    .package-details-new h3 {
        font-size: 22px;
    }

    .package-description {
        font-size: 14px;
    }

    .package-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .package-price-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .price-display {
        text-align: center;
    }

    .package-carousel-controls {
        margin-top: 30px;
        gap: 15px;
    }

    .package-carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .package-carousel-arrow.left {
        left: 5px;
    }

    .package-carousel-arrow.right {
        right: 5px;
    }

    /* Booking Form */
    .booking-section {
        padding: 60px 0;
    }

    .booking-container {
        flex-direction: column;
        gap: 30px;
    }

    .booking-form-container,
    .booking-info-container {
        width: 100%;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }

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

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Process Steps */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        padding: 30px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 15px;
    }

    .faq-question {
        padding: 20px 15px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 20px 15px;
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    /* Admin Button */
    .admin-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }

    .admin-float i {
        font-size: 20px;
    }

    /* Routes Page */
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .route-card {
        padding: 0;
    }

    .route-image {
        height: 200px;
    }

    .route-content {
        padding: 25px 20px;
    }

    /* Gallery Page */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    /* About Page */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image {
        height: 300px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    /* Typography */
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 0;
    }

    .hero-content {
        margin-top: 55px;
        padding: 0 15px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 18px;
        letter-spacing: 1.5px;
    }

    .hero-content p {
        font-size: 16px;
        margin: 12px 0 25px;
        line-height: 1.5;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 260px;
        display: block;
        margin: 0 auto 12px;
    }

    .hero-label {
        font-size: 12px;
        margin-bottom: 15px;
        padding: 7px 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
        margin-top: 20px;
    }

    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 40px;
        font-size: 14px;
        letter-spacing: 2px;
        border-width: 2px;
    }

    .btn-primary-new i {
        font-size: 14px;
    }

    /* Navigation - Enhanced Design */
    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo h1 {
        font-size: 17px;
        letter-spacing: 1px;
        font-weight: 700;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-menu {
        top: 58px;
        max-height: calc(100vh - 58px);
        padding: 20px 0;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 14px 25px;
        letter-spacing: 1.2px;
    }

    .hamburger {
        width: 42px;
        height: 42px;
        padding: 9px;
        display: flex !important;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 2px 0;
        display: block;
    }

    .whatsapp-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    /* Hero Section - Full Screen */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

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

    /* Fleet */
    .fleet-selector {
        padding: 50px 0;
    }

    .section-title-fleet {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-arrow.left {
        left: 2px;
    }

    .carousel-arrow.right {
        right: 2px;
    }

    .bike-name-item.current-bike h3 {
        font-size: 28px;
    }

    .bike-display-area {
        height: 280px;
    }

    .bike-slide img {
        max-width: 100%;
        max-height: 60%;
    }

    .bike-info-overlay {
        padding: 12px;
    }

    .spec-item {
        padding: 6px 10px;
        min-width: 70px;
    }

    .spec-item i {
        font-size: 14px;
    }

    .spec-item span {
        font-size: 10px;
    }

    .price-value {
        font-size: 24px;
    }

    .price-period {
        font-size: 12px;
    }

    /* Packages */
    .section-title-packages {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .packages-header {
        padding: 0 15px;
    }

    .packages-carousel-wrapper {
        padding: 0 10px;
    }

    .packages-carousel-container {
        padding: 0 5px;
    }

    .tour-package-card-new {
        min-width: 100%;
        max-width: 100%;
    }

    .package-image-new {
        height: 180px;
    }

    .package-details-new {
        padding: 20px 15px;
    }

    .package-details-new h3 {
        font-size: 20px;
    }

    .package-description {
        font-size: 13px;
    }

    .price-amount {
        font-size: 24px;
    }

    .package-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .package-carousel-arrow.left {
        left: 2px;
    }

    .package-carousel-arrow.right {
        right: 2px;
    }

    /* Booking */
    .booking-info-card {
        padding: 20px 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .info-content h3 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

    /* Process */
    .process-step {
        padding: 25px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    /* FAQ */
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-section {
        padding: 0 15px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item {
        height: 250px;
    }

    /* Routes */
    .route-content h3 {
        font-size: 20px;
    }

    .route-highlights {
        gap: 8px;
    }

    .highlight-item {
        font-size: 13px;
    }

    /* Modal */
    .route-modal-content {
        padding: 20px 15px;
        max-height: 90vh;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .day-item {
        padding: 15px;
    }

    .day-number {
        font-size: 16px;
    }

    /* WhatsApp & Admin Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    .admin-float {
        width: 45px;
        height: 45px;
        bottom: 75px;
        right: 15px;
    }

    .admin-float i {
        font-size: 18px;
    }

    /* Loading Screen */
    .loading-screen h1 {
        font-size: 28px;
    }

    .loading-screen p {
        font-size: 14px;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .bike-display-area {
        height: 220px;
    }

    .price-value {
        font-size: 24px;
    }

    #currentName h3 {
        font-size: 18px;
    }

    .package-details-new h3 {
        font-size: 18px;
    }

    .price-amount {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
        margin: 10px 0 20px;
    }

    .bike-display-area {
        height: 250px;
    }

    .nav-menu {
        max-height: calc(100vh - 60px);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn-primary,
    .btn-secondary,
    .nav-menu a,
    .hamburger,
    .carousel-arrow,
    .bike-nav-btn,
    .package-carousel-arrow {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .tour-package-card-new:hover,
    .testimonial-card:hover,
    .process-step:hover {
        transform: none;
    }

    /* Improve tap feedback */
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.95);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize images for retina displays */
    .hero-slide,
    .bike-slide img,
    .package-image-new img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .whatsapp-float,
    .admin-float,
    .carousel-arrow,
    .bike-nav-btn,
    .package-carousel-controls,
    .footer {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 300px;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slide,
    .bike-slide,
    .testimonial-card {
        transition: none !important;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Already dark themed, but can add adjustments if needed */
}
