
:root {
    --primary: #005baa;
    --secondary: #e67e22;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #7f8c8d;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; line-height: 1.6; color: var(--dark); background-color: var(--light); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.logo span { color: var(--secondary); }
nav ul { display: flex; list-style: none; }
nav li { margin-left: 25px; }
nav a { text-decoration: none; color: var(--dark); font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--primary); }
.contact-number { background-color: var(--primary); color: white; padding: 10px 15px; border-radius: 5px; font-weight: 600; text-decoration: none; transition: background-color 0.3s; white-space: nowrap; }
.contact-number:hover { background-color: #004888; }

/* Hero */
.hero { padding: 80px 0; background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8)); }
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary); line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #444; }
.btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid var(--secondary); }
.btn:hover { background-color: transparent; color: var(--secondary); }
.hero-img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 1px solid #ddd; }

/* Services */
.services, .brands, .testimonials { padding: 80px 0; background-color: #fff; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; }
.section-title p { color: var(--gray); max-width: 700px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background-color: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; border-top: 4px solid var(--primary); }
.service-card:hover { transform: translateY(-5px); }
.service-content { padding: 25px; }
.service-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; }
.service-content ul { list-style: none; margin-top: 15px; }
.service-content li { margin-bottom: 8px; position: relative; padding-left: 20px; }
.service-content li:before { content: "✓"; color: var(--secondary); position: absolute; left: 0; font-weight: bold; }

/* Brands */
.brands { background-color: #f1f6fe; }
.brand-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.brand-card h3 { color: var(--primary); margin: 15px 0; }

/* Testimonials */
.testimonial-card { background-color: #f9f9f9; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; }
.testimonial-text { font-style: italic; margin-bottom: 20px; color: #555; }
.testimonial-author { font-weight: 600; color: var(--primary); }

/* CTA */
.cta { padding: 80px 0; background-color: var(--primary); color: white; text-align: center; }
.cta h2 { font-size: 2.2rem; margin-bottom: 20px; }
.cta p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; opacity: 0.9; }
.btn-light { background-color: white; color: var(--primary); border-color: white; }
.btn-light:hover { background-color: transparent; color: white; }

/* Footer */
footer { background-color: var(--dark); color: white; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-column h3 { color: var(--secondary); margin-bottom: 20px; font-size: 1.3rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; }

/* Directory Grid */
.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }
.city-link { display: block; padding: 10px; background: #fff; color: var(--dark); text-decoration: none; border-radius: 4px; text-align: center; border: 1px solid #ddd; transition: 0.2s; }
.city-link:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* Content Sections (Long Text) */
.content-section { margin-bottom: 40px; }
.content-section h2 { color: var(--primary); font-size: 1.8rem; margin-bottom: 15px; border-bottom: 2px solid var(--secondary); display: inline-block; padding-bottom: 5px; }
.content-section p { margin-bottom: 15px; text-align: justify; }
.content-section ul { margin-bottom: 20px; padding-left: 20px; }
.content-section li { margin-bottom: 10px; }

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .hero .container { grid-template-columns: 1fr !important; text-align: center; }
    .hero-img { margin-top: 20px; }
}
