/* Modern Accessible Styling */
:root {
    --primary: #ff4d4d;
    --primary-dark: #e04545;
    --secondary: #000000;
    --background: #ffffff;
    --text: #333333;
    --text-secondary: #555555;
    --card-bg: #f8f8f8;
    --border: #e0e0e0;
    --radius: 10px;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    padding: 0;
    margin: 0;
}

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

/* Content section */
.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 0;
    margin: 0;
}

.text-container {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.text-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.text-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-container p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.button {
    text-decoration: none;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.book-now {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.book-now:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.call-now {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.call-now:hover {
    background-color: #222;
    border-color: #222;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.image-container {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Sections */
.services-section, 
.why-choose-section, 
.faq-section, 
.service-area-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.why-choose-content {
    flex: 1;
    min-width: 50%;
}

.why-choose-content ul {
    list-style-type: none;
    padding: 0;
}

.why-choose-content li {
    padding: 14px 0;
    font-size: 1.1rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    line-height: 1.7;
}

.why-choose-content li:last-child {
    border-bottom: none;
}

.why-choose-content li strong {
    color: var(--primary);
    font-weight: 600;
}

.why-choose-image {
    flex: 1;
    min-width: 40%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.why-choose-image:hover img {
    transform: scale(1.03);
}

/* FAQ Section */
.faq-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-image {
    flex: 1;
    min-width: 40%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.faq-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.faq-image:hover img {
    transform: scale(1.03);
}

.faq-content {
    flex: 1;
    min-width: 50%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Service Area Section */
/* Service Area Section - Responsive Fit */
.service-area-section {
    text-align: center;
    padding: 0 20px; /* Add side padding */
}

.service-area-section img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    max-width: 80% !important; /* Ensure it never exceeds container */
    height: auto; /* Maintain aspect ratio */
    border: 1px solid var(--border);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-area-section img {
        max-height: 300px; /* Limit height on mobile */
    }
}

.service-area-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    padding-top: 10px;
}

.service-area-section a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-area-section a:hover {
    color: var(--primary-dark);
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: var(--card-bg);
    border-radius: var(--radius);
    margin: 40px 0;
    border: 1px solid var(--border);
}

.testimonial {
    background: var(--background);
    border-radius: var(--radius);
    padding: 30px;
    margin: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    color: white;
    margin: 40px 0;
    border: 1px solid var(--primary-dark);
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        padding: 40px 0;
        text-align: left;
        margin-top: 30px;

    }
    
    .text-container {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .text-container h1 {
        font-size: 2rem;
    }
    
    .button-group {
        justify-content: flex-start;
    }
    
    .button {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-container,
    .faq-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .why-choose-image,
    .faq-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .why-choose-content,
    .faq-content {
        width: 100%;
    }
    
    .faq-image {
        order: -1;
    }
}

.alternative-locations {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.locations-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.locations-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


.faq-item a,
.why-choose-content a {
    color: #ff4d4d; /* Your brand red */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid rgba(255, 77, 77, 0.3);
}

.faq-item a:hover,
.why-choose-content a:hover {
    color: #e04545; /* Slightly darker red */
    border-bottom-color: #ff4d4d;
}
