/* style.css – pentru tractari-auto.seoads.ro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo span {
    color: #f97316;
}

/* Navigation with dropdown */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #f97316;
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
}
.dropdown-content a {
    color: #334155;
    padding: 0.75rem 1rem;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #f1f5f9;
    color: #f97316;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.header-cta {
    background: #f97316;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.header-cta:hover {
    background: #ea580c;
}
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary {
    background: #f97316;
    color: white;
}
.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: #f97316;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
}
.stat {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
}

/* Section common */
section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f97316;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eef2ff;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.service-card p {
    color: #475569;
    margin-bottom: 20px;
}
.service-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.pricing-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}
.pricing-card:hover {
    transform: scale(1.02);
}
.pricing-header {
    background: #f8fafc;
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}
.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f97316;
}
.price small {
    font-size: 1rem;
    font-weight: 400;
}
.pricing-features {
    padding: 32px;
    list-style: none;
}
.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pricing-features i {
    color: #f97316;
    width: 20px;
}
.pricing-card .btn-primary {
    display: block;
    text-align: center;
    margin: 0 32px 32px;
}

/* Booking form */
.booking {
    background: linear-gradient(135deg, #f1f5f9 0%, #e6edf5 100%);
    border-radius: 48px;
    margin: 40px 0;
}
.booking .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.booking-form {
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
}
.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.booking-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Special offers */
.offers {
    background: #0f172a;
    color: white;
}
.offers .section-title:after {
    background: white;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.offer-card {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}
.offer-card:hover {
    background: rgba(255,255,255,0.1);
}
.offer-tag {
    background: #f97316;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.testimonial {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}
.client {
    display: flex;
    align-items: center;
    gap: 12px;
}
.client i {
    font-size: 2rem;
    color: #f97316;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}
.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #475569;
}
.faq-answer.active {
    display: block;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}
.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}
.footer-col a:hover {
    color: #f97316;
}
.copyright {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 24px;
}

/* Floating buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.float-phone { background: #f97316; }
.float-wa { background: #25D366; }
.floating-buttons a:hover { transform: scale(1.05); }

/* Mobile bottom bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px;
    justify-content: space-around;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.mobile-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 6px;
}
.mobile-call { background: #f97316; color: white; }
.mobile-wa { background: #25D366; color: white; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .header-cta {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-stats {
        margin-top: 32px;
    }
    .booking .container {
        grid-template-columns: 1fr;
    }
    .floating-buttons {
        display: none;
    }
    .mobile-bottom-bar {
        display: flex;
    }
    body {
        padding-bottom: 70px;
    }
}