/* ===== GLOBAL STYLES ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== NAVBAR ===== */
nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Centering Trick */
    align-items: center;
    padding: 15px 30px;
    background-color: white;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    color: rgba(130, 164, 217, 1);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: rgba(100, 140, 190, 1);
}

.quote-btn {
    justify-self: end;
    background-color: rgba(130, 164, 217, 1);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    display: inline-block;
}

.quote-btn:hover {
    background-color: rgba(100, 140, 190, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    nav { display: flex; flex-direction: column; gap: 15px; }
    .logo { height: 40px; }
    .quote-btn { justify-self: center; width: 100%; text-align: center; }
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 48px; margin-bottom: 20px; animation: fadeIn 1s ease; }
.hero p { font-size: 20px; margin-bottom: 30px; animation: fadeIn 1s ease 0.3s forwards; opacity: 0; }
.hero-btn { margin-top: 10px; }

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 30px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-bottom: 4px solid rgba(130, 164, 217, 1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover { transform: translateY(-10px); }

.service-icon {
    width: 60px;
    height: 60px;
    color: rgba(130, 164, 217, 1);
    margin-bottom: 20px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 30px;
    background-color: white;
    text-align: center;
}

.rating-summary { margin-bottom: 50px; }

.rating-score {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    display: block;
}

.brand-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #FBBC05;
    margin: 10px 0;
}

.brand-stars svg { width: 28px; height: 28px; }

.review-count {
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fafafa;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-stars { margin-bottom: 10px; font-size: 14px; }

.review-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.customer-name {
    font-weight: bold;
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.google-btn-wrapper { margin-top: 50px; }

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 25px;
    background-color: white;
    color: #5f6368;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #dadce0;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.google-review-btn:hover {
    background-color: #f8f9fa;
    border-color: #d2d4d7;
}

.google-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 80px 30px; background-color: white; }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: rgba(130, 164, 217, 1);
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 3px;
}

.contact-text a { color: inherit; text-decoration: none; }

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map iframe { display: block; border: 0; width: 100%; }

@media (max-width: 850px) { .contact-container { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
footer {
    background-color: #222;
    color: #bbb;
    padding: 60px 30px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-col h3 { color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #bbb; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: rgba(130, 164, 217, 1); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 14px;
}

@media (max-width: 768px) { .footer-container { grid-template-columns: 1fr; text-align: center; } }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}