/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    gap: 1rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    letter-spacing: -1px;
}

.nav-logo-text:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

/* Navigation Logo Image Styling */
.nav-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Logo Styles */
.hero-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo {
    position: relative;
    flex-shrink: 0;
}

.hero-logo-text {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    letter-spacing: -2px;
    text-align: center;
}

.hero-logo:hover .hero-logo-text {
    animation: fastBounce 0.6s ease-in-out infinite;
    text-shadow: 5px 5px 15px rgba(255, 215, 0, 0.6);
    color: #FFD700;
}

/* Hero Logo Image Styling */
.hero-logo-img {
    height: 240px;
    width: auto;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo:hover .hero-logo-img {
    animation: fastBounce 0.6s ease-in-out infinite;
    filter: drop-shadow(5px 5px 15px rgba(255, 215, 0, 0.6));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes fastBounce {
    0%, 50%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-6px) scale(1.05);
    }
}

.hero-logo::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: shadow 2s ease-in-out infinite;
}

@keyframes shadow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    40% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.5;
    }
    60% {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.4;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
}

.nav-phone {
    display: flex;
    align-items: center;
}

.phone-number {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-number:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #90EE90;
    color: #90EE90;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

/* Mobile navigation overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 180, 219, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

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

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #FFD700;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hero background image by Helena Lopes from Pexels */
    /* Source: https://www.pexels.com/photo/27175457/ */
    /* License: Pexels License (Free for commercial use) */
    background-image: url('pexels-helenalopes-27175457.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 180, 219, 0.8) 0%, rgba(0, 131, 176, 0.7) 50%, rgba(144, 238, 144, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        margin-bottom: 0.6rem;
    }
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin-bottom: 1.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        margin-bottom: 1rem;
        padding: 0.6rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

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

.btn-secondary:hover {
    background: white;
    color: #0083b0;
    transform: translateY(-2px);
}

/* Hero animations */
@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: heroSlideIn 1s ease-out;
}

.hero-background-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Rentals Section */
.rentals {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .rentals {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .rentals {
        padding: 3rem 0;
    }
}

.rentals .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rentals-slider-container {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .rentals-slider-container {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .rentals-slider-container {
        margin-top: 1.5rem;
    }
}

.rentals-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    cursor: grab;
    touch-action: pan-y pinch-zoom; /* Improve touch scrolling */
}

.rentals-slider.manual-control {
    transition: transform 0.3s ease;
}

.rentals-slider:active {
    cursor: grabbing;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.carousel-btn span {
    line-height: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Infinite scroll animations removed - now handled by JavaScript */

.rental-item {
    flex: 0 0 calc(33.33% - 1.33rem);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}



.rental-video {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.rental-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.rental-item:hover .rental-video video {
    transform: scale(1.1);
}

.rental-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rental-item:hover .rental-overlay {
    opacity: 1;
}

.rental-overlay.red {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.3), rgba(255, 100, 100, 0.3));
}

.rental-overlay.blue {
    background: linear-gradient(45deg, rgba(0, 100, 255, 0.3), rgba(100, 200, 255, 0.3));
}

.rental-overlay.green {
    background: linear-gradient(45deg, rgba(0, 255, 100, 0.3), rgba(100, 255, 200, 0.3));
}

.rental-overlay.yellow {
    background: linear-gradient(45deg, rgba(255, 255, 0, 0.3), rgba(255, 255, 100, 0.3));
}

.rental-overlay.orange {
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.3), rgba(255, 200, 100, 0.3));
}

.rental-overlay.purple {
    background: linear-gradient(45deg, rgba(128, 0, 128, 0.3), rgba(200, 100, 255, 0.3));
}

.rental-content {
    padding: 2rem;
    text-align: center;
}

.rental-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rental-price {
    font-size: 1.8rem;
    color: #00b4db;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rental-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-rental {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-rental:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Infinite Carousel Styles - Based on Solodev's implementation */
/* Original Slick Slider by Ken Wheeler, implementation example by Solodev */
/* Repository: https://github.com/solodev/infinite-carousel */
/* License: MIT */
.infinite-carousel {
    margin: 0;
}

.infinite-carousel .slick-slide {
    padding: 0 10px;
}

.infinite-carousel .slick-list {
    margin: 0 -10px;
}

/* Custom Slick Slider Arrows */
.infinite-carousel .slick-prev,
.infinite-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 0;
}

.infinite-carousel .slick-prev:hover,
.infinite-carousel .slick-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.infinite-carousel .slick-prev {
    left: 10px;
}

.infinite-carousel .slick-next {
    right: 10px;
}

.infinite-carousel .slick-prev:before,
.infinite-carousel .slick-next:before {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #333;
    font-weight: bold;
}

.infinite-carousel .slick-prev:before {
    content: '<';
}

.infinite-carousel .slick-next:before {
    content: '>';
}

/* Custom Slick Slider Dots */
.infinite-carousel .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    bottom: auto;
    position: relative;
}

.infinite-carousel .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.infinite-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0;
    padding: 0;
}

.infinite-carousel .slick-dots li.slick-active button {
    background: white;
}

.infinite-carousel .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 3rem 0;
    }
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .features-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        margin-top: 1.5rem;
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: #90EE90;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0;
    }
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .stats {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .stats {
        margin-top: 1.5rem;
    }
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-content {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        margin-top: 1.5rem;
    }
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item strong {
    color: #00b4db;
}

/* Form message styles */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
}

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

@media (max-width: 768px) {
    .footer-content {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        margin-bottom: 1rem;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD700;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: #555;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #00b4db;
}

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

.version-info {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.7;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

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

.booking-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.booking-modal-close:hover {
    color: #FF6B6B;
}

.booking-form {
    margin-top: 1rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #00b4db;
}

.booking-form button {
    width: 100%;
    margin-top: 1rem;
}

.booking-confirmation {
    text-align: center;
    padding: 2rem 1rem;
}

.booking-confirmation h3 {
    color: #28a745;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.confirmation-details {
    margin: 2rem 0;
    line-height: 1.6;
}

.confirmation-details p {
    margin-bottom: 1rem;
}

.btn-close-modal {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-close-modal:hover {
    background: #0056b3;
}

.error-message {
    background: #fff3f3;
    color: #dc3545;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 70vh;
        min-height: 70dvh;
    }
    
    .hero-title-section {
        gap: 1.2rem;
    }
    
    .hero-logo-text {
        font-size: 4.5rem;
    }
    
    .hero-logo-img {
        height: 180px;
    }
    
    .hero-logo::before {
        width: 150px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .rental-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.4rem 1rem;
    }
    
    .nav-logo-text {
        font-size: 2.2rem;
    }
    
    .nav-logo-img {
        height: 53px;
    }
    
    .phone-number {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero {
        padding: 4rem 1rem 1rem;
        min-height: 65vh;
        min-height: 65dvh;
    }
    
    .hero-title-section {
        gap: 1rem;
    }
    
    .hero-logo-text {
        font-size: 4rem;
    }
    
    .hero-logo-img {
        height: 140px;
    }
    
    .hero-logo::before {
        width: 136px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .hero-content {
        max-width: 95%;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rental-item {
        flex: 0 0 calc(60% - 1rem);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .carousel-btn-prev {
        left: 15px;
    }
    
    .carousel-btn-next {
        right: 15px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.3rem 1rem;
    }
    
    .nav-logo-text {
        font-size: 1.8rem;
    }
    
    .nav-logo-img {
        height: 45px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .phone-number {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero {
        padding: 3rem 0.5rem 1rem;
        min-height: 60vh;
        min-height: 60dvh;
    }
    
    .hero-title-section {
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }
    
    .hero-logo-text {
        font-size: 3rem;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .hero-logo::before {
        width: 104px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .rental-item {
        flex: 0 0 calc(85% - 1rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Very small phones */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.2rem 0.5rem;
    }
    
    .nav-logo-text {
        font-size: 1.5rem;
    }
    
    .nav-logo-img {
        height: 38px;
    }
    
    .hero {
        min-height: 55vh;
        min-height: 55dvh;
        padding: 2.5rem 0.5rem 0.5rem;
    }
    
    .hero-title-section {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-logo-text {
        font-size: 2.5rem;
    }
    
    .hero-logo-img {
        height: 100px;
    }
    
    .hero-logo::before {
        width: 90px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .phone-number {
        display: none; /* Hide phone number on very small screens */
    }
    
    .hamburger {
        display: flex;
    }
    
    .rental-item {
        flex: 0 0 calc(95% - 1rem);
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-secondary, .btn-rental {
        min-height: 48px; /* Minimum touch target size */
        padding: 0.8rem 1.5rem;
    }
    
    .carousel-btn {
        min-width: 48px;
        min-height: 48px;
    }
    
    .indicator {
        min-width: 40px;
        min-height: 40px;
        border-radius: 50%;
    }
    
    .phone-number {
        min-height: 40px;
        display: flex;
        align-items: center;
    }
    
    .hamburger {
        min-width: 48px;
        min-height: 48px;
    }
}

/* Improved form elements for mobile */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

/* Improved touch feedback */
.btn-primary, .btn-secondary, .btn-rental, .carousel-btn, .indicator {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-logo-text {
        animation: none !important;
    }
    
    .feature-icon {
        animation: none !important;
    }
} 