/* Index Page Styles */

/* Global Styles */
body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F4F4F4;
}

/* Scrollbar Styles */
.features-scroll::-webkit-scrollbar {
    height: 2px;
}

.features-scroll::-webkit-scrollbar-track {
    background: rgba(28, 28, 28, 0.1);
}

.features-scroll::-webkit-scrollbar-thumb {
    background: #1C1C1C;
    border-radius: 1px;
}

.features-scroll::-webkit-scrollbar-thumb:hover {
    background: #1C1C1C;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #1a3a51;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: calc(100vh - 80px);
    min-height: 500px;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.hero-carousel-item {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-carousel-prev,
.hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

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

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

.hero-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-carousel-dot.active {
    background: #BE930B;
}

.hero-content {
    position: relative;
    padding: 0 20px;
    min-height: 582px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-text {
    max-width: 612px;
    color: white;
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    color: #e8e8e8;
    margin-bottom: 24px;
}

.gold-btn {
    background-color: #BE930B;
    padding: 14px 30px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.gold-btn:hover {
    background-color: #a67f0a;
    box-shadow: 0 4px 12px rgba(190, 147, 11, 0.3);
}

/* Features Section */
.features-section {
    background-color: #F4F4F4;
    padding: 30px 0;
}

.features-container {
    max-width: 1440px;
    margin: 0 auto;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 16px;
    font-weight: bold;
    color: #1C1C1C;
    text-align: center;
}

.feature-description {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    text-align: center;
}

/* Mission Loadout Section */
.mission-section {
    background-color: white;
    padding: 30px 0;
}

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

.mission-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 8px;
}

.mission-tabs {
    display: flex;
    overflow-x: auto;
    margin-bottom: 30px;
    font-size: 16px;
}

.mission-tab {
    flex-shrink: 0;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px 7px;
    background-color: white;
    border-bottom: 2px solid rgba(28, 28, 28, 0.2);
    cursor: pointer;
}

.mission-tab.active {
    border-bottom: 2px solid #1C1C1C;
}

.mission-tab.active .mission-tab-text {
    color: #1C1C1C;
}

.mission-tab-text {
    font-weight: bold;
    color: rgba(28, 28, 28, 0.2);
    white-space: nowrap;
}

.mission-cards {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 15px;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.mission-card-link {
    flex-shrink: 0;
    width: 85%;
    max-width: 800px;
    scroll-snap-align: start;
}

.mission-card {
    flex-shrink: 0;
    width: 100%;
    height: 500px;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.mission-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.mission-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.mission-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.mission-card-title {
    font-size: 24px;
    font-weight: 600;
}

/* Hot Picks Section */
.hot-picks-section {
    background-color: #F4F4F4;
    padding: 30px 0;
}

.hot-picks-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.hot-picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hot-picks-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

.scroll-buttons {
    display: flex;
    gap: 16px;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover rect,
.scroll-btn:active rect {
    fill: #1C1C1C;
    stroke: #1C1C1C;
}

.scroll-btn:hover path,
.scroll-btn:active path {
    stroke: #FFFFFF;
}

.product-slider-container {
    overflow-x: visible;
}

.product-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.carousel-indicators {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 0;
}

@media (max-width: 767px) {
    .carousel-indicators {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        padding: 8px 0;
    }
}

/* Unleash Now Section */
.unleash-section {
    background-color: #1C1C1C;
    overflow: hidden;
    position: relative;
}

.unleash-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unleash-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.unleash-title {
    font-size: 26px;
    font-weight: bold;
    color: white;
}

.unleash-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.unleash-card {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.unleash-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    background: linear-gradient(to bottom right, #FFD700, rgba(255, 255, 255, 0.2));
}

.unleash-card-bg {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 5px;
    background-color: #1C1C1C;
}

.unleash-card-content {
    position: relative;
    z-index: 10;
    padding: 30px;
    gap: 30px;
}

.unleash-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.unleash-card-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unleash-card-logo {
    width: 146px;
    height: 58px;
}

.unleash-card-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.unleash-card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.unleash-card-btn {
    margin-top: 14px;
    background-color: #BE930B;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.unleash-card-btn:hover {
    background-color: #D4A50F;
}

/* Built Different Section */
.built-different-section {
    background-color: white;
    padding: 30px 0;
}

.built-different-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.built-different-header {
    text-align: center;
    margin-bottom: 30px;
}

.built-different-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 12px;
}

.built-different-description {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
}

.built-different-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.built-different-card {
    position: relative;
    height: 213px;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
}

.built-different-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.built-different-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), black);
}

.built-different-card-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
}

.built-different-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.built-different-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.built-different-card.large {
    height: 446px;
}

.built-different-card.large .built-different-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    right: 30px;
}

.built-different-card.large .built-different-card-text {
    margin-bottom: 20px;
}

.built-different-card-btn {
    border: 1px solid white;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.built-different-card-btn:hover {
    background-color: white;
    color: #BE930B;
}

/* Track Rides Section */
.track-rides-section {
    position: relative;
    overflow: hidden;
}

.track-rides-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/app-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.track-rides-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.track-rides-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
    gap: 0;
}

.track-rides-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track-rides-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 10px;
}

.track-rides-description {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    margin-bottom: 24px;
    text-align: center;
}

.track-rides-btn {
    background-color: #BE930B;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.track-rides-btn:hover {
    background-color: #D4A50F;
}

.track-rides-image {
    width: 349px;
    height: 396px;
}

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

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

/* Responsive Design */
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .mission-tabs {
        font-size: 18px;
    }
    
    .unleash-container {
        padding: 40px 20px;
        gap: 24px;
    }
    
    .unleash-header {
        gap: 10px;
    }
    
    .unleash-title {
        font-size: 28px;
    }
    
    .unleash-description {
        font-size: 16px;
    }
    
    .built-different-header {
        margin-bottom: 40px;
    }
    
    .built-different-title {
        font-size: 28px;
    }
    
    .built-different-description {
        font-size: 16px;
    }
    
    .track-rides-content {
        padding: 40px 20px;
    }
    
    .track-rides-title {
        font-size: 28px;
    }
    
    .track-rides-description {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 0;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-text {
        max-width: 612px;
        text-align: left;
    }
    
    .hero-title {
        font-size: 50px;
        width: 700px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .features-section {
        padding: 50px 0;
    }
    
    .features-container {
        padding: 0 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .mission-section {
        padding: 50px 0;
    }
    
    .mission-container {
        padding: 0 0;
    }
    
    .mission-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .mission-tab {
        flex: 1;
    }
    
    .mission-card-link {
        width: 85%;
        max-width: 900px;
    }
    
    .mission-card {
        height: 550px;
    }
    
    .hot-picks-section {
        padding: 50px 0;
    }
    
    .hot-picks-container {
        padding: 0 0;
    }
    
    .hot-picks-title {
        font-size: 36px;
    }
    
    .product-cards {
        width: 460px;
        display: flex;
        flex-direction: column;
        height: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .unleash-section {
        padding: 80px 0;
    }
    
    .unleash-container {
        padding: 0 200px;
        gap: 30px;
    }
    
    .unleash-header {
        gap: 12px;
    }
    
    .unleash-title {
        font-size: 36px;
    }
    
    .unleash-card-inner {
        flex-direction: row;
        align-items: flex-end;
    }
    
    .unleash-card-btn {
        font-size: 16px;
    }
    
    .built-different-section {
        padding: 50px 0;
    }
    
    .built-different-container {
        padding: 0 0;
    }
    
    .built-different-title {
        font-size: 36px;
    }
    
    .built-different-grid {
        grid-template-columns: 1fr 2fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .built-different-card {
        height: 270px;
    }
    
    .built-different-card.large {
        height: 570px;
        grid-column: 2;
        grid-row: 1 / 3;
    }
    
    .built-different-card-content {
        bottom: 30px;
        left: 30px;
    }
    
    .built-different-card-title {
        font-size: 24px;
    }
    
    .built-different-card-description {
        font-size: 16px;
    }
    
    .track-rides-content {
        flex-direction: row;
        gap: 170px;
        align-items: center;
        justify-content: space-between;
        padding: 60px 0;
    }
    
    .track-rides-text {
        align-items: flex-start;
    }
    
    .track-rides-title {
        font-size: 36px;
        text-align: left;
    }
    
    .track-rides-description {
        font-size: 16px;
        text-align: left;
    }
    
    .track-rides-btn {
        font-size: 16px;
    }
    
    .track-rides-image {
        width: 560px;
        height: 610px;
    }
}

/* Trusted Section */
.trusted-section {
    background-color: #FFF;
    padding: 30px 0;
    position: relative;
}

.trusted-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.trusted-quote-icon {
    position: absolute;
    top: 110px;
    z-index: 10;
}

.trusted-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.trusted-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

.trusted-subtitle {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.70);
}

.trusted-review {
    width: 100%;
    max-width: 800px;
    text-align: center;
    z-index: 20;
}

.trusted-review-text {
    font-size: 18px;
    color: #1C1C1C;
}

.trusted-reviews {
    width: 100%;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    justify-content: center;
    padding-bottom: 20px;
}

.user-avatar {
    width: 58px;
    height: 58px;
    border-radius: 44px;
    overflow: hidden;
}

.user-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-review-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .user-review-info {
        font-size: 16px;
    }
}

.user-review-name {
    font-weight: 600;
    color: #1C1C1C;
}

.user-review-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    border-radius: 44px;
    background-color: #E6E8EC;
}

.user-review-stars {
    color: #BE930B;
}

.user-review-score {
    color: #1C1C1C;
}

/* Blog Section */
.blog-section {
    background-color: white;
    padding: 30px 20px;
}

.blog-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

.blog-view-all {
    padding: 14px 30px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #BE930B;
    color: #BE930B;
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-view-all:hover {
    background-color: #BE930B;
    color: white;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-featured-post {
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-featured-image {
    position: absolute;
    inset: 0;
    display: none;
}

.blog-featured-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 74%, rgba(0, 0, 0, 1) 97%);
}

.blog-featured-image-mobile {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

.blog-featured-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-featured-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-featured-date {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
}

.blog-featured-date-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(28, 28, 28, 0.7);
}

.blog-featured-date-text {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
}

.blog-featured-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    word-break: break-words;
}

.blog-featured-excerpt {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    word-break: break-words;
}

.blog-featured-read-more {
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    color: #1C1C1C;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-featured-read-more:hover {
    color: #BE930B;
}

.blog-side-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-side-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 6px;
}

.blog-side-post-image {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-side-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.blog-side-post-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-side-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
}

.blog-side-post-date-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(28, 28, 28, 0.7);
}

.blog-side-post-date-text {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
}

.blog-side-post-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    word-break: break-words;
}

.blog-side-post-excerpt {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    line-height: 1.218;
    max-height: 165px;
    overflow: hidden;
    word-break: break-words;
}

.blog-side-post-read-more {
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    color: #1C1C1C;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-side-post-read-more:hover {
    color: #BE930B;
}

.blog-no-posts {
    text-align: center;
    padding: 40px 0;
    color: #666;
}

/* Local Squad Section */
.local-squad-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.local-squad-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/local-squad-bg.png');
    background-size: cover;
    background-position: center;
}

.local-squad-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.local-squad-content {
    text-align: center;
}

.local-squad-title {
    font-size: 26px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

.local-squad-description {
    font-size: 14px;
    color: #E8E8E8;
    margin-bottom: 10px;
}

.local-squad-btn {
    display: inline-block;
    background-color: #BE930B;
    color: white;
    font-size: 14px;
    font-weight: semibold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.local-squad-btn:hover {
    background-color: #D4A50F;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        margin: 0;
        border-radius: 0;
    }
    
    #hero-banner {
        object-position: right center;
    }
    
    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), lightgray -586.096px 0px / 283.518% 100% no-repeat, #616161;
    }
    
    .hero-content {
        padding: 60px 16px;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        width: 100% !important;
        text-align: center;
    }
    
    .hero-description {
        font-size: 14px;
        text-align: center;
    }
    
    .features-section {
        padding: 50px 20px;
    }
    
    .unleash-section {
        padding: 50px 20px;
    }
    
    .track-rides-content {
        padding: 24px 20px;
        justify-content: center;
    }
    
    .track-rides-description {
        text-align: center;
    }
    
    .product-slider {
        scrollbar-width: thin;
        -ms-overflow-style: auto;
    }

    .product-slider::-webkit-scrollbar {
        display: block;
        height: 6px;
    }

    .product-slider::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .product-slider::-webkit-scrollbar-thumb {
        background: #BE930B;
        border-radius: 3px;
    }
    
    .product-card {
        width: 100%;
        flex-shrink: 0;
    }

    .product-cards {
        width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .trusted-section {
        padding: 80px 0;
    }
    
    .trusted-quote-icon {
        top: 180px;
    }
    
    .trusted-header {
        gap: 12px;
    }
    
    .trusted-title {
        font-size: 36px;
    }
    
    .trusted-subtitle {
        font-size: 16px;
    }
    
    .trusted-review-text {
        font-size: 24px;
    }
    
    .trusted-reviews {
        gap: 70px;
    }
    
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-container {
        gap: 30px;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .blog-view-all {
        font-size: 16px;
    }
    
    .blog-posts {
        flex-direction: row;
    }
    
    .blog-featured-post {
        flex-direction: column;
        height: 758px;
        justify-content: flex-end;
    }
    
    .blog-featured-image {
        display: block;
    }
    
    .blog-featured-image-mobile {
        display: none;
    }
    
    .blog-featured-content {
        gap: 20px;
        padding: 40px;
        width: 100%;
    }
    
    .blog-featured-date-icon {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .blog-featured-date-text {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .blog-featured-title {
        font-size: 36px;
        color: white;
    }
    
    .blog-featured-excerpt {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .blog-featured-read-more {
        font-size: 16px;
        color: white;
    }
    
    .blog-side-post {
        flex-direction: row;
        width: 532px;
    }
    
    .blog-side-post-image {
        width: 256px;
        height: 364px;
    }
    
    .blog-side-post-content {
        width: 256px;
        gap: 20px;
    }
    
    .blog-side-post-date-text {
        font-size: 16px;
    }
    
    .blog-side-post-title {
        font-size: 24px;
    }
    
    .blog-side-post-excerpt {
        font-size: 16px;
    }
    
    .blog-side-post-read-more {
        font-size: 16px;
    }
    
    .local-squad-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .local-squad-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .local-squad-btn {
        font-size: 16px;
    }
    
    .track-rides-app {
        width: 560px;
        height: 610px;
    }
}

@media (max-width: 767px) {
    .track-rides-app {
        width: 349px;
        height: 396px;
    }
}

/* Floating Icon */
#floatingIcon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    cursor: pointer;
}

.floating-icon-content {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #BE930B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

.floating-icon-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.floating-close-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Spin to Win Popup */
#spinPopup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
}

.spin-popup-content {
    background-color: white;
    border-radius: 0.5rem;
    margin: 0 1.25rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .spin-popup-content {
        width: 900px;
        height: 680px;
    }
}

@media (max-width: 767px) {
    .spin-popup-content {
        width: 335px;
        height: auto;
    }
}

.spin-popup-inner {
    display: flex;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.spin-popup-image {
    display: none;
}

@media (min-width: 768px) {
    .spin-popup-image {
        display: block;
        position: relative;
        width: 50%;
    }
    
    .spin-popup-image img,
    .spin-popup-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .spin-popup-image-text {
        position: absolute;
        top: 60px;
        left: 40px;
        z-index: 10;
        color: white;
        font-size: 36px;
        font-weight: bold;
    }
}

.spin-popup-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 1.875rem 1.25rem;
}

@media (min-width: 768px) {
    .spin-popup-form {
        width: 50%;
        padding: 3.125rem 1.875rem;
        gap: 12px;
    }
}

.spin-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.spin-popup-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .spin-popup-header {
        gap: 12px;
    }
}

.spin-popup-header h2 {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

@media (min-width: 768px) {
    .spin-popup-header h2 {
        font-size: 36px;
    }
}

.spin-popup-header p {
    font-size: 14px;
    color: rgba(28,28,28,0.70);
    text-align: center;
}

@media (min-width: 768px) {
    .spin-popup-header p {
        font-size: 16px;
    }
}

#wheelContainer,
.wheel-container {
    width: 358px;
    height: 361px;
    position: relative;
}

.wheel-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

#wheel {
    transform-origin: 50% 173.486px;
}

/* Winner Popup */
#winnerPopup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
}

.winner-popup-content {
    background-color: white;
    border-radius: 0.5rem;
    margin: 0 1.25rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .winner-popup-content {
        width: 900px;
        height: 680px;
    }
}

@media (max-width: 767px) {
    .winner-popup-content {
        width: 335px;
        height: auto;
    }
}

.winner-popup-inner {
    display: flex;
}

.winner-popup-image {
    display: none;
}

@media (min-width: 768px) {
    .winner-popup-image {
        display: block;
        width: 50%;
    }
    
    .winner-popup-image img,
.winner-popup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-popup-close-button {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.winner-popup-title {
    font-size: 36px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
}

.winner-popup-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.winner-popup-prize-name {
    font-size: 36px;
    font-weight: bold;
    color: #1C1C1C;
    text-transform: uppercase;
}

.winner-popup-description {
    font-size: 16px;
    color: rgba(28, 28, 28, 0.7);
}

.winner-popup-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner-popup-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #BE930B;
    border-radius: 8px;
}

.winner-popup-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    padding: 1.875rem 1.25rem;
}

@media (min-width: 768px) {
    .winner-popup-form {
        width: 50%;
        padding: 3.125rem 1.875rem;
    }
}

.winner-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.winner-popup-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.winner-popup-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 0.5rem;
}

.winner-popup-header p {
    font-size: 16px;
    color: rgba(28,28,28,0.70);
}

.winner-popup-form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner-popup-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid #BE930B;
    border-radius: 0.5rem;
}

.claim-prize-button {
    width: 100%;
    background-color: #BE930B;
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 0.5rem;
    font-size: 18px;
    transition: all 0.3s ease;
}

.claim-prize-button:hover {
    opacity: 0.9;
}

/* Spin Button */
.spin-button {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background-color: #BE930B;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spin-button:hover {
    background-color: #B8991F;
}

/* Winner Form */
.winner-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .winner-form-container {
        font-size: 16px;
    }
}

.winner-form-group {
    border: 1px solid #BE930B;
    border-radius: 8px;
    padding: 14px;
}

.winner-form-input {
    width: 100%;
    outline: none;
    color: #A4A4A4;
    border: none;
    background: transparent;
}
