* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

.logo {
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    text-align: left;
}

.logo-main {
    font-weight: 700;
    font-size: 1.25rem;
    color: #dc2626;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    color: #000000;
    font-weight: 400;
    margin-top: -2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: none;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #dc2626;
}

.btn-contact {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.875rem;
}

.btn-contact:hover {
    background-color: #b91c1c;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .btn-contact {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/heather-background_1760764107920.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
}

.btn-primary:hover {
    background-color: #b91c1c;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

.btn-primary-large {
    background-color: #dc2626;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.btn-primary-large:hover {
    background-color: #b91c1c;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid white;
}

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

@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    .hero-image {
        width: 18rem;
        height: 18rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .hero-text {
        text-align: left;
    }
    .hero-text h1 {
        font-size: 3.75rem;
    }
    .hero-title {
        font-size: 1.875rem;
    }
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .hero-image {
        width: 20rem;
        height: 20rem;
    }
}

/* Sections */
.section {
    padding: 3rem 1.5rem;
}

.section-gray {
    background-color: #f9fafb;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.section-description {
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    font-size: 0.875rem;
}

.text-red {
    color: #dc2626;
}

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

.mt-12 {
    margin-top: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 1.5rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .section-description {
        font-size: 1rem;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: #374151;
    line-height: 1.75;
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 1rem;
    height: 1rem;
    color: #dc2626;
    flex-shrink: 0;
}

.stat-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-images img {
    width: 100%;
    height: 8rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-images img {
        height: 12rem;
    }
    .about-text p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #dc2626;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fee2e2;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.service-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-list li::before {
    content: '✓';
    color: #dc2626;
    margin-right: 0.5rem;
}

.service-link {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: #b91c1c;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why We Serve Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-card {
    position: relative;
}

.why-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    height: 16rem;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.why-card:hover .why-image img {
    transform: scale(1.05);
}

.why-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.why-card:hover .why-image::after {
    background-color: rgba(0, 0, 0, 0.3);
}

.why-card h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

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

.contact-item a {
    color: #6b7280;
    text-decoration: none;
}

.contact-item a:hover {
    color: #dc2626;
}

.contact-form {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.form-placeholder img {
    width: 100%;
    border-radius: 0.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 1.5rem;
    border-top: 1px solid #374151;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    color: #dc2626;
    line-height: 1.2;
}

.footer-logo .logo-sub {
    font-size: 0.875rem;
    color: white;
    font-weight: 400;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.footer ul li:hover {
    color: white;
}

.footer-bottom {
    max-width: 1152px;
    margin: 0 auto;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (min-width: 640px) {
    .footer {
        padding: 4rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
