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

/* Top Bar */
.top-bar { background: #0f172a; color: #94a3b8; padding: 8px 0; font-size: 0.78rem; }
.top-bar-content { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

/* Navbar */
.navbar { position: fixed; top: 32px; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); box-shadow: 0 1px 10px rgba(0,0,0,0.08); transition: all 0.3s; }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo-img { height: 50px; width: auto; }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 28px; }
.nav-link { font-weight: 500; font-size: 0.88rem; color: #334155; position: relative; transition: color 0.3s; }
.nav-link:hover { color: #0369a1; }
.nav-phone { background: #0284c7; color: #fff !important; padding: 9px 20px; border-radius: 6px; font-weight: 700; font-size: 0.85rem; transition: background 0.3s; }
.nav-phone:hover { background: #0369a1; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2.5px; background: #0f172a; border-radius: 2px; transition: all 0.3s; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 32px; }
.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(15,23,42,0.75) 0%, rgba(2,84,199,0.4) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 20px; max-width: 850px; animation: fadeInUp 1s ease; }
.hero-tagline { display: inline-block; background: rgba(2,132,199,0.9); color: #fff; padding: 6px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 22px; }
.hero-title { font-family: 'Oswald', sans-serif; font-size: 3.2rem; font-weight: 600; margin-bottom: 18px; line-height: 1.15; text-transform: uppercase; letter-spacing: 1px; }
.hero-subtitle { font-size: 1.15rem; margin-bottom: 35px; font-weight: 300; opacity: 0.92; }
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 45px; }
.hero-badges { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.badge { text-align: center; }
.badge-number { display: block; font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 600; color: #38bdf8; line-height: 1; }
.badge-text { font-size: 0.8rem; opacity: 0.85; letter-spacing: 0.5px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #0284c7; color: #fff; }
.btn-primary:hover { background: #0369a1; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(2,84,199,0.35); }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: #fff; color: #0f172a; }

/* Section labels */
.section-label { display: inline-block; color: #0284c7; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: #0f172a; margin-bottom: 16px; line-height: 1.2; text-transform: uppercase; }
.section-title.center { text-align: center; }
.section-subtitle { color: #64748b; font-size: 1.05rem; margin-bottom: 45px; text-align: center; }
.section-header { text-align: center; margin-bottom: 20px; }

/* About */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { margin-bottom: 16px; color: #475569; font-size: 1.02rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; padding-top: 25px; border-top: 1px solid #e2e8f0; }
.about-stat { text-align: center; }
.about-stat-number { display: block; font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 600; color: #0284c7; }
.about-stat-text { font-size: 0.8rem; color: #64748b; line-height: 1.3; }
.about-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.services { padding: 100px 0; background: #f1f5f9; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 8px; padding: 35px 28px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: all 0.3s; border: 1px solid #e2e8f0; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: #bae6fd; }
.service-icon-box { width: 55px; height: 55px; background: #e0f2fe; color: #0284c7; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.15rem; color: #0f172a; margin-bottom: 10px; font-weight: 600; }
.service-card p { color: #64748b; font-size: 0.92rem; margin-bottom: 14px; }
.service-card ul { list-style: none; }
.service-card ul li { padding: 4px 0; padding-left: 18px; position: relative; color: #475569; font-size: 0.88rem; }
.service-card ul li::before { content: '\2713'; position: absolute; left: 0; color: #0284c7; font-weight: 700; }

/* Why Us */
.why-us { padding: 100px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon { width: 32px; height: 32px; background: #dcfce7; color: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.why-text h4 { font-size: 1.05rem; color: #0f172a; margin-bottom: 5px; font-weight: 600; }
.why-text p { color: #64748b; font-size: 0.92rem; }
.why-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* Service Area */
.service-area { background: #0f172a; padding: 50px 0; text-align: center; }
.area-title { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.area-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.area-item { background: rgba(56,189,248,0.15); color: #7dd3fc; padding: 10px 24px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; border: 1px solid rgba(56,189,248,0.2); transition: all 0.3s; }
.area-item:hover { background: rgba(56,189,248,0.25); }

/* Contact */
.contact { padding: 100px 0; background: #f1f5f9; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info p { color: #475569; margin-bottom: 30px; font-size: 1.02rem; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { display: flex; align-items: flex-start; gap: 14px; background: #fff; padding: 18px 20px; border-radius: 8px; box-shadow: 0 3px 12px rgba(0,0,0,0.04); }
.info-icon { font-size: 1.4rem; color: #0284c7; }
.info-card div { display: flex; flex-direction: column; }
.info-card strong { font-size: 0.8rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.info-card a, .info-card span { color: #0f172a; font-weight: 500; font-size: 0.95rem; }
.info-card a:hover { color: #0284c7; }
.contact-form-wrapper { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.contact-form h3 { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: #0f172a; margin-bottom: 25px; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; color: #334155; font-size: 0.85rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit; font-size: 0.95rem; transition: all 0.3s; background: #f8fafc; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #0284c7; background: #fff; }

/* Footer */
.footer { background: #0f172a; color: #94a3b8; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 40px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 15px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-links h4 { color: #e2e8f0; font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: #38bdf8; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 22px 0; text-align: center; font-size: 0.85rem; }

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

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.7rem; }
    .hero { margin-top: 30px; }
    .navbar { top: 30px; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 65px; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 30px; gap: 18px; transform: translateX(-100%); transition: transform 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
    .nav-menu.active { transform: translateX(0); }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-badges { gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .about, .services, .contact, .why-us { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .contact-form-wrapper { padding: 25px; }
    .top-bar-content { gap: 12px; }
    .hero { margin-top: 0; }
    .navbar { top: 0; }
    .top-bar { display: none; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .badge-number { font-size: 1.4rem; }
}
