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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.rentacarbaku-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.rentacarbaku-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
}

.rentacarbaku-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.rentacarbaku-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rentacarbaku-nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.rentacarbaku-nav-links a:hover {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.rentacarbaku-mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.rentacarbaku-mobile-menu:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.rentacarbaku-mobile-menu:active {
    transform: scale(0.95);
}

.rentacarbaku-mobile-menu span {
    width: 24px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile menu active state */
.rentacarbaku-mobile-menu.active {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.rentacarbaku-mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-3px, 4px);
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 1px 3px rgba(231, 76, 60, 0.3);
}

.rentacarbaku-mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.rentacarbaku-mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-3px, -4px);
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 1px 3px rgba(231, 76, 60, 0.3);
}

/* Ensure mobile navigation is hidden by default */
.rentacarbaku-mobile-nav-overlay {
    pointer-events: none;
}

.rentacarbaku-mobile-nav-overlay.active {
    pointer-events: auto;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* Mobile navigation overlay */
.rentacarbaku-mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rentacarbaku-mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.rentacarbaku-mobile-nav-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 10001;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.rentacarbaku-mobile-nav-overlay.active .rentacarbaku-mobile-nav-menu {
    transform: scale(1);
    opacity: 1;
}

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

.rentacarbaku-mobile-nav-menu li {
    margin: 1.5rem 0;
}

.rentacarbaku-mobile-nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    display: block;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.rentacarbaku-mobile-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.rentacarbaku-mobile-nav-menu a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

.rentacarbaku-mobile-nav-menu a:hover::before {
    left: 0;
}

.rentacarbaku-mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #2c3e50;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rentacarbaku-mobile-nav-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #e74c3c;
    transform: scale(1.1) rotate(90deg);
    border-color: #e74c3c;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.rentacarbaku-mobile-nav-close:active {
    transform: scale(0.95);
}

/* Hero Section */
.rentacarbaku-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/baku.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.rentacarbaku-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rentacarbaku-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rentacarbaku-cta-button {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.rentacarbaku-cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

/* Hero WhatsApp Form */
.rentacarbaku-hero-whatsapp-form {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 2rem auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.rentacarbaku-hero-whatsapp-form h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.rentacarbaku-whatsapp-submit-btn {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.rentacarbaku-whatsapp-submit-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

/* Car Categories */
.rentacarbaku-car-categories {
    padding: 80px 0;
    background: white;
}

.rentacarbaku-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Car Slider */
.rentacarbaku-car-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.rentacarbaku-car-slide {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.rentacarbaku-car-slide.active {
    display: block;
}

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

.rentacarbaku-car-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;
}

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

.rentacarbaku-car-image {
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

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

.rentacarbaku-car-image:hover img {
    transform: scale(1.05);
}

.rentacarbaku-car-info {
    padding: 1.5rem;
}

.rentacarbaku-car-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #333;
}

.rentacarbaku-car-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rentacarbaku-car-price {
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1rem;
}

.rentacarbaku-car-features {
    list-style: none;
    margin-bottom: 1rem;
}

.rentacarbaku-car-features li {
    padding: 0.3rem 0;
    color: #666;
}

.rentacarbaku-car-features li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

/* Slider Controls */
.rentacarbaku-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.rentacarbaku-slider-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.rentacarbaku-slider-btn:hover {
    background: #5a6fd8;
    transform: scale(1.1);
}

.rentacarbaku-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.rentacarbaku-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.rentacarbaku-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* WhatsApp Section */
.rentacarbaku-whatsapp-section {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.rentacarbaku-whatsapp-form {
    max-width: 500px;
    margin: 0 auto;
}

.rentacarbaku-whatsapp-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rentacarbaku-whatsapp-form p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rentacarbaku-phone-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rentacarbaku-phone-input input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.rentacarbaku-whatsapp-submit {
    background: white;
    color: #25d366;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.rentacarbaku-whatsapp-submit:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Content Sections */
.rentacarbaku-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.rentacarbaku-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.rentacarbaku-content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.rentacarbaku-content-block h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #555;
}

.rentacarbaku-content-block ul {
    list-style: none;
    margin: 1rem 0;
}

.rentacarbaku-content-block li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.rentacarbaku-content-block li:before {
    content: "→ ";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rentacarbaku-content-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Page Header */
.rentacarbaku-page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/baku.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.rentacarbaku-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.rentacarbaku-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.rentacarbaku-contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.rentacarbaku-contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.rentacarbaku-contact-item h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.rentacarbaku-contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.rentacarbaku-contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
}

.rentacarbaku-contact-item a:hover {
    text-decoration: underline;
}

.rentacarbaku-whatsapp-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.rentacarbaku-whatsapp-contact h2 {
    margin-bottom: 1rem;
    color: #333;
}

.rentacarbaku-whatsapp-contact p {
    margin-bottom: 2rem;
    color: #666;
}

/* Location Section */
.rentacarbaku-location-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.rentacarbaku-location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.rentacarbaku-location-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.rentacarbaku-location-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

.rentacarbaku-location-info p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.rentacarbaku-maps-btn {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.rentacarbaku-maps-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* Testimonials Section */
.rentacarbaku-testimonials-section {
    padding: 80px 0;
    background: white;
}

.rentacarbaku-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.rentacarbaku-review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rentacarbaku-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.rentacarbaku-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rentacarbaku-reviewer-info h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.rentacarbaku-review-date {
    color: #666;
    font-size: 0.9rem;
}

.rentacarbaku-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rentacarbaku-review-content {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.rentacarbaku-review-car {
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.rentacarbaku-faq-section {
    padding: 80px 0;
    background: white;
}

.rentacarbaku-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.rentacarbaku-faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rentacarbaku-faq-question {
    background: #667eea;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
    position: relative;
}

.rentacarbaku-faq-question:hover {
    background: #5a6fd8;
}

.rentacarbaku-faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.rentacarbaku-faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.rentacarbaku-faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.rentacarbaku-faq-answer p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rentacarbaku-faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.rentacarbaku-faq-answer li {
    color: #555;
    margin-bottom: 0.5rem;
}

/* Terms Section */
.rentacarbaku-terms-section {
    padding: 80px 0;
    background: white;
}

.rentacarbaku-terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.rentacarbaku-terms-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 1rem;
}

.rentacarbaku-terms-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #555;
}

.rentacarbaku-terms-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.rentacarbaku-terms-content ul {
    margin: 1rem 0 1rem 2rem;
}

.rentacarbaku-terms-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.rentacarbaku-terms-content strong {
    color: #333;
}

/* Footer */
.rentacarbaku-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.rentacarbaku-footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.rentacarbaku-footer-section p, .rentacarbaku-footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

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

.rentacarbaku-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

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

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

/* Responsive Design */

/* iPhone SE, iPhone 6/7/8, iPhone X/XS */
@media (max-width: 375px) {
    .rentacarbaku-logo img {
        height: 60px;
    }
    
    .rentacarbaku-nav-links {
        display: none;
    }
    
    .rentacarbaku-mobile-menu {
        display: flex;
        padding: 0.6rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .rentacarbaku-mobile-menu span {
        width: 20px;
        height: 2px;
    }
    
    .rentacarbaku-hero h1 {
        font-size: 1.8rem;
    }
    
    .rentacarbaku-hero p {
        font-size: 1rem;
    }
    
    .rentacarbaku-hero-whatsapp-form {
        margin: 1rem auto 0;
        padding: 1rem;
    }
    
    .rentacarbaku-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rentacarbaku-car-slider {
        max-width: 100%;
        margin: 0 0.5rem 2rem;
    }
    
    .rentacarbaku-slider-controls {
        gap: 0.5rem;
    }
    
    .rentacarbaku-mobile-nav-menu {
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .rentacarbaku-mobile-nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

/* iPhone 6/7/8 Plus, iPhone XR, iPhone 11 */
@media (min-width: 376px) and (max-width: 414px) {
    .rentacarbaku-logo img {
        height: 70px;
    }
    
    .rentacarbaku-nav-links {
        display: none;
    }
    
    .rentacarbaku-mobile-menu {
        display: flex;
        padding: 0.65rem;
        min-width: 42px;
        min-height: 42px;
    }
    
    .rentacarbaku-mobile-menu span {
        width: 22px;
        height: 2px;
    }
    
    .rentacarbaku-hero h1 {
        font-size: 2rem;
    }
    
    .rentacarbaku-hero p {
        font-size: 1.1rem;
    }
    
    .rentacarbaku-hero-whatsapp-form {
        margin: 1rem auto 0;
        padding: 1.5rem;
    }
    
    .rentacarbaku-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rentacarbaku-car-slider {
        max-width: 100%;
        margin: 0 1rem 3rem;
    }
    
    .rentacarbaku-slider-controls {
        gap: 1rem;
    }
}

/* iPhone 12/13/14, iPhone 12/13/14 Pro */
@media (min-width: 415px) and (max-width: 428px) {
    .rentacarbaku-logo img {
        height: 75px;
    }
    
    .rentacarbaku-nav-links {
        display: none;
    }
    
    .rentacarbaku-mobile-menu {
        display: flex;
        padding: 0.7rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .rentacarbaku-mobile-menu span {
        width: 23px;
        height: 2px;
    }
    
    .rentacarbaku-hero h1 {
        font-size: 2.2rem;
    }
    
    .rentacarbaku-hero p {
        font-size: 1.2rem;
    }
    
    .rentacarbaku-hero-whatsapp-form {
        margin: 1.5rem auto 0;
        padding: 1.5rem;
    }
    
    .rentacarbaku-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rentacarbaku-car-slider {
        max-width: 100%;
        margin: 0 1rem 3rem;
    }
    
    .rentacarbaku-slider-controls {
        gap: 1rem;
    }
}

/* iPhone 12/13/14 Pro Max, iPhone 14 Plus */
@media (min-width: 429px) and (max-width: 926px) {
    .rentacarbaku-logo img {
        height: 85px;
    }
    
    .rentacarbaku-nav-links {
        display: none;
    }
    
    .rentacarbaku-mobile-menu {
        display: flex;
        padding: 0.75rem;
        min-width: 46px;
        min-height: 46px;
    }
    
    .rentacarbaku-mobile-menu span {
        width: 24px;
        height: 2px;
    }
    
    .rentacarbaku-hero h1 {
        font-size: 2.5rem;
    }
    
    .rentacarbaku-hero p {
        font-size: 1.3rem;
    }
    
    .rentacarbaku-hero-whatsapp-form {
        margin: 2rem auto 0;
        padding: 2rem;
    }
    
    .rentacarbaku-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rentacarbaku-car-slider {
        max-width: 100%;
        margin: 0 1rem 3rem;
    }
    
    .rentacarbaku-slider-controls {
        gap: 1rem;
    }
}

/* iPad Air, iPad Pro 11" */
@media (min-width: 927px) and (max-width: 1024px) {
    .rentacarbaku-logo img {
        height: 90px;
    }
    
    .rentacarbaku-nav-links {
        display: flex;
    }
    
    .rentacarbaku-mobile-menu {
        display: none;
    }
    
    .rentacarbaku-hero h1 {
        font-size: 2.8rem;
    }
    
    .rentacarbaku-hero p {
        font-size: 1.4rem;
    }
    
    .rentacarbaku-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .rentacarbaku-car-slider {
        max-width: 600px;
    }
}

/* iPad Pro 12.9" */
@media (min-width: 1025px) and (max-width: 1366px) {
    .rentacarbaku-logo img {
        height: 100px;
    }
    
    .rentacarbaku-nav-links {
        display: flex;
    }
    
    .rentacarbaku-mobile-menu {
        display: none;
    }
    
    .rentacarbaku-hero h1 {
        font-size: 3rem;
    }
    
    .rentacarbaku-hero p {
        font-size: 1.5rem;
    }
    
    .rentacarbaku-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .rentacarbaku-car-slider {
        max-width: 700px;
    }
} 