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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1a3a52;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.nav-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffa500;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffa500;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff8c00;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3a52;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a3a52;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: #1a3a52;
    margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3a52;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-content {
    padding: 4rem 0;
}

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

.contact-info h2 {
    color: #1a3a52;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #2c5f7f;
    text-decoration: none;
}

.info-item a:hover {
    color: #ffa500;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Form */
.contact-form-wrapper h2 {
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7f;
}

.submit-button {
    background-color: #ffa500;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #ff8c00;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Reviews Page */
.reviews-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.reviews-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.reviews-content {
    padding: 4rem 0;
}

.review-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.angi-badge {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.angi-badge:hover {
    transform: translateY(-5px);
}

.angi-badge h3 {
    color: #1a3a52;
    margin-bottom: 1rem;
}

.angi-badge p {
    margin-bottom: 1.5rem;
}

.angi-button {
    display: inline-block;
    background-color: #ff6f00;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.angi-button:hover {
    background-color: #e65100;
}

.google-button {
    background-color: #4285f4;
}

.google-button:hover {
    background-color: #3367d6;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 2rem;
}

.cta-section h2 {
    color: #1a3a52;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Specials Page */
.specials-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.specials-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.specials-content {
    padding: 4rem 0;
}

.specials-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.specials-intro a {
    color: #2c5f7f;
    text-decoration: none;
    font-weight: bold;
}

.specials-intro a:hover {
    color: #ffa500;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.special-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.special-card.featured {
    border-color: #ffa500;
    background: linear-gradient(to bottom, #fff9f0 0%, #f9f9f9 100%);
}

.special-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #ffa500;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.special-card h2 {
    color: #1a3a52;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.special-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    color: #ffa500;
    font-weight: bold;
}

.special-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.special-includes {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.special-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.special-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-weight: bold;
}

.special-terms {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.special-button {
    display: block;
    background-color: #ffa500;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.special-button:hover {
    background-color: #ff8c00;
}

/* Footer */
footer {
    background-color: #1a3a52;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-brand {
        font-size: 1.2rem;
        text-align: center;
    }

    .nav-menu {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .mobile-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .review-platforms-grid {
        grid-template-columns: 1fr;
    }

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

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