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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #ffffff;
}

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

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

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

.logo {
    display: flex;
    align-items: center;
}

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

.logo h1 {
    color: #FCE7F3;
    font-size: 1.5rem;
    font-weight: bold;
}

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

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

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

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

.cta-nav:hover {
    background-color: #DC2626 !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('https://images.pexels.com/photos/1545743/pexels-photo-1545743.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

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

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FCE7F3;
}

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

.mega-cta:hover {
    background-color: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
}

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

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

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

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

.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(300px, 1fr));
    gap: 2rem;
}

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

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

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

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

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

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

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

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

.service-content p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.service-content li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.service-cta {
    display: inline-block;
    background-color: #EF4444;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #DC2626;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background-color: #1F2937;
    color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FCE7F3;
}

.feature p {
    color: #d1d5db;
}

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

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

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.phone-link {
    color: #EF4444;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

.phone-link:hover {
    color: #DC2626;
}

/* Form Styles */
.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: #EF4444;
}

.form-cta {
    background-color: #EF4444;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-cta:hover {
    background-color: #DC2626;
}

.emergency-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #FEF2F2;
    border-left: 4px solid #EF4444;
    border-radius: 5px;
    text-align: center;
}

.emergency-phone {
    display: block;
    color: #EF4444;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 0.5rem;
}

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

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

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-info {
    text-align: center;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Guarantee */
.service-guarantee {
    padding: 5rem 0;
}

.service-guarantee h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1F2937;
}

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

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.guarantee-item p {
    color: #6b7280;
}

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

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

.emergency-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FCE7F3;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FCA5A5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Blog Post Styles */
.blog-post {
    padding: 8rem 0 5rem;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.post-meta {
    color: #6b7280;
    font-size: 1.1rem;
}

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

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

.post-content p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.cta-banner {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin: 3rem 0;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-inline {
    background-color: #FEF2F2;
    border-left: 4px solid #EF4444;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 5px;
}

.cta-inline p {
    margin-bottom: 1rem;
    color: #1F2937;
}

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

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

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

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

.blog-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    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;
    line-height: 1.4;
}

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

.blog-card p {
    color: #6b7280;
    line-height: 1.6;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* 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;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}