/* Homepage Enhancements */

/* Service Card Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.service-card a:hover {
    background: #ff6600 !important;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Hero Stats Animation */
.stat {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stat:nth-child(1) { animation-delay: 0.3s; }
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.5s; }

/* Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,102,0,0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,51,102,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        min-height: 500px !important;
        padding: 60px 0 !important;
    }
    
    .hero-content {
        max-width: 100% !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons a {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        text-align: center;
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 40px !important;
    }
    
    .stat {
        padding: 20px !important;
    }
    
    .stat h3 {
        font-size: 2rem !important;
    }
    
    .stat p {
        font-size: 0.9rem !important;
    }
    
    /* Services Section Mobile */
    section[id="services"] {
        padding: 60px 0 !important;
    }
    
    section[id="services"] h2 {
        font-size: 1.8rem !important;
    }
    
    section[id="services"] > div > div:first-child p {
        font-size: 1rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-card {
        padding: 30px 20px !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
    }
    
    .service-card p {
        font-size: 0.95rem !important;
    }
    
    .service-card .price {
        font-size: 1.1rem !important;
    }
    
    /* Why Choose Us Section Mobile */
    section > div > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    section > div > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
        order: 2;
    }
    
    section > div > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child {
        order: 1;
    }
    
    section > div > div[style*="grid-template-columns: 1fr 1fr"] h2 {
        font-size: 1.8rem !important;
    }
    
    section > div > div[style*="grid-template-columns: 1fr 1fr"] p {
        font-size: 1rem !important;
    }
    
    section > div > div[style*="grid-template-columns: 1fr 1fr"] h4 {
        font-size: 1rem !important;
    }
    
    /* Booking Section Mobile */
    .booking {
        padding: 60px 0 !important;
    }
    
    .booking h2 {
        font-size: 1.8rem !important;
    }
    
    .booking .section-subtitle {
        font-size: 1rem !important;
    }
    
    .booking-form-container {
        padding: 30px 20px !important;
        border-radius: 15px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem !important;
        padding: 10px 12px !important;
    }
    
    .payment-summary {
        padding: 15px !important;
    }
    
    .payment-summary h4 {
        font-size: 1.1rem !important;
    }
    
    .btn-block {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .hero {
        min-height: 450px !important;
    }
    
    .hero-content h1 {
        font-size: 1.7rem !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
    }
    
    .hero-buttons a {
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .stat h3 {
        font-size: 1.8rem !important;
    }
    
    section[id="services"] h2,
    .booking h2 {
        font-size: 1.6rem !important;
    }
    
    .service-card {
        padding: 25px 15px !important;
    }
    
    .booking-form-container {
        padding: 25px 15px !important;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
