/* --- 1. Global Styles & Reset --- */
:root {
    --primary-red: #C42C33; /* Use the specific shade of red from your card */
    --text-dark: #333333;
    --text-light: #555555;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F9F9F9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif; /* Your professional font */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. Typography & Headings --- */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 1.5em;
}

.section-title {
    padding-top: 3em;
    margin-bottom: 1em;
}

.accent-text {
    color: var(--primary-red);
}

/* --- 3. Buttons (CTA) --- */
.cta-button {
    display: inline-block;
    padding: 1em 2em;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.primary-cta {
    background-color: var(--primary-red);
    color: var(--bg-white);
    font-size: 1.1em;
}

.primary-cta:hover {
    background-color: #A02329; /* A slightly darker red */
}

.secondary-cta {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 0.8em 1.5em;
}

.secondary-cta:hover {
    background-color: var(--primary-red);
    color: var(--bg-white);
}

/* --- 4. Header & Navigation --- */
.header {
    background-color: var(--bg-white);
    padding: 1.5em 0;
    border-bottom: 1px solid #eee; /* Subtle separation */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* UPDATED: SERIF FONT STYLING FOR LOGO */
.logo {
    font-family: 'Georgia', 'Times New Roman', serif; 
    font-size: 2.2em; 
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.5px; 
    line-height: 1;
}

.nav a {
    text-decoration: none;
    color: var(--text-light);
    margin-left: 20px;
    font-weight: 500;
}

.nav a:hover {
    color: var(--primary-red);
}

.nav-cta {
    color: var(--primary-red) !important;
    font-weight: 700 !important;
    margin-left: 30px;
}

/* --- 5. Hero Section --- */
.hero-section {
    padding: 4em 0; /* Creates ample white space */
    background-color: var(--bg-light-gray);
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 5%;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

/* UPDATED: STYLING FOR SQUARE ILLUSTRATION */
.hero-image {
    width: 45%;
    max-width: 450px; 
    height: auto;
    border-radius: 4px;
    object-fit: contain;
    /* Elegant framing to match the 'Fine' quality */
    box-shadow: 0 0 0 5px var(--bg-white), 0 0 0 6px #ddd; 
}

.hero-text {
    width: 50%;
}

.hero-text h2 {
    font-size: 2.5em;
    text-align: left;
    margin-bottom: 0.5em;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

/* --- 6. Trust Badges / Value Prop --- */
.trust-section {
    padding: 2.5em 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid #eee;
}

.value-prop {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.value-item {
    padding: 0 1em;
}

.icon {
    font-size: 2em;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.2em;
}

/* --- 7. Services Section --- */
.services-section {
    padding: 4em 0;
    background-color: var(--bg-light-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: var(--bg-white);
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

.service-item h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
}

/* --- 8. Contact/Quote Form Section --- */
.contact-section {
    padding: 4em 0;
    text-align: center;
}

.quote-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2em;
}

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    color: var(--text-dark);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- 9. Footer --- */
.footer {
    background-color: var(--text-dark); /* Dark footer provides contrast */
    color: #cccccc;
    padding: 2em 0;
    font-size: 0.9em;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5em;
}

/* --- 10. Media Queries (Mobile Responsiveness) --- */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        margin-top: 15px;
    }

    .nav a {
        margin: 0 10px;
        display: inline-block;
    }

    .nav-cta {
        display: none !important; /* Hide phone number from navigation on small screen */
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image, .hero-text {
        width: 100%;
    }

    .hero-image {
        margin-bottom: 1.5em;
    }
    
    .hero-text h2 {
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .value-prop {
        flex-direction: column;
        gap: 20px;
    }
}