* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Force consistent header layout across all pages */
.navbar {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    height: 80px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 64px !important;
    box-sizing: border-box !important;
}

.nav-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    gap: 32px !important;
    box-sizing: border-box !important;
}

.nav-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    z-index: 1001 !important;
    position: relative !important;
    height: 60px !important;
}

.nav-logo img {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    max-width: 100% !important;
    z-index: 1001 !important;
    position: relative !important;
    opacity: 1 !important;
    object-fit: contain !important;
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    height: 100% !important;
    flex-wrap: nowrap !important;
}

.nav-menu li {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
}

.nav-menu a {
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s !important;
    padding: 8px 12px !important;
    border-radius: 25px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white !important;
    background: linear-gradient(135deg, #A6CE39, #8FB32D) !important;
}

/* Responsive overrides */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px !important;
        height: 70px !important;
    }
    
    .nav-container {
        gap: 20px !important;
    }
    
    .nav-logo {
        height: 50px !important;
    }
    
    .nav-logo img {
        height: 50px !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 40px 20px !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        overflow-y: auto !important;
        z-index: 1001 !important;
        gap: 20px !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        width: 90% !important;
        text-align: center !important;
        height: auto !important;
    }
    
    .nav-menu a {
        font-size: 1.2rem !important;
        padding: 15px 25px !important;
        display: block !important;
        width: 100% !important;
        border-radius: 30px !important;
        color: #333 !important;
        font-weight: 500 !important;
        height: auto !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px !important;
        height: 65px !important;
    }
    
    .nav-logo {
        height: 45px !important;
    }
    
    .nav-logo img {
        height: 45px !important;
    }
    
    .nav-menu {
        top: 65px !important;
        height: calc(100vh - 65px) !important;
    }
}

/* Navigation - Standardized for all pages */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0 64px;
}

.nav-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
    position: relative;
    height: 60px;
}

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
    max-width: 100%;
    z-index: 1001;
    position: relative;
    opacity: 1 !important;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
    flex-wrap: nowrap;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    white-space: nowrap;
    line-height: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #A6CE39;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    color: white !important;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none !important;
}

.cta-btn a {
    color: white !important;
    text-decoration: none !important;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25, 135, 84, 0.3);
    color: white !important;
}

.cta-btn:hover a {
    color: white !important;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: white;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23A6CE39" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.about-content {
    display: block;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #87CEEB 0%, #E0F6FF 50%, #f0f0f0 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.scooter-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 500px;
}

.road-element {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 150px;
    background: linear-gradient(to top, #2c2c2c 0%, #404040 50%, #555 100%);
    transform: perspective(500px) rotateX(45deg);
    z-index: 1;
    pointer-events: none;
}

.road-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        #ffff00 0px,
        #ffff00 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
    z-index: 2;
    animation: roadAnimation 6s linear infinite;
}

.road-element::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

@keyframes roadAnimation {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-60px);
    }
}

.scooter-image {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 350px;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    z-index: 3;
    transition: opacity 0.5s ease-in-out;
    margin-bottom: 50px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.about-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(166, 206, 57, 0.1);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
}

.about-text::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D, #A6CE39);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.05;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #A6CE39;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 2px;
}

.about-text h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 35px;
    font-weight: 400;
    padding-left: 20px;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    text-align: justify;
    padding-left: 20px;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 30px 20px 0;
    border-top: 2px solid rgba(166, 206, 57, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(166, 206, 57, 0.05), rgba(143, 179, 45, 0.05));
    border-radius: 10px;
    border-left: 3px solid #A6CE39;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(166, 206, 57, 0.2);
}

.feature i {
    color: #A6CE39;
    font-size: 1.5rem;
    min-width: 25px;
}

.feature span {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

/* Companies Section */
.companies-section {
    padding: 100px 0;
    background: white;
}

/* Model Slider Section */
.model-slider-section {
    padding: 0px 0px 20px;
    width: 100%;
    background: linear-gradient(to bottom, #A6CE39 0%, #A6CE39 50%, #ffffff 50%, #ffffff 100%);
    position: relative;
}

.model-slider-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}

.model-slider-wrapper .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.model-slider-wrapper .section-header h2 {
    color: white;
}

.model-slider-wrapper .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.model-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.model-slider-header {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin: 0 auto 30px;
    width: fit-content;
}

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

.model-logo img {
    height: 50px;
    width: auto;
    display: block !important;
    opacity: 1 !important;
}

.model-name {
    display: flex;
    align-items: center;
}

.model-name h3 {
    font-size: 1.8rem;
    color: #A6CE39;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-slider-container {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    background: transparent;
}

.model-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
}

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

.model-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.model-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    display: block;
    flex-shrink: 0;
}

.model-description {
    width: 100%;
    max-width: 900px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.8s;
    z-index: 5;
    margin-top: 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.model-slide.active .model-description {
    opacity: 1;
    visibility: visible;
}

.description-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex: 1;
    align-items: center;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.spec-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1.1rem;
    color: #A6CE39;
    font-weight: 600;
}

.booking-btn {
    background: #A6CE39 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    min-height: 44px !important;
}

.booking-btn a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.booking-btn:hover {
    background: #8FB32D;
    transform: translateY(-2px);
}

.booking-btn:hover a {
    color: #ffffff !important;
}

.booking-btn i {
    font-size: 1.1rem;
}

.model-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.model-slider-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #A6CE39;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.model-slider-nav button:hover {
    background: white;
    transform: scale(1.1);
}

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

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

.model-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: white;
}

.model-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #A6CE39;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.company-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.company-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.company-card p {
    color: #666;
    line-height: 1.6;
}

/* Tagline Section */
.tagline-section {
    height: 80vh;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Images/WhatsApp Image 2025-12-12 at 22.00.09_74fbd9a2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tagline-content {
    text-align: center;
    width: 100%;
}

.tagline-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.tagline-content p {
    font-size: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Highlights Section */
.highlights-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Images/Gemini_Generated_Image_b8golf.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.highlights-section .section-header h2 {
    color: white;
}

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

.highlight-item {
    text-align: center;
    padding: 30px 20px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-icon i {
    font-size: 2rem;
    color: white;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-btn {
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    color: white !important;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.product-btn a {
    color: white !important;
    text-decoration: none !important;
}

.product-btn:hover {
    transform: translateY(-2px);
}

.product-btn:hover a {
    color: white !important;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('mission-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #A6CE39;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mission-content h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mission-content p {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

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

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 1 !important;
    display: block;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Customers Section */
.customers-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.customers-slider {
    margin-top: 40px;
}

.customers-track {
    display: flex;
    gap: 60px;
    animation: scroll 15s linear infinite;
}

.customer-logo {
    min-width: 200px;
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Remove underlines from buttons and links */
button a,
.inquiry-btn,
.action-btn,
.explore-btn,
.product-btn a,
.cta-btn,
.submit-btn,
.get-in-touch-btn,
.booking-btn {
    text-decoration: none !important;
}

button a:hover,
.inquiry-btn:hover,
.action-btn:hover,
.explore-btn:hover,
.product-btn a:hover,
.cta-btn:hover,
.submit-btn:hover,
.get-in-touch-btn:hover,
.booking-btn:hover {
    text-decoration: none !important;
}

/* Footer */

.footer {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('Images/Gemini_Generated_Image_b8golf.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h3 {
    color: #A6CE39;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #A6CE39;
}

.footer-section h4 {
    color: #A6CE39;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #A6CE39;
}

.footer-section p {
    margin-bottom: 12px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section p i {
    color: #A6CE39;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #A6CE39;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    border-color: #A6CE39;
    color: #A6CE39;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 206, 57, 0.3);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #A6CE39;
    padding-left: 8px;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Force booking button visibility on mobile */
@media (max-width: 768px) {
    .model-slide {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 15px 15px 30px !important;
        gap: 15px;
    }
    
    .model-slide:not(.active) {
        display: none !important;
    }
    
    .model-slide img {
        max-height: 300px !important;
        width: auto !important;
        margin: 0 auto;
    }
    
    .model-description {
        display: flex !important;
        flex-direction: column;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        transform: none !important;
        transition: none !important;
        width: calc(100% - 30px) !important;
        max-width: 380px;
        margin: 12px auto 0 !important;
        padding: 18px 15px !important;
        background: rgba(0, 0, 0, 0.8) !important;
        color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .description-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 0 0 12px 0;
        padding: 0 5px;
    }
    
    .spec-item {
        text-align: center;
        padding: 8px 4px;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        border-radius: 5px;
        font-size: 0.85rem;
        margin: 0;
    }
    
    .spec-label {
        display: block;
        color: #A6CE39;
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .spec-value {
        display: block;
        font-weight: 500;
    }
    
    .booking-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        visibility: visible !important;
        opacity: 1 !important;
        background: #A6CE39 !important;
        color: white !important;
        border: none !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        height: 42px !important;
        width: 85% !important;
        max-width: 200px !important;
        text-align: center !important;
        padding: 0 15px !important;
        margin: 12px auto 0 !important;
        font-size: 0.9rem !important;
        position: relative !important;
        z-index: 10 !important;
        transition: all 0.2s ease !important;
    }
    
    .booking-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 15px rgba(166, 206, 57, 0.4);
    }
    
    .booking-btn i {
        margin-left: 8px;
        font-size: 1.1em;
    }
}



/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .slide-content {
        left: 30px;
        max-width: 500px;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content {
        left: 20px;
        max-width: 450px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-container {
        gap: 20px;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 90%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInMenu 0.3s ease-out forwards;
        height: auto;
    }
    
    .nav-menu.active li {
        animation-delay: calc(var(--i) * 0.1s);
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 25px;
        display: block;
        width: 100%;
        border-radius: 30px;
        transition: all 0.3s ease;
        color: #333;
        font-weight: 500;
        height: auto;
        text-align: center;
        white-space: nowrap;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: linear-gradient(135deg, #A6CE39, #8FB32D);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(166, 206, 57, 0.3);
    }
    
    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-slider {
        margin-top: 70px;
        height: 100vh;
        min-height: 600px;
    }
    
    .slide-bg {
        background-size: cover;
        background-position: center center;
    }
    
    .slide-content {
        left: 15px;
        right: 15px;
        max-width: none;
        text-align: center;
        padding: 20px;
        top: 45%;
        transform: translateY(-50%);
        width: calc(100% - 30px);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding: 30px 20px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        padding-left: 0;
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text h3,
    .about-text p {
        padding-left: 0;
        text-align: center;
    }
    
    .about-features {
        padding: 20px 0 0;
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .tagline-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .tagline-content p {
        font-size: 1.2rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        width: 90%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInMenu 0.3s ease-out forwards;
    }
    
    .nav-menu.active li {
        animation-delay: calc(var(--i) * 0.1s);
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 25px;
        display: block;
        width: 100%;
        border-radius: 30px;
        transition: all 0.3s ease;
        color: #333;
        font-weight: 500;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: linear-gradient(135deg, #A6CE39, #8FB32D);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(166, 206, 57, 0.3);
    }
    
    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .model-slider-container {
        min-height: 550px;
    }
    
    .model-slide {
        padding: 10px;
        gap: 15px;
    }
    
    .model-slide img {
        max-height: 300px;
        width: auto;
    }
    
    .model-description {
        max-width: 95%;
        padding: 20px 15px;
        margin-top: 15px;
        flex-direction: column;
        gap: 20px;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .model-slide.active .model-description {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .description-content {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .spec-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .spec-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .spec-label {
        font-size: 0.8rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .booking-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 15px;
        min-height: 44px;
        align-items: center;
        background: #A6CE39 !important;
        color: white !important;
    }
    
    .model-slider-wrapper {
        padding: 30px 5px 20px;
    }
    
    .model-slider-wrapper .section-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .model-slider-wrapper .section-header h2 {
        font-size: 1.8rem;
    }
    
    .model-slider-wrapper .section-header p {
        font-size: 0.9rem;
    }
    
    .model-slider-header {
        padding: 10px 20px;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .model-logo img {
        height: 35px;
    }
    
    .model-name h3 {
        font-size: 1.4rem;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
    }
    
    .model-slider-nav {
        padding: 0 15px;
    }
    
    .model-slider-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
        height: 65px;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .hero-slider {
        height: 100vh;
        min-height: 500px;
        margin-top: 65px;
    }
    
    .slide-bg {
        background-size: cover;
        background-position: center center;
    }
    
    .slide-content {
        left: 10px;
        right: 10px;
        padding: 15px;
        width: calc(100% - 20px);
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .about-text {
        padding: 20px 15px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .tagline-content h1 {
        font-size: 2rem;
    }
    
    .tagline-content p {
        font-size: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .model-slider-container {
        min-height: 480px;
        padding-bottom: 20px;
    }
    
    .model-slide img {
        max-height: 250px;
        width: auto;
        margin: 0 auto;
    }
    
    .model-description {
        padding: 20px 15px;
        margin-top: 20px;
        width: 95%;
        max-width: none;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: column;
        gap: 15px;
    }
    
    .model-slide.active .model-description {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .booking-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #A6CE39 !important;
        color: white !important;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .spec-label {
        font-size: 0.75rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
    
    .booking-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .model-slider-wrapper .section-header h2 {
        font-size: 1.5rem;
    }
    
    .model-slider-wrapper .section-header p {
        font-size: 0.8rem;
    }
    
    .model-slider-header {
        padding: 8px 15px;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .model-logo img {
        height: 30px;
    }
    
    .model-name h3 {
        font-size: 1.2rem;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .model-slider-nav {
        padding: 0 10px;
    }
    
    .model-slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}