/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 15px; color: #444; line-height: 1.7; background: #fff; }
a { color: #1a6fa8; text-decoration: none; transition: color 0.3s; }
a:hover { color: #0d4f7a; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
#header { position: fixed; top: 0; left: 0; width: 100%; background: #1a2b3c; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 30px; height: 70px; max-width: 1200px; margin: 0 auto; }
.logo-text { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.main-nav ul { display: flex; gap: 5px; }
.main-nav ul li a { color: #ccc; font-size: 14px; font-weight: 600; padding: 8px 15px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: #fff; background: #1a6fa8; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ===== HERO SLIDER ===== */
#hero { margin-top: 70px; position: relative; height: 500px; overflow: hidden; background: #1a2b3c; }
.slides { height: 100%; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.8s ease; background: linear-gradient(135deg, #1a2b3c 0%, #1a6fa8 100%); }
.slide.active { opacity: 1; }
.slide:nth-child(2) { background: linear-gradient(135deg, #0d3d6b 0%, #1a8a6f 100%); }
.slide:nth-child(3) { background: linear-gradient(135deg, #2d1a4f 0%, #1a6fa8 100%); }
.slide-content { text-align: center; padding: 40px; max-width: 800px; }
.slide-content h1 { font-family: 'Raleway', sans-serif; font-size: 32px; font-weight: 300; color: #fff; line-height: 1.4; }
.slide-prev, .slide-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 20px; padding: 12px 16px; cursor: pointer; transition: background 0.3s; z-index: 10; }
.slide-prev:hover, .slide-next:hover { background: rgba(255,255,255,0.3); }
.slide-prev { left: 15px; }
.slide-next { right: 15px; }
.slide-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.dot.active { background: #fff; }

/* ===== INSPIRES SECTION ===== */
#inspires { padding: 70px 0; background: #f8f9fa; text-align: center; }
#inspires h2 { font-family: 'Raleway', sans-serif; font-size: 30px; color: #1a2b3c; margin-bottom: 10px; }
#inspires .sub { color: #777; max-width: 700px; margin: 0 auto 40px; }
.inspire-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.inspire-item { flex: 1; min-width: 200px; max-width: 260px; background: #fff; padding: 35px 25px; border-radius: 6px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); transition: transform 0.3s; }
.inspire-item:hover { transform: translateY(-5px); }
.inspire-item .icon { font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 36px; color: #1a6fa8; display: block; margin-bottom: 15px; }
.inspire-item .icon::before { font-family: 'Font Awesome 5 Free'; }
.inspire-item .fa-handshake::before { content: "\f2b5"; }
.inspire-item .fa-star::before { content: "\f005"; }
.inspire-item .fa-medal::before { content: "\f5a2"; }
.inspire-item h4 { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 700; color: #1a2b3c; }

/* ===== SERVICES HOME ===== */
#services-home { padding: 70px 0; background: #fff; }
#services-home h2 { font-family: 'Raleway', sans-serif; font-size: 30px; color: #1a2b3c; text-align: center; margin-bottom: 10px; }
#services-home .sub { color: #777; text-align: center; max-width: 700px; margin: 0 auto 50px; }
.services-grid { display: flex; gap: 25px; flex-wrap: wrap; }
.service-card { flex: 1; min-width: 280px; padding: 35px 25px; border: 1px solid #e8e8e8; border-radius: 6px; transition: all 0.3s; }
.service-card:hover { border-color: #1a6fa8; box-shadow: 0 5px 20px rgba(26,111,168,0.15); transform: translateY(-3px); }
.service-card .icon { font-size: 36px; color: #1a6fa8; display: block; margin-bottom: 15px; }
.service-card h3 { font-family: 'Raleway', sans-serif; font-size: 18px; color: #1a2b3c; margin-bottom: 12px; }
.service-card p { color: #666; font-size: 14px; margin-bottom: 20px; }
.btn-read { color: #1a6fa8; font-weight: 600; font-size: 13px; text-transform: uppercase; border-bottom: 2px solid #1a6fa8; padding-bottom: 2px; }
.btn-read:hover { color: #0d4f7a; border-color: #0d4f7a; }

/* ===== CTA BAND ===== */
#cta-band { background: #1a6fa8; padding: 40px 0; text-align: center; }
#cta-band p { color: #fff; font-size: 20px; margin-bottom: 20px; }
#cta-band span { color: rgba(255,255,255,0.85); font-size: 15px; }
.btn-cta { display: inline-block; background: #fff; color: #1a6fa8; font-weight: 700; padding: 12px 30px; border-radius: 4px; font-size: 14px; text-transform: uppercase; margin-left: 10px; transition: all 0.3s; }
.btn-cta:hover { background: #1a2b3c; color: #fff; }

/* ===== WHY CHOOSE US ===== */
#why-us { padding: 70px 0; background: #f8f9fa; }
#why-us h2 { font-family: 'Raleway', sans-serif; font-size: 30px; color: #1a2b3c; text-align: center; margin-bottom: 10px; }
#why-us .sub { color: #777; text-align: center; max-width: 750px; margin: 0 auto 50px; }
.why-grid { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.why-image { flex: 1; min-width: 280px; }
.why-image img { border-radius: 6px; width: 100%; }
.why-accordion { flex: 1; min-width: 280px; }
.accordion-item { border-bottom: 1px solid #ddd; }
.accordion-btn { width: 100%; background: none; border: none; text-align: left; padding: 16px 10px; font-size: 15px; font-weight: 600; color: #1a2b3c; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: color 0.3s; }
.accordion-btn:hover { color: #1a6fa8; }
.accordion-btn i { color: #1a6fa8; width: 20px; }
.acc-arrow { margin-left: auto; font-size: 20px; color: #1a6fa8; }
.accordion-content { display: none; padding: 5px 10px 18px 40px; }
.accordion-content p { color: #666; font-size: 14px; margin-bottom: 10px; }
.accordion-content a { color: #1a6fa8; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.accordion-content.open { display: block; }

/* ===== ABOUT SNIPPET ===== */
#about-snippet { padding: 70px 0; background: #1a2b3c; text-align: center; }
#about-snippet h2 { font-family: 'Raleway', sans-serif; font-size: 30px; color: #fff; margin-bottom: 20px; }
#about-snippet p { color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto 15px; }
.btn-outline { display: inline-block; margin-top: 25px; border: 2px solid #fff; color: #fff; padding: 12px 30px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; transition: all 0.3s; }
.btn-outline:hover { background: #fff; color: #1a2b3c; }

/* ===== PAGE BANNER ===== */
.page-banner { margin-top: 70px; background: linear-gradient(135deg, #1a2b3c, #1a6fa8); padding: 60px 0; text-align: center; }
.page-banner h1 { font-family: 'Raleway', sans-serif; font-size: 36px; color: #fff; font-weight: 700; }

/* ===== PAGE SECTIONS ===== */
.page-section { padding: 70px 0; }
.section-intro { text-align: center; margin-bottom: 60px; }
.section-intro h2 { font-family: 'Raleway', sans-serif; font-size: 30px; color: #1a2b3c; margin-bottom: 15px; }
.section-intro p { color: #666; max-width: 750px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: flex; gap: 50px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 60px; }
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { font-family: 'Raleway', sans-serif; font-size: 24px; color: #1a2b3c; margin: 30px 0 12px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: #666; margin-bottom: 12px; }
.about-image { flex: 1; min-width: 280px; }
.about-image img { border-radius: 6px; width: 100%; }
.why-boxes { margin-top: 20px; }
.why-boxes h2 { font-family: 'Raleway', sans-serif; font-size: 28px; color: #1a2b3c; text-align: center; margin-bottom: 40px; }
.boxes-grid { display: flex; gap: 25px; flex-wrap: wrap; }
.box-item { flex: 1; min-width: 220px; text-align: center; padding: 35px 20px; border: 1px solid #e8e8e8; border-radius: 6px; transition: all 0.3s; }
.box-item:hover { border-color: #1a6fa8; box-shadow: 0 5px 20px rgba(26,111,168,0.1); }
.box-item i { font-size: 36px; color: #1a6fa8; margin-bottom: 15px; display: block; }
.box-item h4 { font-family: 'Raleway', sans-serif; font-size: 15px; color: #1a2b3c; margin-bottom: 10px; }
.box-item p { color: #666; font-size: 13px; }

/* ===== SERVICES PAGE ===== */
.service-detail { display: flex; gap: 50px; align-items: center; margin-bottom: 60px; flex-wrap: wrap; padding-bottom: 60px; border-bottom: 1px solid #eee; }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { flex-direction: row-reverse; }
.service-detail-text { flex: 1; min-width: 280px; }
.service-detail-text h3 { font-family: 'Raleway', sans-serif; font-size: 24px; color: #1a2b3c; margin-bottom: 15px; }
.service-detail-text p { color: #666; margin-bottom: 20px; }
.service-detail-text ul { margin-bottom: 25px; }
.service-detail-text ul li { padding: 5px 0; color: #555; font-size: 14px; }
.service-detail-text ul li i { color: #1a6fa8; margin-right: 8px; }
.service-detail-image { flex: 1; min-width: 280px; }
.service-detail-image img { border-radius: 6px; width: 100%; }
.btn-primary { display: inline-block; background: #1a6fa8; color: #fff; padding: 12px 28px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: #0d4f7a; color: #fff; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 280px; }
.contact-info h2 { font-family: 'Raleway', sans-serif; font-size: 28px; color: #1a2b3c; margin-bottom: 15px; }
.contact-info > p { color: #666; margin-bottom: 30px; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 25px; }
.contact-item i { font-size: 20px; color: #1a6fa8; margin-top: 3px; width: 25px; }
.contact-item h4 { font-family: 'Raleway', sans-serif; font-size: 15px; color: #1a2b3c; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: #666; font-size: 14px; }
.contact-form { flex: 1; min-width: 280px; }
.contact-form h2 { font-family: 'Raleway', sans-serif; font-size: 28px; color: #1a2b3c; margin-bottom: 25px; }
.form-group { margin-bottom: 18px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: 'Open Sans', sans-serif; transition: border 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: #1a6fa8; }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
#footer { background: #1a2b3c; color: #ccc; padding: 60px 0 0; }
.footer-inner { display: flex; gap: 40px; flex-wrap: wrap; max-width: 1140px; margin: 0 auto; padding: 0 20px 40px; }
.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { font-family: 'Raleway', sans-serif; font-size: 16px; color: #fff; margin-bottom: 18px; font-weight: 700; }
.footer-col p { font-size: 13px; line-height: 1.8; color: #aaa; margin-bottom: 8px; }
.footer-col a { color: #aaa; font-size: 13px; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a::before { content: "› "; color: #1a6fa8; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #ccc; transition: all 0.3s; }
.social-links a:hover { background: #1a6fa8; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 18px 20px; font-size: 13px; color: #888; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav ul { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: #1a2b3c; padding: 10px 0; }
    .main-nav ul.open { display: flex; }
    .main-nav ul li a { padding: 12px 25px; border-radius: 0; }
    .slide-content h1 { font-size: 22px; }
    #hero { height: 380px; }
    .service-detail.reverse { flex-direction: column; }
    .why-grid, .about-grid, .contact-grid { flex-direction: column; }
}
