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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


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

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

/* Language Switcher */
.language-switcher {
    margin-left: auto;
    margin-right: 20px;
    position: relative;
}

.custom-language-switcher {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
    display: none;
    margin-top: 5px;
}

.language-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #ff6b35;
    color: white;
}

.language-option .flag {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.language-option .lang-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Google Translate Widget Styling */
#google_translate_element {
    display: inline-block;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
}

.goog-te-gadget-simple {
    background: #f8f9fa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 25px !important;
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.goog-te-gadget-simple:hover {
    background: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    color: inherit !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:last-child {
    color: inherit !important;
}

/* Hide the "Powered by Google" text */
.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: inherit !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

/* Force English language names */
.goog-te-combo option {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    background: white !important;
}

/* Style the dropdown */
.goog-te-menu2 {
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin-top: 5px !important;
}

.goog-te-menu2-item {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    transition: background 0.3s ease !important;
}

.goog-te-menu2-item:hover {
    background: #ff6b35 !important;
    color: white !important;
}

.goog-te-menu2-item-selected {
    background: #ff6b35 !important;
    color: white !important;
}

/* Fallback Language Button */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.lang-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.lang-btn i {
    font-size: 1rem;
}

/* Language Modal */
.language-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.language-modal-content {
    position: relative;
    background: white;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

.language-header {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.language-header .close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.language-header .close:hover {
    opacity: 0.8;
}

.language-options {
    padding: 30px;
    display: grid;
    gap: 15px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.language-option:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.language-option.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.flag {
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.lang-info {
    flex: 1;
}

.lang-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.lang-native {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RTL Support - content only; navbar keeps logo left, links right */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar,
[dir="rtl"] .nav-container {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .language-option {
    text-align: right;
}

[dir="rtl"] .lang-info {
    text-align: right;
}

/* Contact section: keep LTR layout so it doesn't flip in Arabic/Urdu */
[dir="rtl"] .contact-section,
[dir="rtl"] .contact-section .container,
[dir="rtl"] .contact-content,
[dir="rtl"] .contact-info,
[dir="rtl"] .contact-form,
[dir="rtl"] .contact-form form {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .contact-section .section-header {
    text-align: center;
}

[dir="rtl"] .contact-item {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .contact-item:hover {
    transform: translateX(10px);
}

/* Form inputs: LTR so placeholders and numbers (e.g. phone) aren't backwards */
[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form select,
[dir="rtl"] .contact-form textarea {
    direction: ltr;
    text-align: left;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
    text-decoration: none;
}

.brand-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.brand-name .arvany {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.brand-name .speedrent {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    letter-spacing: 0.3px;
}

/* Elegant font (final choice) */
.brand-name.style-elegant .arvany {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    font-style: italic;
}

.brand-name.style-elegant .speedrent {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.1rem;
    font-style: italic;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: rotate 2s linear infinite;
}

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

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

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

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

.highlight {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: slideInUp 0.8s ease 1s forwards;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

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

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Hero Image Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bike-container {
    position: relative;
    width: 400px;
    height: 300px;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.bike-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bike-wheel {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 8px solid #333;
    border-radius: 50%;
    background: #fff;
    animation: spin 2s linear infinite;
}

.wheel-front {
    top: 20px;
    right: 30px;
}

.wheel-back {
    top: 20px;
    left: 30px;
}

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

.speed-lines {
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: speed 1s linear infinite;
}

@keyframes speed {
    0% { transform: translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(50px); opacity: 0; }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
    opacity: 0;
    animation: slideInUp 0.8s ease 1.2s forwards;
}

.stat-item:nth-child(2) { animation-delay: 1.4s; }
.stat-item:nth-child(3) { animation-delay: 1.6s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Bikes Section */
.bikes-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.bike-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #ff6b35;
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

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

.bike-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.bike-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.bike-badge.new {
    background: #28a745;
}

.bike-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.bike-info {
    padding: 25px;
}

.bike-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.bike-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bike-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
}

.feature i {
    color: #ff6b35;
}

.bike-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.daily-rate {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
}

.period {
    color: #666;
    font-size: 1rem;
}

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

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

.pricing-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.pricing-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.pricing-features i {
    color: #28a745;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: #ff6b35;
}

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

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo .brand-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.footer-logo .brand-name .arvany {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #ff6b35;
}

.footer-logo .brand-name .speedrent {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

.footer-logo i {
    margin-right: 10px;
    color: #ff6b35;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6b35;
}

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

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

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

.footer-section ul li a:hover {
    color: #ff6b35;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #ff6b35;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
}

.modal-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.modal-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-features h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.modal-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.modal-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.modal-features i {
    color: #ff6b35;
}

.modal-pricing {
    margin-bottom: 30px;
}

.pricing-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.weekly-price, .daily-price {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #eee;
}

.weekly-price {
    border-color: #ff6b35;
}

.daily-price {
    border-color: #28a745;
}

.weekly-price .price {
    color: #ff6b35;
}

.daily-price .price {
    color: #28a745;
}

.weekly-price::before {
    content: "Weekly";
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.daily-price::before {
    content: "Daily";
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.daily-option {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design - Mobile optimised */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 64px;
        padding: 0 16px;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .brand-name .arvany {
        font-size: 1.2rem;
    }

    .brand-name .speedrent {
        font-size: 1rem;
    }

    .language-switcher {
        margin-right: 12px;
    }

    .lang-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .lang-btn span {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08);
        padding: 24px 0;
        gap: 0;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .nav-link {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
    }

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

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 0;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 14px 24px;
    }

    .hero-image {
        order: -1;
        transform: scale(0.7);
        transform-origin: center center;
    }

    .bike-container {
        width: 280px;
        height: 200px;
        margin: 0 auto;
    }

    .bike-body {
        width: 140px;
        height: 70px;
        border-radius: 14px;
    }

    .bike-wheel {
        width: 42px;
        height: 42px;
        border-width: 5px;
    }

    .wheel-front {
        top: 14px;
        right: 21px;
    }

    .wheel-back {
        top: 14px;
        left: 21px;
    }

    .speed-lines {
        right: -35px;
        width: 70px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Sections */
    .bikes-section,
    .pricing-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .container {
        padding: 0 20px;
    }

    /* Bikes */
    .bike-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 32px;
        padding: 0 4px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .bikes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bike-card {
        max-width: 100%;
    }

    .bike-image {
        height: 220px;
    }

    .bike-info {
        padding: 20px;
    }

    .bike-name {
        font-size: 1.35rem;
    }

    .bike-features {
        gap: 10px;
    }

    .feature {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 36px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-header .price .amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .pricing-section .btn {
        min-height: 48px;
        width: 100%;
        justify-content: center;
    }

    .pricing-options {
        flex-direction: column;
        gap: 12px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-description {
        text-align: center;
        margin-bottom: 32px;
    }

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

    .image-container img {
        height: 280px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 36px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* prevents zoom on iOS */
    }

    .contact-item {
        padding: 16px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Modal */
    .modal-content {
        margin: 10px auto;
        width: 95%;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image img {
        height: 220px;
        object-fit: cover;
    }

    .modal-info {
        padding: 24px 20px;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }

    .close {
        top: 12px;
        right: 16px;
        font-size: 1.75rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        margin-bottom: 32px;
    }

    .footer-logo {
        justify-content: center;
    }

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

    .social-links {
        justify-content: center;
    }

    /* Safe area for notched / island devices */
    @supports (padding: env(safe-area-inset-top)) {
        .nav-container {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }

        .navbar {
            padding-top: env(safe-area-inset-top);
        }

        .hero {
            padding-top: calc(100px + env(safe-area-inset-top));
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero {
        padding: 88px 0 48px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        font-size: 0.95rem;
    }

    .hero-image {
        transform: scale(0.55);
    }

    .bike-container {
        width: 240px;
        height: 160px;
    }

    .bike-body {
        width: 110px;
        height: 55px;
        border-radius: 11px;
    }

    .bike-wheel {
        width: 33px;
        height: 33px;
        border-width: 4px;
    }

    .wheel-front {
        top: 11px;
        right: 16px;
    }

    .wheel-back {
        top: 11px;
        left: 16px;
    }

    .speed-lines {
        right: -28px;
        width: 55px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 32px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

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

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

    .bikes-section,
    .pricing-section,
    .about-section,
    .contact-section {
        padding: 48px 0;
    }

    .bike-filters {
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .bike-card {
        margin: 0;
    }

    .bike-info {
        padding: 16px;
    }

    .bike-name {
        font-size: 1.25rem;
    }

    .price {
        font-size: 1.65rem;
    }

    .pricing-card {
        margin: 0;
        padding: 24px 16px;
    }

    .pricing-header .price .amount {
        font-size: 2.25rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .image-container img {
        height: 220px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-image img {
        height: 180px;
    }

    .modal-info {
        padding: 20px 16px;
    }

    .footer {
        padding: 40px 0 16px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Hero Theme (Blue - final choice) */
.hero.theme-blue {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b4ddb 50%, #31a8ff 100%);
}

.hero.theme-blue .btn-primary { background: #31a8ff; box-shadow: 0 10px 30px rgba(49,168,255,0.35); }
.hero.theme-blue .btn-primary:hover { box-shadow: 0 15px 40px rgba(49,168,255,0.5); }
.hero.theme-blue .btn-secondary { border-color: #cfe8ff; color: #eaf4ff; }
.hero.theme-blue .btn-secondary:hover { background: #eaf4ff; color: #0d1b2a; }

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}
