/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Modern, clean font */
    color: #2C3E50; /* Dark Slate Blue for a professional look */
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #ECF0F1; /* Light Gray for clean and modern appearance */
}

header {
    background: #1ABC9C; /* Soft teal for a fresh and modern feel */
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 1.2em;
}

nav ul li a:hover {
    color: #34495E; /* Darker slate blue for hover */
}

/* Call to Action Button on the Right */
.cta-buttons {
    position: relative;
}

.call-to-action-button {
    background: #E74C3C; /* Modern red button for a strong CTA */
    color: #fff;
    padding: 10px 25px;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
    border: none;
}

.call-to-action-button:hover {
    background: #C0392B; /* Darker red on hover */
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    color: #34495E; /* Dark Slate Blue */
    font-size: 2em;
    margin-bottom: 10px;
    border-bottom: 3px solid #1ABC9C;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    color: #1ABC9C;
    font-size: 1.6em;
}

/* Section Styles */
section {
    background: #FFFFFF; /* Clean white background */
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* Form Styles */
.cta-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-form input, .cta-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #BDC3C7; /* Light border for form inputs */
    margin-bottom: 20px;
    font-size: 1.1em;
    background-color: #FDFEFE; /* Lighter background for inputs */
}

.cta-form label {
    font-size: 1.2em;
    color: #34495E;
    font-weight: bold;
}

.cta-form button {
    background-color: #1ABC9C;
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.cta-form button:hover {
    background-color: #16A085; /* Darker teal on hover */
}

/* Pricing Section */
.price-display {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.price-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: calc(50% - 15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.price-item h3 {
    color: #1ABC9C;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.price-item p {
    color: #7F8C8D; /* Soft gray for text */
    font-size: 1em;
}

.price {
    font-size: 2.5em;
    color: #E74C3C;
    font-weight: bold;
    margin-top: 15px;
}

/* Map Section */
.map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

/* Footer Styles */
footer {
    background: #1ABC9C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

/* Zip Code & Area Links */
.zip-code-links, .area-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.zip-code-links a, .area-links a {
    background: #34495E;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.3s ease;
}

.zip-code-links a:hover, .area-links a:hover {
    background: #2C3E50;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #FFFFFF;
    padding: 40px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 20px;
    text-align: center;
}

.popup-content {
    margin-bottom: 20px;
    color: #2C3E50;
}

.popup button {
    background-color: #E74C3C;
    color: #fff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.popup button:hover {
    background-color: #C0392B;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        margin-top: 10px;
    }

    .price-display {
        flex-direction: column;
    }

    .price-item {
        width: 100%;
    }

    .map {
        height: 300px;
    }
}

:target::before {
    content: "";
    display: block;
    height: 80px;
    margin-top: -80px;
}
