/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body { line-height: 1.6; color: #333; }

h1, h2, h3 { margin-bottom: 10px; color: #1a1a1a; }

/* Top Bar */
.top-bar {
    background: #000; /* Coordinated with new logo black */
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo .logo-img {
    height: 60px; /* Adjust height as needed */
    width: auto;
}

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fbc531; /* Yellow from logo */ }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn-primary {
    background: #fbc531; /* Yellow from logo */
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-primary:hover { background: #eab12a; /* Slightly darker yellow */ }

.btn-secondary {
    background: white;
    color: #fbc531;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #fbc531;
    transition: all 0.3s;
}
.btn-secondary:hover { background: #fbc531; color: white; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 { font-size: 3rem; color: white; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; }

/* Sections Global */
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; }
.process, .why-choose, .testimonials, .services, .faq-section { padding: 80px 5%; background: #f9f9f9; }
.services, .testimonials { background: white; }

/* Grid Sections */
.process-grid, .why-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

/* Process Icons */
.process-card i { font-size: 3rem; color: #fbc531; margin-bottom: 15px; }

/* Why Choose Icons */
.why-item i { font-size: 2.5rem; color: #000; margin-bottom: 10px; }
.why-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Testimonials Slider */
.testimonial-slider { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-item { display: none; }
.testimonial-item.active { display: block; }
.testimonial-text { font-size: 1.2rem; font-style: italic; margin-bottom: 15px; }
.testimonial-rating { color: #fbc531; margin-bottom: 10px; }

/* Services Card */
.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }
.read-more {
    display: inline-block;
    color: #fbc531;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; background: white; }
.faq-question {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
}
.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: 15px; }

/* Footer */
footer { background: #1a1a1a; color: white; padding: 60px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: white; margin-bottom: 20px; border-bottom: 2px solid #fbc531; display: inline-block; padding-bottom: 5px; }
.footer-col p { margin-bottom: 10px; color: #ccc; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; color: #888; }
.service-areas p { font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        padding: 20px 0;
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-buttons { flex-direction: column; }
    .hero-content h1 { font-size: 2rem; }
}