/* style.css */
:root {
    --primary-blue: #1e5a8d;
    --accent-orange: #f58634;
    --dark-text: #333;
    --light-bg: #f4f7f6;
    --white: #ffffff;
}

body { margin: 0; font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: var(--dark-text); }
.container { width: 85%; max-width: 1200px; margin: 0 auto; }

/* Header */
header { background: var(--white); border-bottom: 3px solid var(--accent-orange); padding: 15px 0; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 26px; font-weight: bold; color: var(--primary-blue); text-decoration: none; }
.logo span { color: var(--accent-orange); }
.nav-links a { margin-left: 20px; text-decoration: none; color: #555; font-weight: 600; }
.nav-links a:hover { color: var(--accent-orange); }

/* Hero */
.hero { background: var(--primary-blue); color: white; padding: 100px 0; text-align: center; }
.hero h1 { font-size: 3rem; margin: 0 0 20px; }
.btn { background: var(--accent-orange); color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; display: inline-block; }
.btn:hover { background: #d66b1e; }

/* Sections */
.section { padding: 60px 0; }
.bg-light { background: var(--light-bg); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 30px; border-left: 5px solid var(--primary-blue); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

/* Contact Form */
input, textarea { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ddd; }
button { cursor: pointer; border: none; font-size: 16px; }

/* Footer */
footer { background: #222; color: #aaa; padding: 40px 0; text-align: center; margin-top: auto; }
/* --- ADD TO BOTTOM OF style.css --- */

/* Stats Bar */
.stats-bar { background: var(--primary-blue); color: white; padding: 30px 0; text-align: center; }
.stat-box { display: inline-block; width: 30%; margin: 10px 0; border-right: 1px solid rgba(255,255,255,0.3); }
.stat-box:last-child { border: none; }
.stat-number { font-size: 2rem; font-weight: bold; display: block; }

/* Process Section */
.process-step { text-align: center; padding: 20px; position: relative; }
.step-icon { background: var(--accent-orange); color: white; width: 60px; height: 60px; line-height: 60px; border-radius: 50%; margin: 0 auto 15px; font-size: 24px; font-weight: bold; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--accent-orange); }
.client-name { font-weight: bold; color: var(--primary-blue); margin-top: 15px; display: block; }
.stars { color: #FFD700; letter-spacing: 2px; }

/* CTA Strip */
.cta-banner { background: #333; color: white; text-align: center; padding: 50px 0; }
.cta-banner h2 { margin-bottom: 20px; }
/* --- LOGO STYLES --- */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 100px; /* Limits height so header doesn't get too big */
    width: auto;      /* Keeps the aspect ratio correct */
    display: block;
}

/* Adjust header spacing to accommodate the logo */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0; /* Add a little breathing room */
}
/* --- FOOTER STYLES --- */
footer {
    background-color: #111;
    color: #b0b0b0;
    padding-top: 60px;
    margin-top: auto; /* Pushes footer to bottom */
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-left: 3px solid var(--accent-orange);
    padding-left: 10px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #b0b0b0; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--accent-orange); padding-left: 5px; }

/* Social Icons */
.social-links { margin-top: 20px; }
.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    background: #000;
}
/* --- CONTACT PAGE STYLES --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    align-items: start;
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
}

.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; }
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}
.form-control:focus { border-color: var(--accent-orange); outline: none; }

/* Map */
.map-container {
    width: 100%;
    height: 250px;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}
/* --- SERVICES & AMC PRICING STYLES --- */
.service-icon-large {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* AMC Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: transform 0.3s;
    position: relative;
}

.price-card:hover { transform: translateY(-10px); }

/* Highlight the Best Value Plan */
.price-card.popular {
    border: 2px solid var(--accent-orange);
    transform: scale(1.05);
    z-index: 1;
}

.price-card.popular::after {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-name { font-size: 1.5rem; font-weight: bold; color: var(--primary-blue); margin-bottom: 10px; }
.plan-price { font-size: 2.5rem; font-weight: 800; color: #333; margin-bottom: 20px; display: block; }
.plan-period { font-size: 1rem; color: #777; font-weight: normal; }

.plan-features { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.plan-features li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.plan-features li i { color: #28a745; margin-right: 10px; }
.plan-features li.disabled { color: #ccc; }
.plan-features li.disabled i { color: #ccc; }

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover, .price-card.popular .btn-outline {
    background: var(--primary-blue);
    color: white;
}