/**
 * Additional custom styles for child theme
 * Enhanced design elements and animations
 */

/* Widget Styles */

/* Testimonial Widget */
.daral-testimonial-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.testimonial-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #ddd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
}

.testimonial-content {
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
}

.testimonial-company {
    color: #3aa64c;
    font-weight: 500;
}

.testimonial-date {
    color: #999;
    font-size: 13px;
}

/* Contact Widget */
.daral-contact-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    min-width: 25px;
    text-align: center;
}

.contact-text {
    font-size: 15px;
    color: #333;
}

.contact-text a {
    color: #3aa64c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #2e8f3e;
    text-decoration: underline;
}

.business-hours-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3aa64c;
}

.business-hours {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.business-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.business-hours-item:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.hours {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.hours.closed {
    color: #dc3545;
    font-weight: 600;
}

/* Social Widget */
.daral-social-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.social-description {
    margin-bottom: 20px;
}

.social-description p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #333;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.social-icon {
    font-size: 18px;
    margin-right: 8px;
}

.social-label {
    font-size: 14px;
    font-weight: 500;
}

/* Icon sizes */
.social-links.small .social-link {
    padding: 6px 10px;
}

.social-links.small .social-icon {
    font-size: 14px;
    margin-right: 5px;
}

.social-links.small .social-label {
    font-size: 12px;
}

.social-links.large .social-link {
    padding: 15px 20px;
}

.social-links.large .social-icon {
    font-size: 24px;
    margin-right: 10px;
}

.social-links.large .social-label {
    font-size: 16px;
}

/* Enhanced animations and transitions */
@keyframes fadeInUpEnhanced {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeftEnhanced {
    from {
        opacity: 0;
        transform: translateX(-60px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes slideInRightEnhanced {
    from {
        opacity: 0;
        transform: translateX(60px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes scaleInEnhanced {
    from {
        opacity: 0;
        transform: scale(0.8) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0);
    }
}

@keyframes rotateInEnhanced {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Enhanced fade-in animations */
.fade-in-enhanced {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-enhanced.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: fadeInUpEnhanced 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Enhanced slide animations */
.slide-in-left-enhanced {
    opacity: 0;
    transform: translateX(-60px) rotate(-5deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left-enhanced.visible {
    opacity: 1;
    transform: translateX(0) rotate(0);
    animation: slideInLeftEnhanced 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right-enhanced {
    opacity: 0;
    transform: translateX(60px) rotate(5deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right-enhanced.visible {
    opacity: 1;
    transform: translateX(0) rotate(0);
    animation: slideInRightEnhanced 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Enhanced scale animations */
.scale-in-enhanced {
    opacity: 0;
    transform: scale(0.8) rotateY(15deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in-enhanced.visible {
    opacity: 1;
    transform: scale(1) rotateY(0);
    animation: scaleInEnhanced 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Enhanced rotate animations */
.rotate-in-enhanced {
    opacity: 0;
    transform: rotate(-15deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in-enhanced.visible {
    opacity: 1;
    transform: rotate(0) scale(1);
    animation: rotateInEnhanced 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Enhanced header styles */
.header-child-enhanced {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.98) 50%, 
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-child-enhanced .logo-icon {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 40%, 
        #2d8a3e 100%);
    box-shadow: 
        0 8px 25px rgba(58, 166, 76, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.header-child-enhanced .logo-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: enhanced-shimmer 4s infinite linear;
}

@keyframes enhanced-shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Enhanced hero section */
.hero-child-enhanced {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 35%, 
        #1e6d2e 70%, 
        #0f4a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-child-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: hero-particles 20s infinite ease-in-out;
}

@keyframes hero-particles {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-child-enhanced .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-child-enhanced .hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: enhanced-hero-title 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes enhanced-hero-title {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Enhanced car cards */
.car-card-child-enhanced {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8fafc 50%, 
        #f1f5f9 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.car-card-child-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(58, 166, 76, 0.3) inset;
}

.car-card-child-enhanced .car-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
}

.car-card-child-enhanced:hover .car-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

/* Enhanced pricing table */
.pricing-table-child-enhanced {
    background: linear-gradient(135deg, 
        #f0fdf4 0%, 
        #dcfce7 50%, 
        #bbf7d0 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.pricing-table-child-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 100%);
    z-index: -1;
    margin: -3px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-table-child-enhanced:hover::before {
    opacity: 0.1;
}

/* Enhanced pricing items */
.pricing-item-child-enhanced {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8fafc 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.3);
}

.pricing-item-child-enhanced:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(58, 166, 76, 0.2) inset;
}

.pricing-item-child-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(58, 166, 76, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.pricing-item-child-enhanced:hover::before {
    left: 100%;
}

/* Enhanced contact section */
.contact-section-child-enhanced {
    background: linear-gradient(135deg, 
        #1f2937 0%, 
        #111827 50%, 
        #030712 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section-child-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(58, 166, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(58, 166, 76, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(58,166,76,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: enhanced-grid-move 30s infinite linear;
}

@keyframes enhanced-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(15px, 15px); }
}

/* Enhanced contact items */
.contact-item-child-enhanced {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-child-enhanced:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(58, 166, 76, 0.3);
}

.contact-icon-child-enhanced {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 
        0 5px 15px rgba(58, 166, 76, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
}

.contact-item-child-enhanced:hover .contact-icon-child-enhanced {
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(58, 166, 76, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2) inset;
}

/* Enhanced WhatsApp button */
.whatsapp-float-child-enhanced {
    background: linear-gradient(135deg, 
        #25d366 0%, 
        #128c7e 50%, 
        #075e54 100%);
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2) inset;
    animation: enhanced-pulse 3s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes enhanced-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 15px 40px rgba(37, 211, 102, 0.4),
            0 0 0 3px rgba(255, 255, 255, 0.2) inset;
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 20px 50px rgba(37, 211, 102, 0.6),
            0 0 0 4px rgba(255, 255, 255, 0.3) inset;
    }
}

.whatsapp-float-child-enhanced::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 70%);
    animation: enhanced-shimmer 2s infinite linear;
}

.whatsapp-float-child-enhanced:hover {
    animation: none;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 25px 60px rgba(37, 211, 102, 0.6),
        0 0 0 4px rgba(255, 255, 255, 0.3) inset;
}

/* Enhanced CTA buttons */
.cta-button-child-enhanced {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 50%, 
        #2d8a3e 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 10px 30px rgba(58, 166, 76, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

.cta-button-child-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.cta-button-child-enhanced:hover::before {
    left: 100%;
}

.cta-button-child-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(58, 166, 76, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2) inset;
}

/* Enhanced form styles */
.booking-form-child-enhanced input,
.booking-form-child-enhanced select,
.booking-form-child-enhanced textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
}

.booking-form-child-enhanced input:focus,
.booking-form-child-enhanced select:focus,
.booking-form-child-enhanced textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 3px rgba(58, 166, 76, 0.1),
        0 0 0 1px var(--primary-color) inset;
    outline: none;
    transform: translateY(-2px);
    background: #ffffff;
}

/* Enhanced navigation */
.nav-menu-child-enhanced a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
}

.nav-menu-child-enhanced a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu-child-enhanced a:hover::after {
    width: 100%;
}

.nav-menu-child-enhanced a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Enhanced mobile menu */
.mobile-menu-toggle-child-enhanced {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 100%);
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 5px 15px rgba(58, 166, 76, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

.mobile-menu-toggle-child-enhanced:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(58, 166, 76, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2) inset;
}

/* Enhanced loading animations */
.loading-child-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}

.loading-child-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    transition: left 0.8s ease;
    animation: enhanced-loading-shimmer 2s infinite;
}

@keyframes enhanced-loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced utility classes */
.gradient-primary-enhanced {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 50%, 
        #2d8a3e 100%);
}

.gradient-secondary-enhanced {
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        #5a67d8 50%, 
        #4c51bf 100%);
}

.shadow-luxury-enhanced {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.text-gradient-enhanced {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 50%, 
        #2d8a3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-luxury-enhanced {
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) border-box;
    border-radius: inherit;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .hero-child-enhanced .hero-title {
        font-size: 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .car-card-child-enhanced .car-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-child-enhanced .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-table-child-enhanced {
        padding: 1.5rem;
    }
    
    .whatsapp-float-child-enhanced {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }
}

/* Enhanced accessibility */
.sr-only-child-enhanced {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
.cta-button-child-enhanced:focus,
.nav-menu-child-enhanced a:focus,
.booking-form-child-enhanced input:focus,
.booking-form-child-enhanced select:focus,
.booking-form-child-enhanced textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    box-shadow: 
        0 0 0 3px rgba(58, 166, 76, 0.2),
        0 0 0 1px var(--primary-color) inset;
}

/* Enhanced reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .fade-in-enhanced,
    .slide-in-left-enhanced,
    .slide-in-right-enhanced,
    .scale-in-enhanced,
    .rotate-in-enhanced {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .cta-button-child-enhanced,
    .nav-menu-child-enhanced a,
    .car-card-child-enhanced,
    .whatsapp-float-child-enhanced {
        transition: none !important;
        animation: none !important;
    }
    
    .cta-button-child-enhanced::before,
    .pricing-table-child-enhanced::before,
    .pricing-item-child-enhanced::before {
        animation: none !important;
        transition: none !important;
    }
}

/* Enhanced high contrast mode support */
@media (prefers-contrast: high) {
    .cta-button-child-enhanced {
        border: 3px solid currentColor;
        font-weight: 700;
    }
    
    .pricing-table-child-enhanced {
        border-width: 4px;
    }
    
    .nav-menu-child-enhanced a::after {
        height: 4px;
    }
    
    .pricing-item-child-enhanced {
        border: 2px solid var(--primary-color);
    }
}

/* Contact Form Response Messages */
.form-response {
    margin-top: 20px;
    padding: 0;
    display: none;
}

.form-response .form-success,
.form-response .form-error {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.form-response .form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-response .form-success h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #155724;
}

.form-response .form-success p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #155724;
}

.form-response .form-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-response .form-error h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #721c24;
}

.form-response .form-error p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #721c24;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Loading State */
.child-submit-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.child-submit-button.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f9fafb;
        --text-light: #d1d5db;
        --bg-light: #1f2937;
        --bg-white: #111827;
        --border-color: #374151;
    }
    
    .header-child-enhanced {
        background: linear-gradient(135deg, 
            rgba(17, 24, 39, 0.98) 0%, 
            rgba(31, 41, 55, 0.98) 50%, 
            rgba(17, 24, 39, 0.98) 100%);
    }
    
    .car-card-child-enhanced {
        background: linear-gradient(135deg, 
            var(--bg-white) 0%, 
            var(--bg-light) 100%);
        color: var(--text-dark);
    }
    
    .pricing-item-child-enhanced {
        background: linear-gradient(135deg, 
            var(--bg-white) 0%, 
            var(--bg-light) 100%);
        color: var(--text-dark);
    }
}