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

:root {
    --primary-red: #DD2033;
    --welsh-green: #00A651;
    --dark-green: #006637;
    --dark-gray: #3C3C3B;
    --light-gray: #808080;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-green: #E8F5E9;
    --border-gray: #E0E0E0;
    --max-width: 1200px;
    --section-padding: 80px 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover {
    color: var(--welsh-green);
}

.nav-phone a {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-phone a:hover {
    background-color: var(--welsh-green);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 150px 20px 100px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

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

.hero-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(0,0,0,0.1));
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--welsh-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c20510;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.btn-secondary {
    background-color: var(--welsh-green);
    color: var(--white);
    border: 2px solid var(--welsh-green);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

section h2 {
    font-size: 40px;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-green) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 28px;
    color: var(--welsh-green);
    margin: 30px 0 15px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.qualifications {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.qualifications ul {
    list-style: none;
    margin-top: 20px;
}

.qualifications li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.qualifications li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--welsh-green);
    font-weight: bold;
    font-size: 20px;
}

/* Services Section */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--welsh-green);
    border-left: 1px solid var(--light-green);
    border-right: 1px solid var(--light-green);
    border-bottom: 1px solid var(--light-green);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-gray);
}

.service-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--welsh-green);
    font-weight: bold;
}

.pricing-info {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.pricing-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.pricing-info .price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
}

.pricing-info p {
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, var(--light-green) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 15px;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-green);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--welsh-green);
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 166, 81, 0.2);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-green) 100%);
}

.contact-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    font-size: 18px;
    min-width: 280px;
    justify-content: center;
}

.btn-icon {
    font-size: 28px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-label {
    font-weight: 700;
    font-size: 18px;
}

.btn-detail {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.contact-info-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--welsh-green);
}

.contact-info-box h3 {
    font-size: 24px;
    color: var(--welsh-green);
    margin-bottom: 15px;
}

.contact-info-box p {
    font-size: 17px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

.coverage-areas {
    color: var(--welsh-green);
    font-size: 18px;
    margin: 20px 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer p {
    margin: 10px 0;
    color: var(--light-gray);
}

.footer-tagline {
    font-style: italic;
    font-size: 14px;
}


.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    color: var(--light-gray);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--white);
}

.social-links {
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-link--facebook {
    background-color: #1877F2;
    color: var(--white);
}

.social-link--facebook:hover {
    opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo {
        order: -1;
    }

    .hero-logo img {
        max-width: 80%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    section h2 {
        font-size: 32px;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .nav-logo img {
        height: 40px;
    }

    section {
        padding: 60px 20px;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .pricing-info .price {
        font-size: 36px;
    }

    .btn-large {
        min-width: auto;
        padding: 18px 30px;
    }

    .btn-icon {
        font-size: 24px;
    }

    .btn-label {
        font-size: 16px;
    }

    .btn-detail {
        font-size: 13px;
    }
}
