/* 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: #2c3e50;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #6b9bd1;
    }

.book-now-btn {
    background: linear-gradient(135deg, #6b9bd1, #4a7ba7);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .book-now-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(107, 155, 209, 0.4);
    }

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6b9bd1;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6b9bd1, #4a7ba7);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Rentals Section */
.rentals {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #e8f4f8);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.rental-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

    .rental-card.featured {
        border: 3px solid #6b9bd1;
        transform: scale(1.05);
    }

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6b9bd1, #4a7ba7);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.price {
    font-size: 3rem;
    color: #6b9bd1;
    font-weight: 700;
    margin-bottom: 10px;
}

.duration {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

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

    .features i {
        color: #6b9bd1;
        font-size: 0.9rem;
    }

.rental-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6b9bd1, #4a7ba7);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .rental-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(107, 155, 209, 0.4);
    }

/* Equipment Section */
.equipment {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.equipment-item {
    text-align: center;
}

    .equipment-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .equipment-item h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .equipment-item p {
        color: #5a6c7d;
        line-height: 1.6;
        font-size: 1.1rem;
    }

/* Delivery Section */
.delivery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #e8f4f8);
}

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

.delivery-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.delivery-text > p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

    .feature i {
        color: #6b9bd1;
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .feature h4 {
        color: #2c3e50;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .feature p {
        color: #5a6c7d;
        line-height: 1.5;
    }

.delivery-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.testimonial-card {
    background: #f8fbff;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #6b9bd1;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b9bd1;
    font-size: 0.9rem;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #e8f4f8);
}

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

.booking-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.booking-info > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #5a6c7d;
}

    .highlight i {
        color: #6b9bd1;
        font-size: 1.2rem;
    }

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.booqable-container {
    text-align: center;
    padding: 60px 20px;
    color: #5a6c7d;
    font-size: 1.1rem;
}

/* Booqable widget styling */
.booqable-product-list {
    width: 100%;
    min-height: 400px;
    padding: 20px 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

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

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #6b9bd1, #4a7ba7);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(107, 155, 209, 0.4);
    }

.form-note {
    text-align: center;
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-top: 15px;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

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

    .contact-item i {
        color: #6b9bd1;
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .contact-item h4 {
        color: #2c3e50;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .contact-item p {
        color: #5a6c7d;
        line-height: 1.5;
    }

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    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 {
    height: 50px;
    width: auto;
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #6b9bd1;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

    .social-links a {
        color: #bdc3c7;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

        .social-links a:hover {
            color: #6b9bd1;
        }

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

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

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .delivery-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rental-options {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero {
        padding: 100px 0 60px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .rental-card {
        padding: 30px 20px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

    img:not([src]) {
        opacity: 0;
    }

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #6b9bd1;
    outline-offset: 2px;
}

/* Active hamburger animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
