/* Palette: Corporate Blue, Balanced Grey, White */
:root {
    --blue: #0056D2;
    --dark-blue: #003C9D;
    --grey: #B0BEC5;
    --light-bg: #F4F6F8;
    --text: #374151;
    --white: #FFFFFF;
    
    --font: 'Public Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 4px; }

/* Header */
.shift-header { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; color: #333; letter-spacing: 1px; }
.blue { color: var(--blue); }

.corp-nav a { margin-left: 25px; font-weight: 600; font-size: 0.9rem; color: #555; }
.corp-nav a:hover, .corp-nav a.active { color: var(--blue); }

.btn-blue { background: var(--blue); color: var(--white) !important; padding: 10px 25px; border-radius: 4px; font-weight: 600; }
.btn-blue:hover { background: var(--dark-blue); }

/* Mobile Menu */
.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-btn span { width: 25px; height: 3px; background: var(--blue); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--blue); z-index: 2000; display: flex; flex-direction: column; padding: 30px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-btn { align-self: flex-end; color: var(--white); font-size: 2rem; background: none; border: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { color: var(--white); font-size: 1.2rem; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 5px; }

@media (max-width: 900px) {
    .corp-nav { display: none; }
    .menu-btn { display: flex; }
}

/* Hero */
.hero-shift { height: 85vh; background-size: cover; background-position: center; position: relative; }
.overlay-light { width: 100%; height: 100%; background: rgba(255, 255, 255, 0.85); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 800px; padding: 20px; }
.badge { background: var(--blue); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; display: inline-block; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; color: #222; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; color: #555; margin-bottom: 40px; }

.btn-group { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--blue); color: var(--white); padding: 15px 40px; font-weight: 700; border-radius: 4px; }
.btn-secondary { background: #333; color: var(--white); padding: 15px 40px; font-weight: 700; border-radius: 4px; }

/* Services */
.section-head h2 { font-size: 2.2rem; color: #222; }
.divider { width: 60px; height: 4px; background: var(--blue); margin: 15px auto 0; border-radius: 2px; }
.divider.left { margin: 20px 0; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.service-card { background: var(--light-bg); padding: 40px 25px; text-align: center; border-radius: 8px; transition: 0.3s; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { color: var(--blue); margin-bottom: 15px; font-size: 1.2rem; }

/* Layouts */
.split-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.split-layout.reverse { grid-template-columns: 1fr 1.2fr; direction: rtl; }
.split-layout.reverse .content-side { direction: ltr; }
.check-list { list-style: none; margin-top: 30px; }
.check-list li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.check-list li::before { content: '✓'; color: var(--blue); font-weight: 900; position: absolute; left: 0; }

.contact-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--light-bg); padding: 60px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.info-col h2 { color: var(--blue); margin-bottom: 20px; }
.details { margin-top: 30px; font-weight: 600; color: #555; }
.details p { margin-bottom: 10px; }

.shift-form .form-group { margin-bottom: 20px; }
.shift-form label { display: block; font-weight: 600; margin-bottom: 5px; color: #444; font-size: 0.9rem; }
.shift-form input, .shift-form select, .shift-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font); }
.submit-btn { width: 100%; background: var(--blue); color: var(--white); border: none; padding: 15px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: var(--dark-blue); }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--light-bg); padding: 60px; border-radius: 8px; }
.legal-content h1 { color: var(--blue); }
.legal-content h3 { color: #333; margin-top: 30px; }

/* Footer */
.shift-footer { background: #1E293B; color: #94A3B8; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #334155; padding-bottom: 30px; margin-bottom: 20px; }
.f-logo h4 { color: var(--white); font-weight: 700; }
.f-links a { color: #94A3B8; margin-left: 20px; }
.f-links a:hover { color: var(--blue); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--blue); color: var(--white); padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 3000; display: none; }
.cookie-bar.active { display: flex; }
.cookie-bar button { background: var(--white); color: var(--blue); border: none; padding: 5px 20px; font-weight: 700; border-radius: 20px; cursor: pointer; }

@media (max-width: 900px) {
    .grid-3, .split-layout, .contact-card { grid-template-columns: 1fr; }
    .split-layout.reverse { direction: ltr; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .btn-group { flex-direction: column; }
}