/* Custom Styles for Mounts Automotive */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Animations */
.hero-tag {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-headline {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-image-wrapper {
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CTA Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary:hover {
    background-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-secondary:hover {
    border-color: #FF6B6B;
    color: #FF6B6B;
    transform: translateY(-2px);
}

/* Section Styles */
.section-tag {
    display: inline-block;
}

.section-title {
    font-weight: 400;
}

.section-line {
    margin-top: 1.5rem;
}

/* Service Cards */
.service-card {
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(255, 107, 107, 0.2);
    transform: translateY(-4px);
}

.service-icon {
    transition: all 0.5s ease;
}

.service-title {
    font-weight: 400;
}

.service-desc {
    line-height: 1.7;
}

/* About Section */
.about-feature {
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(4px);
}

/* Why Cards */
.why-card {
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.why-title {
    font-weight: 400;
}

.why-desc {
    line-height: 1.7;
}

/* Contact Section */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: #FF6B6B;
}

.contact-item:hover .contact-icon svg {
    color: #ffffff;
}

/* Form Styles */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

/* Mobile Menu */
.mobile-link {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #FF6B6B;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 24px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B6B;
}
