/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #5CE65C; /* Bright green */
    --secondary-color: #33CC33; /* Medium green */
    --accent-color: #95FF95; /* Light green */
    --text-color: #222222;
    --light-text: #777;
    --background: #F2F2F2; /* Light gray background */
    --card-bg: #ffffff;
    --dark-bg: #222222; /* Dark background */
    --border-radius: 8px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(92, 230, 92, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #050505, #101010);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23111" width="100" height="100"/><path d="M0,50 L100,50" stroke="%2333FF66" stroke-width="0.5" stroke-dasharray="5,5"/><path d="M50,0 L50,100" stroke="%2333FF66" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
    box-shadow: 0 2px 15px rgba(51, 255, 102, 0.15);
    padding: 12px 0;
    z-index: 100;
    border-bottom: 1px solid rgba(51, 255, 102, 0.2);
}

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

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

.logo svg {
    height: 30px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

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

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    opacity: 0.8;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links .active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-links .active::before {
    width: 100%;
}

.nav-number {
    color: var(--primary-color);
    margin-right: 5px;
    font-weight: 600;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: black;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(92, 230, 92, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(92, 230, 92, 0.4);
}

.cta-button-header {
    background-color: #222;
    color: white;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button-header:hover {
    background-color: var(--primary-color);
    color: black;
}

/* Hero Section - Updated to match header style */
.hero {
    background: linear-gradient(90deg, #050505, #101010);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23111" width="100" height="100"/><path d="M0,50 L100,50" stroke="%2333FF66" stroke-width="0.5" stroke-dasharray="5,5"/><path d="M50,0 L50,100" stroke="%2333FF66" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(51, 255, 102, 0.2);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(51, 255, 102, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    width: fit-content;
}

.award-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description,
.hero-description-en {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: black;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(92, 230, 92, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 230, 92, 0.4);
}

.scooter-3d {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

.scooter-3d .glow {
    filter: drop-shadow(0 0 5px var(--primary-color)) drop-shadow(0 0 20px var(--primary-color));
}

@keyframes float {
    0% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(5deg);
    }
    100% {
        transform: translateY(0) rotateY(0deg);
    }
}

/* Feature Cards */
.feature-card-small {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
    width: 180px;
}

.feature-card-small h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-top: 5px;
}

.feature-image {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section - Home Page */
.features {
    padding: 40px 0 60px;
}

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

.features-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.features-header p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* CTA Section - Home Page */
.cta-section {
    background: linear-gradient(45deg, #222, #333);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="2" fill="%235CE65C" fill-opacity="0.2"/></svg>');
    opacity: 0.5;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header - Updated to match header style */
.page-header {
    background: linear-gradient(90deg, #050505, #101010);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23111" width="100" height="100"/><path d="M0,50 L100,50" stroke="%2333FF66" stroke-width="0.5" stroke-dasharray="5,5"/><path d="M50,0 L50,100" stroke="%2333FF66" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(51, 255, 102, 0.2);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(51, 255, 102, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.page-header h1, .page-header p {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Products Section - Products Page */
.products {
    padding: 20px 0 60px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(220, 220, 220, 0.5);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(51, 255, 102, 0.2);
    border-color: rgba(51, 255, 102, 0.4);
    z-index: 1;
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 0 0 3px rgba(51, 255, 102, 0);
    transition: all 0.4s ease;
    z-index: -1;
}

.product-card:hover:before {
    box-shadow: 0 0 0 3px rgba(51, 255, 102, 0.3);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-button {
    background: rgba(51, 255, 102, 0.9);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.product-card:hover .overlay-button {
    transform: translateY(0);
}

.overlay-button:hover {
    background: rgba(51, 255, 102, 1);
    box-shadow: 0 0 15px rgba(51, 255, 102, 0.6);
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card:hover .product-details h3 {
    color: var(--primary-color);
}

/* Make the action buttons more interactive */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.action-button, .details-button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button {
    background: var(--primary-color);
    color: black;
    border: none;
}

.details-button {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
}

.action-button:hover {
    background: #33ff66;
    box-shadow: 0 5px 15px rgba(51, 255, 102, 0.3);
    transform: translateY(-3px);
}

.details-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(51, 255, 102, 0.05);
    transform: translateY(-3px);
}

/* Enhanced product badge styling */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(51, 255, 102, 0.3);
}

/* Fix for scooter-nav arrows */
.scooter-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.arrow:hover {
    background: var(--primary-color);
    color: black;
    animation: pulse 1.5s infinite;
}

.arrow i {
    font-size: 1rem;
}

/* Order Section - Order Page */
.order-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
}

.order-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(51, 255, 102, 0.1);
}

.product-summary {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f0f0f0, #f8f8f8);
    position: relative;
    overflow: hidden;
}

.product-summary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="%2333FF66" fill-opacity="0.04" width="50" height="50"/><rect fill="%2333FF66" fill-opacity="0.04" x="50" y="50" width="50" height="50"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.product-summary .product-image {
    z-index: 1;
    height: auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
    background: transparent;
    perspective: 1000px;
}

.product-summary .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.product-summary .product-image:hover img {
    transform: scale(1.05) rotateY(5deg);
    filter: drop-shadow(0 15px 25px rgba(51, 255, 102, 0.2));
}

.product-details {
    z-index: 1;
    text-align: center;
}

.product-details h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.product-specs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.product-price {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.delivery-info {
    margin-top: 15px;
}

.delivery-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.delivery-info i {
    color: var(--primary-color);
}

.order-form-container {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
}

.order-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

#order-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

#order-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    z-index: 2;
}

#order-form textarea + .input-icon {
    top: 25px;
    transform: none;
}

#order-form .form-group input,
#order-form .form-group select,
#order-form .form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

#order-form .form-group input:focus,
#order-form .form-group select:focus,
#order-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 255, 102, 0.1);
    background-color: white;
}

.form-note {
    margin: 15px 0 25px;
    padding: 10px 15px;
    background: rgba(51, 255, 102, 0.1);
    border-radius: 6px;
    color: #333;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-button:hover {
    background: #33ff66;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(51, 255, 102, 0.2);
}

.submit-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Thank you section styling */
.thank-you-section {
    display: none;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
}

.thank-you-section.show {
    display: block;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(51, 255, 102, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(51, 255, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(51, 255, 102, 0);
    }
}

.thank-you-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.thank-you-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

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

.back-button,
.home-button {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-button {
    background: #eee;
    color: #333;
}

.home-button {
    background: var(--primary-color);
    color: black;
}

.back-button:hover,
.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    color: #aaa;
}

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

.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* Video Button */
.play-video-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    margin-left: 20px;
    margin-top: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.play-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.play-icon i {
    color: black;
    font-size: 18px;
}

.play-text {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .scooter-3d {
        max-width: 350px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .award-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .play-video-btn {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .sticky-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle,
    .hero-description,
    .hero-description-en {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 180px;
    }
    
    .order-container {
        flex-direction: column;
    }
    
    .product-summary,
    .order-form-container {
        width: 100%;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* Blog Section - Blog Page */
.blog-section {
    padding: 40px 0 80px;
}

.blog-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.blog-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: black;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--light-text);
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h2 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    width: fit-content;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: color 0.3s ease;
    padding: 5px 0;
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    transition: var(--transition);
    border-radius: var(--border-radius);
    padding: 8px;
}

.popular-post:hover {
    transform: translateY(-4px);
    background-color: rgba(51, 255, 102, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.popular-post a {
    display: flex;
    gap: 15px;
    color: var(--text-color);
    text-decoration: none;
    width: 100%;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.popular-post:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(51, 255, 102, 0.2);
}

.popular-post-content {
    flex: 1;
}

.popular-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.popular-post:hover .popular-post-content h4 {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.8rem;
    color: var(--light-text);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: black;
    border: none;
    border-radius: 6px;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 10px;
}

.pagination a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: black;
}

.pagination a:hover:not(.active) {
    background-color: #eee;
}

/* Media queries for blog section */
@media (max-width: 992px) {
    .blog-section .container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured .blog-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .popular-post img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h2 {
        font-size: 1.1rem;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination a {
        height: 35px;
        width: 35px;
        font-size: 0.9rem;
    }
    
    .category-list a {
        font-size: 0.9rem;
    }
}

/* Contact Section - Added for Blog Page */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, #222, #333);
    color: white;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 15px;
    font-size: 20px;
    color: var(--primary-color);
}

.whatsapp-contact-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-contact-button i {
    margin-right: 10px;
    font-size: 20px;
}

.whatsapp-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.contact-form textarea + .input-icon {
    top: 24px;
    transform: none;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding-left: 45px;
    background-color: #f5f5f5;
    border: 1px solid transparent;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    background-color: white;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: black;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form {
        padding: 25px;
    }
}

/* Main Nav */
.main-nav {
    display: flex;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: white;
    opacity: 0.8;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 20px;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Scooter Showcase and Navigation Improvements */
.scooter-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scooter-slider {
    position: relative;
    width: 90%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.scooter-slider img {
    width: 85%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.scooter-slider img.active-scooter {
    display: block;
}

.scooter-slider img:not(.active-scooter) {
    display: none;
}

/* 3D hover effect for scooter image */
.scooter-slider:hover img {
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 20px rgba(51, 255, 102, 0.2));
}

/* Add CSS animations for interactions */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(51, 255, 102, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(51, 255, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(51, 255, 102, 0);
    }
}

@keyframes shake-animation {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake-animation {
    animation: shake-animation 0.5s ease-in-out;
}

/* Button styling improvements */
.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: black;
    border: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(51, 255, 102, 0.3);
    background: #33ff66;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Improve hover effects for clickable elements */
.action-button, .details-button, .submit-button, .scroll-top, .whatsapp-contact-button {
    will-change: transform;
}

/* Additional styles for the scooter slider */
.scooter-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.arrow:hover {
    background: var(--primary-color);
    color: black;
    animation: pulse 1.5s infinite;
}

.arrow i {
    font-size: 1rem;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
}

/* Mobile optimizations */
@media (max-width: 992px) {
    .header-buttons {
        display: none;
    }
    
    .scooter-slider img {
        width: 75%;
        max-height: 300px;
    }
    
    .scooter-nav {
        width: 90%;
        padding: 0;
        left: 5%;
    }
    
    .order-container {
        flex-direction: column;
    }
    
    .product-summary, .order-form-container {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .scooter-slider img {
        width: 85%;
        max-height: 250px;
    }
    
    .product-specs {
        flex-direction: column;
        align-items: center;
    }
    
    .spec-item {
        width: 100%;
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-button, .home-button {
        width: 100%;
        justify-content: center;
    }
}

/* Custom cursor styling - Updated for visibility */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    z-index: 9999;
    background-color: rgba(51, 255, 102, 0.2);
    mix-blend-mode: normal; /* Changed from difference for better visibility */
    box-shadow: 0 0 10px rgba(51, 255, 102, 0.5); /* Add glow effect */
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(51, 255, 102, 0.3);
    border-width: 2px;
    box-shadow: 0 0 15px rgba(51, 255, 102, 0.7);
}

/* Scroll progress indicator - Enhanced */
.scroll-progress {
    position: fixed;
    right: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1000;
    border-radius: 4px;
}

.scroll-progress-fill {
    width: 100%;
    background-color: var(--primary-color);
    height: 0%;
    transition: height 0.1s;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(51, 255, 102, 0.5);
}

/* Enhanced button interactions */
.cta-button, .submit-button, .action-button, .overlay-button, .whatsapp-button,
.whatsapp-contact-button, .back-button, .home-button, .newsletter-form button,
.btn, .pagination a, .filter-option, .mobile-menu-toggle, .read-more, .close-menu,
.scroll-top {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button:hover, .submit-button:hover, .action-button:hover, .overlay-button:hover, 
.whatsapp-button:hover, .whatsapp-contact-button:hover, .btn-primary:hover,
.newsletter-form button:hover, .home-button:hover, .pagination a:hover, .back-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(51, 255, 102, 0.3);
}

.read-more:hover {
    transform: translateX(3px);
    color: var(--secondary-color);
}

.nav-links a:hover, .main-nav a:hover {
    transform: translateY(-2px);
}

.whatsapp-contact-button:hover {
    background-color: #20BD5A;
}

/* Animated underline for navigation links */
.nav-links a::before, .main-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::before, .main-nav a:hover::before {
    width: 100%;
}

/* Enhance the pagination buttons */
.pagination a:hover {
    background-color: rgba(51, 255, 102, 0.2);
    color: var(--primary-color);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(51, 255, 102, 0.5);
}

/* Better hover for scroll-top button */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0.8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 0 6px 15px rgba(51, 255, 102, 0.4);
}

/* Enhanced ripple effect for buttons */
.cta-button::after, .submit-button::after, .action-button::after, 
.overlay-button::after, .whatsapp-button::after, .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:hover::after, .submit-button:hover::after, .action-button:hover::after, 
.overlay-button:hover::after, .whatsapp-button:hover::after, .btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Enhanced Mobile Menu Toggle */
.mobile-menu-toggle:hover span {
    background-color: var(--primary-color);
}

.mobile-menu-toggle span {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span:nth-child(1) {
    transform: translateY(-2px);
}

.mobile-menu-toggle:hover span:nth-child(3) {
    transform: translateY(2px);
}

/* Product page enhancements */
.products-grid {
    padding: 50px 0;
}

.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-option {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-color);
}

.filter-option:hover, .filter-option.active {
    background: var(--primary-color);
    color: black;
    box-shadow: 0 5px 15px rgba(51, 255, 102, 0.2);
}

/* Enhance form field focus animations */
#order-form .form-group input:focus,
#order-form .form-group select:focus,
#order-form .form-group textarea:focus,
.newsletter-form input:focus,
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 255, 102, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Mobile menu improvements */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #111;
    z-index: 1000;
    padding: 50px 30px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(51, 255, 102, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.close-menu:hover {
    color: var(--primary-color);
}

/* Additional mobile menu components */
.menu-logo {
    margin-bottom: 30px;
    text-align: center;
}

.menu-logo img {
    max-width: 180px;
    height: auto;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
}

.mobile-menu nav ul li a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
    color: var(--primary-color);
}

.mobile-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-buttons .btn {
    padding: 10px 15px;
    flex: 1;
    margin: 0 5px;
    text-align: center;
}

.mobile-contact {
    margin-bottom: 30px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
}

.mobile-contact-item i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mobile-contact-item span {
    font-size: 0.95rem;
}

.mobile-social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.mobile-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

/* Product features list styling */
.product-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

/* Add WhatsApp order button style */
.whatsapp-order-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-order-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.whatsapp-order-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

@media (max-width: 576px) {
    .whatsapp-order-button {
        display: block;
        width: 100%;
        text-align: center;
    }
} 