@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFF7ED;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1F2937;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 80px;
    width: auto;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 0.5rem;
}

.logo h2 {
    color: #FB923C;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #FFF7ED;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FB923C;
}

.cta-nav {
    background-color: #FB923C !important;
    color: #1F2937 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-nav:hover {
    background-color: #FDBA74 !important;
}

/* Hero Section with Parallax */
.hero-parallax {
    height: 100vh;
    background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(31, 41, 55, 0.7)),
                url('images/car-transporter-breakdown-lorry-working-using-locked-belt-transport-other-green-car.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF7ED;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Mega CTA Buttons */
.mega-cta {
    display: inline-block;
    background-color: #FB923C;
    color: #1F2937;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
}

.mega-cta:hover {
    background-color: #FDBA74;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.4);
}

.mega-cta.secondary {
    background-color: #1F2937;
    color: #FFF7ED;
}

.mega-cta.secondary:hover {
    background-color: #374151;
}

.mega-cta.emergency {
    background-color: #DC2626;
    color: #FFF7ED;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-preview {
    padding: 5rem 0;
    background-color: #FFF7ED;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F2937;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #FB923C;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #FFF7ED;
    font-weight: bold;
    font-size: 1.1rem;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-image-placeholder.large {
    height: 300px;
    font-size: 1.3rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

/* CTA Section */
.cta-section {
    background-color: #1F2937;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #FFF7ED;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background-color: #1F2937;
    color: #FFF7ED;
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-detail:nth-child(even) .service-image-placeholder {
    order: 2;
}

.service-detail:nth-child(even) .service-content {
    order: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1F2937;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FB923C;
}

.contact-item a {
    color: #1F2937;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #6B7280;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: #1F2937;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1F2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FB923C;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-placeholder iframe {
    border-radius: 10px;
}

.map-info h3 {
    margin-bottom: 1rem;
    color: #1F2937;
}

.map-info ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

/* Emergency Banner */
.emergency-banner {
    background-color: #DC2626;
    color: #FFF7ED;
    padding: 3rem 0;
    text-align: center;
}

.emergency-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #1F2937;
    color: #FFF7ED;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-info h3 {
    color: #FB923C;
    margin-bottom: 1rem;
}

.footer-services h4 {
    color: #FB923C;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    margin-bottom: 0.5rem;
}

/* Blog Grid Styles */
.blog-grid {
    padding: 4rem 0;
}

.blog-categories {
    margin-bottom: 4rem;
}

.blog-categories h2 {
    font-size: 2rem;
    color: #1F2937;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #FB923C;
    padding-bottom: 1rem;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: #1F2937;
    text-decoration: none;
    font-size: 1.2rem;
}

.blog-card h3 a:hover {
    color: #FB923C;
}

.blog-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #FB923C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #FDBA74;
}

/* Featured Blog Section */
.featured-blog {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.featured-blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F2937;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
}

.blog-preview-card h3 {
    margin-bottom: 1rem;
}

.blog-preview-card h3 a {
    color: #1F2937;
    text-decoration: none;
    font-size: 1.1rem;
}

.blog-preview-card h3 a:hover {
    color: #FB923C;
}

.blog-preview-card p {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Blog Styles */
.blog-post {
    padding: 6rem 0 4rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #FB923C;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #6B7280;
    font-style: italic;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #1F2937;
    margin: 2rem 0 1rem;
    border-left: 4px solid #FB923C;
    padding-left: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-content .cta-section {
    background-color: #1F2937;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.blog-content .cta-section h2 {
    color: #FFF7ED;
    border: none;
    padding: 0;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .mega-cta {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detail:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) .service-image-placeholder,
    .service-detail:nth-child(even) .service-content {
        order: unset;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-parallax {
        background-attachment: scroll;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-content .cta-section {
        padding: 2rem 1rem;
    }
}