:root { --primary: #123B5D; --secondary: #0E6B87; --accent: #F28C28; --bg-light: #F4F8FA; --text: #263238; --text-muted: #37474F; --white: #FFFFFF; --success: #2E7D32; --border: #D2E3EC; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
html { scroll-behavior: smooth; }
input, textarea, select { -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; user-select: auto; }
body { background-color: var(--bg-light); color: var(--text); line-height: 1.6; }
.construction-banner { background-color: var(--accent); color: #0B253D; text-align: center; padding: 10px 15px; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.5px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.layout-container { display: grid; grid-template-columns: 1fr 380px; max-width: 1300px; margin: 0 auto; gap: 30px; padding: 30px 20px; }
@media (max-width: 992px) { .layout-container { grid-template-columns: 1fr; } }
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 40px; border-radius: 10px; margin-bottom: 30px; }
.hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.hero p.tagline { font-size: 1.1rem; font-weight: 600; color: #E0F2FE; margin-bottom: 15px; }
.sectors-tag { display: inline-block; background: rgba(255, 255, 255, 0.18); padding: 6px 12px; border-radius: 4px; font-size: 0.85rem; margin-top: 10px; }
.section-header { color: var(--primary); font-size: 1.8rem; margin-bottom: 20px; border-left: 5px solid var(--accent); padding-left: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 2px 5px rgba(0,0,0,0.03); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(18, 59, 93, 0.1); }
.service-card h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.btn-primary { display: inline-block; background-color: var(--accent); color: #0B253D; text-align: center; padding: 10px 16px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: opacity 0.2s ease; }
.btn-primary:hover { opacity: 0.9; }
.sidebar { display: flex; flex-direction: column; gap: 25px; }
.widget-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 22px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
.widget-card h3 { color: var(--primary); font-size: 1.15rem; margin-bottom: 12px; border-bottom: 2px solid var(--bg-light); padding-bottom: 8px; }
.widget-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.developer-badge { background-color: var(--primary); color: var(--white); border-radius: 8px; padding: 18px; text-align: center; }
.developer-badge a { color: #E0F2FE; text-decoration: underline; font-weight: 600; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-control { width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.9rem; background: var(--bg-light); }
.form-control:focus { outline: none; border-color: var(--secondary); background: var(--white); }
.signature-pad-container { border: 1px dashed var(--secondary); background: #fff; border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
canvas#signatureCanvas { display: block; width: 100%; height: 120px; cursor: crosshair; touch-action: none; }
.sig-controls { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.btn-text { background: none; border: none; color: #0B5D75; font-size: 0.85rem; font-weight: 700; cursor: pointer; text-decoration: underline; }
.alert { padding: 12px; border-radius: 5px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background-color: #E8F5E9; color: var(--success); border: 1px solid #C8E6C9; }
.alert-error { background-color: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
footer { background-color: var(--primary); color: var(--white); text-align: center; padding: 20px; font-size: 0.85rem; margin-top: 40px; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 59, 93, 0.7); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 9999; opacity: 0; transition: opacity 0.25s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-container { background: #FFFFFF; width: 92%; max-width: 460px; border-radius: 12px; padding: 28px; box-shadow: 0 15px 35px rgba(0,0,0,0.25); position: relative; transform: translateY(20px); transition: transform 0.25s ease; border-top: 5px solid #F28C28; }
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--text-muted); cursor: pointer; transition: color 0.2s ease; }
.modal-close:hover { color: #0B253D; }
.modal-header { margin-bottom: 18px; }
.modal-header h3 { font-size: 1.35rem; color: var(--primary); margin-bottom: 4px; }
.modal-header p { font-size: 0.85rem; color: var(--text-muted); }