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

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

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #e74c3c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3d456b 0%, #3d456b 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.image-placeholder {
    background: #ddd;
    border: 2px dashed #999;
    padding: 40px;
    text-align: center;
    color: #666;
    border-radius: 8px;
    font-family: monospace;
}

.hero .image-placeholder {
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a5982 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
}

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

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

.fleet-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fleet-details {
    padding: 20px;
}

.fleet-price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin: 10px 0;
}

.fleet-features {
    list-style: none;
    margin-top: 15px;
}

.fleet-features li {
    padding: 5px 0;
    color: #7f8c8d;
}

.fleet-features li::before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-item {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a5982 0%, #4a5982 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

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

.submit-button {
    background: #27ae60;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #219a52;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-section h4 {
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background: #1ebe57;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back Button */
.back-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #2c3e50;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.back-button:hover {
    background: #34495e;
    transform: scale(1.1);
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

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

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

    .hamburger {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero .image-placeholder {
        margin: 25px auto 0;
        max-width: 90%;
        padding: 0;
    }

    .hero .image-placeholder img {
        height: 160px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        display: block;
        margin: 0 auto;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Sections Mobile */
    .services,
    .fleet,
    .why-us,
    .contact {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    /* Grid Mobile */
    .services-grid,
    .fleet-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-card,
    .fleet-card {
        padding: 20px;
    }

    .service-card h3,
    .fleet-card h3 {
        font-size: 1.1rem;
    }

    .service-card p,
    .fleet-card p {
        font-size: 0.9rem;
    }

    .fleet-price {
        font-size: 1.2rem;
    }

    /* Contact Form Mobile */
    .contact-form {
        padding: 0 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }

    .submit-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .footer-section {
        padding: 0 10px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button svg {
        width: 25px;
        height: 25px;
    }

    /* Back Button Mobile */
    .back-button {
        display: flex;
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }

}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .hero .image-placeholder {
        max-width: 95%;
        margin: 20px auto 0;
    }

    .hero .image-placeholder img {
        height: 140px;
        border-radius: 8px;
    }

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

    .section-subtitle {
        font-size: 0.8rem;
    }

    .service-card,
    .fleet-card {
        padding: 15px;
    }

    .fleet-price {
        font-size: 1rem;
    }

    .fleet-features li {
        font-size: 0.8rem;
    }
}

/* Tablet - iPad Pro (1024px and down) */
@media (min-width: 769px) and (max-width: 1024px) {

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* iPad Fleet Grid - 3 columns for fleet */
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .fleet-card {
        padding: 18px;
    }

    .fleet-card h3 {
        font-size: 1.1rem;
    }

    .fleet-price {
        font-size: 1.3rem;
    }

    /* iPad Footer - 3 columns */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        text-align: left;
    }

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

/* iPad Mini (768px and down but larger than mobile) */
@media (min-width: 481px) and (max-width: 768px) {
    /* iPad Mini Fleet Grid - 3 columns for fleet */
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .fleet-card {
        padding: 15px;
    }

    .fleet-card h3 {
        font-size: 1rem;
    }

    .fleet-price {
        font-size: 1.2rem;
    }

    .fleet-features li {
        font-size: 0.85rem;
    }

    /* iPad Mini Footer - 3 columns */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}