/* Palette: Horizon Blue, Sand Beige, White */
:root {
    --blue: #1565C0;
    --dark-blue: #0D47A1;
    --beige: #F5F5DC;
    --text: #333333;
    --white: #FFFFFF;
    --grey: #FAFAFA;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--grey);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 300;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 4px; }

/* Header */
.vision-header { background: var(--white); padding: 25px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.03); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; letter-spacing: 2px; color: var(--text); }
.blue { color: var(--blue); font-weight: 400; }

.vision-nav a { margin-left: 30px; font-size: 0.9rem; text-transform: uppercase; color: #555; font-weight: 400; }
.vision-nav a:hover, .vision-nav a.active { color: var(--blue); }

.btn-vision { background: var(--blue); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; font-weight: 600; font-size: 0.85rem; box-shadow: 0 4px 10px rgba(21, 101, 192, 0.2); }
.btn-vision:hover { background: var(--dark-blue); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; }
.mobile-toggle span { width: 25px; height: 1px; background: var(--text); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--text); }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; margin: 15px 0; color: var(--text); }

@media (max-width: 900px) {
    .vision-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-vision { height: 85vh; background-size: cover; background-position: center; position: relative; }
.light-overlay { width: 100%; height: 100%; background: rgba(255, 255, 255, 0.7); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 800px; padding: 20px; }
.sub-head { color: var(--blue); font-weight: 600; letter-spacing: 3px; font-size: 0.8rem; display: block; margin-bottom: 20px; text-transform: uppercase; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; color: var(--text); }
.hero-content p { font-size: 1.1rem; color: #555; margin-bottom: 40px; font-weight: 300; }

.action-buttons { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--blue); color: var(--white); padding: 15px 35px; border-radius: 4px; font-weight: 600; }
.btn-secondary { background: transparent; border: 1px solid var(--text); color: var(--text); padding: 14px 35px; border-radius: 4px; font-weight: 600; }
.btn-secondary:hover { background: var(--text); color: var(--white); }

/* Services Grid */
.section-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text); margin-bottom: 15px; }
.horizon-line { width: 80px; height: 1px; background: var(--blue); margin: 0 auto; }
.horizon-line.left { margin: 20px 0; }
.text-center { text-align: center; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.vision-card { background: var(--white); padding: 40px 30px; text-align: center; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); transition: 0.3s; border-bottom: 3px solid transparent; }
.vision-card:hover { transform: translateY(-10px); border-bottom-color: var(--blue); }
.icon { font-size: 2.5rem; margin-bottom: 20px; }
.vision-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 15px; color: var(--blue); }
.vision-card p { font-size: 0.9rem; color: #666; }

/* Services Detail Layout */
.services-layout { display: grid; grid-template-columns: 1fr 2.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.sidebar h3 { font-family: var(--font-heading); margin-bottom: 20px; }
.sidebar ul { list-style: none; padding: 0; }
.sidebar li { padding: 15px 0; border-bottom: 1px solid #eee; color: #666; cursor: pointer; transition: 0.3s; }
.sidebar li.active, .sidebar li:hover { color: var(--blue); font-weight: 600; padding-left: 10px; }
.content h1 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text); }
.service-block { margin-top: 40px; }
.service-block h3 { color: var(--blue); font-family: var(--font-heading); margin-bottom: 10px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.leader-card { background: var(--white); padding: 30px; text-align: center; border-radius: 8px; border: 1px solid #eee; }
.leader-card.highlight { border-color: var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.photo { width: 100px; height: 100px; background: #ddd; border-radius: 50%; margin: 0 auto 20px; background-image: linear-gradient(45deg, #eee, #ccc); }
.leader-card h3 { font-family: var(--font-heading); margin-bottom: 5px; font-size: 1.1rem; }
.role { color: var(--blue); font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 15px; }

/* Contact */
.contact-block { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 8px; }
.contact-text h2 { font-family: var(--font-heading); margin-bottom: 20px; }
.details { margin-top: 30px; }
.details p { margin-bottom: 10px; color: #555; }

.clean-form .form-grp { margin-bottom: 20px; }
.clean-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 5px; color: #444; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); background: var(--grey); }
.clean-form input:focus, .clean-form textarea:focus { border-color: var(--blue); background: var(--white); outline: none; }
.submit-btn { width: 100%; background: var(--blue); color: var(--white); border: none; padding: 15px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: var(--dark-blue); }

/* Legal Doc */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 8px; }
.legal-content h1 { font-family: var(--font-heading); }
.legal-content h3 { color: var(--blue); margin-top: 30px; }

/* Footer */
.vision-footer { background: var(--white); border-top: 1px solid #eee; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 30px; margin-bottom: 20px; }
.f-logo h4 { font-family: var(--font-body); letter-spacing: 2px; color: var(--text); }
.f-links a { color: #777; margin-left: 20px; }
.f-links a:hover { color: var(--blue); }
.copyright { text-align: center; font-size: 0.8rem; color: #999; }

/* Cookie */
.cookie-simple { position: fixed; bottom: 30px; right: 30px; background: var(--white); padding: 20px 30px; box-shadow: 0 5px 30px rgba(0,0,0,0.1); border-radius: 8px; display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-simple.active { display: flex; animation: slideUp 0.5s; }
.cookie-simple button { background: var(--blue); color: var(--white); border: none; padding: 8px 20px; border-radius: 4px; font-weight: 600; cursor: pointer; }

@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
    .card-grid, .services-layout, .contact-block, .team-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .cta-row { flex-direction: column; }
}