/*
 * New style.css
 *
 * This file contains a completely new and unique CSS design.
 * The theme is modern and professional, using a new color scheme and typography.
 */

/* General Styling */
:root {
    --primary-color: #2c3e50; /* Dark Charcoal */
    --secondary-color: #1abc9c; /* Seafoam Green */
    --text-color: #34495e;
    --background-color: #ecf0f1; /* Light Greyish Blue */
    --white: #ffffff;
    --light-grey: #e9e9e9;
    --dark-grey: #7f8c8d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #16a085;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 2px solid var(--light-grey);
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow);
}

.hero .cta-button:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.section-light {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-dark h2 {
    color: var(--secondary-color);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-item {
    background-color: var(--light-grey);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.section-dark .grid-item {
    background-color: #34495e; /* Darker charcoal for contrast */
    color: var(--white);
}

/* Service Process */
.service-process .grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-process h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-dark .service-process h3 {
    color: var(--secondary-color);
}

.service-process p {
    font-size: 1rem;
    color: var(--dark-grey);
}

.section-dark .service-process p {
    color: var(--light-grey);
}

.service-process img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials .grid-item {
    text-align: left;
}

.testimonials .review-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonials .reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile-first Media Queries */

/* Tablet & Larger Screens */
@media (min-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop & Larger Screens */
@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
