/* ===== Global Reset & Base Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; background: #F5F7FA; line-height: 1.6; scroll-behavior: smooth; }
h1, h2, h3, h4 { font-weight: 700; color: #0A2342; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 4px; font-weight: 600; transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background: #D4AF37; color: #0A2342; }
.btn-primary:hover { background: #b8952c; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid #D4AF37; color: #D4AF37; }
.btn-outline:hover { background: #D4AF37; color: #0A2342; }

/* ===== Header & Nav ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo { font-size: 24px; font-weight: 700; color: #0A2342; }
.logo span { color: #D4AF37; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-weight: 500; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: #D4AF37; transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ===== Hero ===== */
.page-hero { background: linear-gradient(135deg, #0A2342 0%, #12355B 100%); color: #fff; padding: 160px 0 100px; text-align: center; }
.page-hero h1 { font-size: 48px; margin-bottom: 16px; }
.page-hero p { font-size: 20px; opacity: 0.8; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; margin-bottom: 12px; }
.section-header p { font-size: 18px; color: #666; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 30px; align-items: center; justify-items: center; }

/* Cards */
.value-card, .team-member { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; }
.value-card:hover, .team-member:hover { transform: translateY(-6px); }
.value-icon { font-size: 32px; color: #D4AF37; display: block; margin-bottom: 16px; }
.team-avatar { width: 80px; height: 80px; background: #0A2342; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }

/* Images */
.about-image img, .service-image img, .case-image img { width: 100%; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* Footer */
.footer { background: #0A2342; color: #ccc; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 12px; font-size: 14px; }
.footer-links h4 { color: #fff; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: #D4AF37; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; font-size: 14px; }
.legal-links a { margin-right: 16px; }
.legal-links a:hover { color: #D4AF37; }

@media(max-width:768px){ .nav-links { display: none; } .page-hero h1 { font-size: 36px; } }