/*
* M&A Auto Body - Custom Styles
* Modern design with animations and mobile responsiveness
*/

/* ---------- GLOBAL STYLES & VARIABLES ---------- */
:root {
    /* Custom color palette */
    --primary: #2c3e50;      /* Dark blue-gray */
    --secondary: #e74c3c;    /* Red accent */
    --light: #ecf0f1;
    --dark: #222222;
    --gray: #7f8c8d;
    --border-radius: 6px;
    --shadow: 0 8px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

body.modern-theme {
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.highlight {
    color: var(--secondary);
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn-custom {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-custom.primary {
    background-color: var(--secondary);
    color: white;
}

.btn-custom.outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    margin-left: 15px;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-custom.primary:hover {
    background-color: #c0392b;
}

.btn-custom.outline:hover {
    background-color: var(--dark);
    color: white;
}

.btn-appointment {
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.btn-appointment:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    color: white;
}

/* ---------- NAVBAR ---------- */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar-scrolled {
    padding: 10px 0;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo-container {
    background-color: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    margin: 0 5px;
    padding: 8px 15px !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: var(--dark);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #e6e6e6 100%);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-btns {
    margin-top: 30px;
}

.hero-image {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Hero Option 2 Style */
.hero-option2 {
    background: url('https://placehold.co/1600x900/252525/FFFFFF?text=Auto+Body+Shop');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    padding: 0;
}

.hero-option2 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-option2 .container {
    position: relative;
    z-index: 1;
}

.hero-option2 .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-option2 .hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-option2 .hero-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-option2 .hero-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-option2 .hero-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-option2 .hero-card .icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.hero-option2 .hero-card h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
}

.hero-option2 .btn-custom.outline {
    border-color: white;
    color: white;
}

.hero-option2 .shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
}

@media (max-width: 768px) {
    .hero-option2 {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-option2 .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-option2 .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-option2 .hero-cards {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-option2 .hero-card {
        padding: 15px;
        display: flex;
        align-items: center;
        text-align: left;
    }
    
    .hero-option2 .hero-card .icon {
        margin-right: 15px;
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-btns .btn-custom {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

.shape-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    transform: translateY(1px);
}

.shape-divider svg {
    position: relative;
    display: block;
    width: 150%;
    height: 70px;
    transform: translateX(-17%);
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
    background-color: white;
    position: relative;
    z-index: 1;
    margin-top: -5px;
    padding-top: 85px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-bottom: 3px solid transparent;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-icon i {
    font-size: 28px;
    color: var(--secondary);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-icon {
    background-color: var(--secondary);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
    margin-left: 5px;
}

.service-link:hover {
    color: var(--dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
}

.plus, .percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-box p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--dark);
    color: white;
    padding-top: 80px;
}

/* ---------- ABOUT PAGE STYLES ---------- */
.page-header {
    background: linear-gradient(to right, var(--primary), #34495e);
    padding: 100px 0 70px;
    color: white;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    display: inline-flex;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.about-story {
    padding: 100px 0;
}

/* ---------- SERVICES PAGE STYLES ---------- */
.services-overview {
    padding: 100px 0;
}

.service-categories {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.service-detail-item {
    margin-bottom: 80px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-features {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.insurance-section {
    padding: 100px 0;
    background-color: white;
}

.insurance-process {
    list-style-type: none;
    padding-left: 0;
    margin: 30px 0;
}

.insurance-process li {
    position: relative;
    padding: 10px 0 10px 50px;
    margin-bottom: 15px;
}

.insurance-process .step {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.insurance-logos {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.insurance-logo {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: var(--transition);
}

.insurance-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pricing-section {
    padding: 100px 0;
    background-color: white;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
}

.price span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.pricing-body {
    padding: 30px 20px;
}

.pricing-body ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing-body li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body i {
    color: var(--secondary);
    margin-right: 10px;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.faq-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary);
    background-color: white;
}

.accordion-button::after {
    background-color: var(--secondary);
    border-radius: 50%;
    background-position: center;
    background-size: 14px;
    width: 24px;
    height: 24px;
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .service-detail-item {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-custom {
        margin: 10px 0;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

.about-image-wrap {
    position: relative;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.about-feature i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-mission {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.mission-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

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

.mission-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--primary);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.team-section {
    padding: 100px 0;
}

.team-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(44, 62, 80, 0.9);
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.team-info {
    padding: 20px 15px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--gray);
    margin-bottom: 0;
}

.testimonials-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--light);
    margin-right: 15px;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-author p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 1199.98px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-custom {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .stat-box {
        margin-bottom: 30px;
    }
    
    .counter {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn-custom.outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-custom {
        width: 100%;
        text-align: center;
    }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animation.scrolled {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations for effect */
.feature-item:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-item:nth-child(2) {
    transition-delay: 0.3s;
}

.feature-item:nth-child(3) {
    transition-delay: 0.5s;
}

/* ---------- NAVBAR STYLES ---------- */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary);
    font-weight: 700;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
}

/* Animated underline for nav links */
.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-link:hover:after, 
.nav-link.active:after {
    width: 80%;
}

.appointment-link {
    background-color: var(--primary);
    color: white !important;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.appointment-link:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.appointment-link:after {
    display: none;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    height: 600px;
    background: url('https://placehold.co/1600x600/252525/FFFFFF?text=Auto+Body+Shop');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2.8rem;
}

.hero-section .btn {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ---------- SERVICES CARDS ---------- */
.service-card {
    transition: all var(--transition-speed) ease;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.service-card img {
    transition: all 0.8s ease;
}

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

.service-card .card-title {
    color: var(--primary);
    font-weight: 600;
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.feature-item {
    transition: all var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-7px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background-color: rgba(12, 77, 162, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all var(--transition-speed) ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-item h4 {
    font-weight: 600;
    color: var(--dark);
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--dark);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    margin-top: 0.7rem;
}

.footer p {
    color: #b7b7b7;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 992px) {
    .navbar .nav-item {
        margin: 0;
    }
    
    .nav-link:after {
        display: none;
    }
    
    .appointment-link {
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    /* Optimize animations for mobile */
    .scroll-animation {
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 450px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
    
    /* Remove more animations on mobile for better performance */
    .service-card:hover,
    .feature-item:hover {
        transform: none;
    }
    
    .feature-item:hover .feature-icon {
        transform: none;
    }
}

/* ---------- APPOINTMENT PAGE ---------- */
.appointment-section {
    padding: 80px 0;
}

.appointment-form-container {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.appointment-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.appointment-benefits {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.appointment-benefits h3,
.appointment-process h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    margin-bottom: 20px;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.benefits-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefits-list p {
    margin-bottom: 0;
    color: var(--gray);
}

.appointment-process {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.process-steps li {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.process-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    margin-bottom: 0;
    color: var(--gray);
}

.emergency-service-box {
    background-color: var(--primary);
    border-radius: 8px;
    padding: 25px;
    color: white;
    box-shadow: var(--shadow);
}

.emergency-service-box h3 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.emergency-service-box h3 i {
    color: #ffc107;
    margin-right: 10px;
}

.emergency-service-box p {
    margin-bottom: 15px;
}

.emergency-phone {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.emergency-phone:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.appointment-faq-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

/* Form styling */
.form-group {
    margin-bottom: 1rem;
}

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

.datepicker:disabled,
.form-control:disabled,
.form-select:disabled {
    background-color: #f8f9fa;
}

.form-control,
.form-select,
.datepicker {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 6px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus,
.datepicker:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 10px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

@media (max-width: 991px) {
    .appointment-info-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }
    
    .appointment-benefits,
    .appointment-process,
    .appointment-form-container {
        padding: 20px;
    }
    
    .process-steps li,
    .benefits-list li {
        flex-direction: column;
    }
    
    .benefits-list i {
        margin-bottom: 10px;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
}
