/**
 * DFWnow! About Page Styles
 * Interactive and engaging design
 */

/* Override body padding for consistent header */
body {
    padding-top: 0 !important;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 0;
}

.min-vh-75 {
    min-height: 75vh;
}

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

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

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.text-purple {
    color: #6f42c1;
}

.bg-purple {
    background-color: #6f42c1;
}

/* Mission Card */
.mission-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2) !important;
}

.icon-box {
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Serve Cards */
.serve-card {
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.icon-circle {
    transition: transform 0.3s ease;
}

.serve-card:hover .icon-circle {
    transform: rotate(360deg);
}

/* City Badges */
.city-badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-badge:hover {
    background-color: #0d6efd !important;
    color: white !important;
    transform: scale(1.1);
}

.city-badge:hover i {
    color: white !important;
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Quote Box */
.quote-box {
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.quote-box:hover {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
}

.hover-lift {
    transition: all 0.3s ease;
}

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

.pricing-badge {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.price {
    line-height: 1;
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.accordion-item {
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(10px);
}

/* Social Links */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Backdrop Blur */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

