/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: #2c3e50; position: relative; transition: color 0.3s; }
.nav-link:hover { color: #e67e22; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #e67e22; transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-phone { background: #e67e22; color: #fff !important; padding: 8px 18px; border-radius: 25px; font-weight: 600; font-size: 0.9rem; transition: background 0.3s; }
.nav-phone:hover { background: #d35400; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 25px; height: 3px; background: #2c3e50; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: 1; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,62,80,0.7) 0%, rgba(0,0,0,0.4) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 20px; max-width: 800px; animation: fadeInUp 1s ease; }
.hero-title { font-family: 'Roboto Slab', serif; font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 35px; font-weight: 300; opacity: 0.95; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 14px 32px; border-radius: 30px; font-weight: 600; font-size: 1rem; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #e67e22; color: #fff; }
.btn-primary:hover { background: #d35400; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,126,34,0.4); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #2c3e50; }
.btn-white { background: #fff; color: #2c3e50; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }

/* ===== TRUST BAR ===== */
.trust-bar { background: #2c3e50; color: #fff; padding: 25px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item { font-size: 0.95rem; font-weight: 500; }
.trust-icon { color: #2ecc71; font-weight: 700; margin-right: 6px; font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section-title { font-family: 'Roboto Slab', serif; font-size: 2.4rem; color: #2c3e50; margin-bottom: 15px; }
.section-title.center { text-align: center; }
.section-subtitle { color: #666; font-size: 1.1rem; margin-bottom: 40px; }
.section-subtitle.center { text-align: center; }

/* ===== ABOUT ===== */
.about { padding: 90px 0; background: #f9fafb; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content p { margin-bottom: 15px; color: #555; }
.about-list { list-style: none; margin: 20px 0; }
.about-list li { padding: 8px 0; padding-left: 28px; position: relative; color: #444; }
.about-list li::before { content: '\2713'; position: absolute; left: 0; color: #e67e22; font-weight: 700; font-size: 1.1rem; }

/* ===== SERVICES ===== */
.services { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 12px; padding: 35px 30px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: #e67e22; }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1.25rem; color: #2c3e50; margin-bottom: 12px; }
.service-card p { color: #666; font-size: 0.95rem; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); padding: 80px 0; text-align: center; color: #fff; }
.cta-content h2 { font-family: 'Roboto Slab', serif; font-size: 2.2rem; margin-bottom: 15px; }
.cta-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.95; }

/* ===== CONTACT ===== */
.contact { padding: 90px 0; background: #f9fafb; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info p { color: #555; margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-icon { font-size: 1.5rem; color: #e67e22; }
.contact-item a { color: #e67e22; font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-form-wrapper { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-form h3 { font-family: 'Roboto Slab', serif; font-size: 1.5rem; color: #2c3e50; margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: #444; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #e67e22; }

/* ===== FOOTER ===== */
.footer { background: #1a252f; color: #bdc3c7; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 15px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #bdc3c7; transition: color 0.3s; }
.footer-links a:hover { color: #e67e22; }
.footer-contact p { margin-bottom: 10px; font-size: 0.95rem; }
.footer-contact a { color: #bdc3c7; transition: color 0.3s; }
.footer-contact a:hover { color: #e67e22; }
.footer-bottom { border-top: 1px solid #34495e; padding: 20px 0; text-align: center; font-size: 0.9rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.6rem; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 30px; gap: 20px; transform: translateX(-100%); transition: transform 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
    .nav-menu.active { transform: translateX(0); }
    .nav-phone { display: inline-block; margin-top: 10px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; text-align: left; padding: 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .about, .services, .contact, .cta-section { padding: 60px 0; }
    .section-title { font-size: 1.9rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .contact-form-wrapper { padding: 25px; }
}
