/* --- Variables --- */
:root {
    --color-orange: #FF9F1C;    /* Friendly Orange */
    --color-orange-dark: #e68a00;
    --color-blue: #2EC4B6;      /* Trustworthy Teal/Blue */
    --color-blue-dark: #208f85;
    --color-white: #ffffff;
    --color-bg: #f9fbfc;        /* Very light blue-grey */
    --color-text: #2d3436;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --radius: 15px;
    --shadow: 0 10px 25px rgba(46, 196, 182, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Top Bar --- */
.welcome-bar { background-color: var(--color-blue); color: var(--color-white); padding: 8px 0; font-size: 0.9rem; text-align: center; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; width: 90%; }
.help-link { font-weight: bold; text-decoration: underline; }

/* --- Header --- */
.service-header {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-text); display: flex; align-items: center; gap: 10px; }
.icon-passport { width: 30px; height: 30px; background-color: var(--color-orange); border-radius: 5px; position: relative; }
.icon-passport::after { content: ''; width: 12px; height: 12px; background: #fff; border-radius: 50%; position: absolute; top: 9px; left: 9px; }
.orange-text { color: var(--color-orange); }

.friendly-nav ul { display: flex; gap: 25px; align-items: center; }
.friendly-nav a { font-weight: 600; color: var(--color-text); font-size: 0.95rem; }
.friendly-nav a:hover, .friendly-nav a.active { color: var(--color-blue); }

.btn-orange { background-color: var(--color-orange); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3); }
.btn-orange:hover { background-color: var(--color-orange-dark); transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: row; gap: 4px; }
.dot { width: 6px; height: 6px; background-color: var(--color-blue); border-radius: 50%; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 260px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-orange); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.1rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; color: var(--color-text); font-weight: 600; }

/* --- Hero --- */
.hero { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.85); z-index: -1; }

.hero-card { background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 700px; text-align: center; }
.hero-card h1 { font-family: var(--font-heading); font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: var(--color-text); }
.blue-text { color: var(--color-blue); }
.hero-card p { font-size: 1.2rem; color: #666; margin-bottom: 30px; }

.quick-check { background: var(--color-bg); padding: 20px; border-radius: var(--radius); border: 2px solid #eef; }
.quick-check h3 { margin-bottom: 15px; color: var(--color-blue); }
.check-row { display: flex; gap: 10px; flex-wrap: wrap; }
.check-row select { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); }
.btn-check { background: var(--color-blue); color: #fff; border: none; padding: 10px 20px; border-radius: 8px; font-weight: bold; cursor: pointer; flex: 0 0 auto; }
.btn-check:hover { background: var(--color-blue-dark); }

/* --- Grid --- */
.section-padding { padding: 80px 0; }
.section-head, .page-head { text-align: center; margin-bottom: 60px; }
.section-head h2, .page-head h1 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-text); margin-bottom: 10px; }
.section-head p { color: #666; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-item { background: var(--color-white); padding: 30px; border-radius: var(--radius); text-align: center; transition: 0.3s; border: 1px solid #eee; }
.service-item:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--color-orange); }
.icon-circle { font-size: 3rem; margin-bottom: 20px; }
.service-item h3 { font-family: var(--font-heading); margin-bottom: 15px; color: var(--color-blue); }
.service-item p { color: #666; margin-bottom: 25px; font-size: 0.95rem; }
.link-simple { color: var(--color-orange); font-weight: bold; text-decoration: underline; }

/* --- Steps Banner --- */
.steps-banner { background-color: var(--color-blue); color: var(--color-white); padding: 60px 0; margin-top: 50px; text-align: center; }
.steps-banner h2 { font-family: var(--font-heading); margin-bottom: 40px; font-size: 2rem; }
.steps-flex { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.step { background: rgba(255,255,255,0.1); padding: 20px; border-radius: var(--radius); width: 200px; }
.step-num { font-size: 2.5rem; font-weight: bold; display: block; margin-bottom: 10px; opacity: 0.5; font-family: var(--font-heading); }
.step h4 { font-size: 1.2rem; margin-bottom: 5px; }
.step-arrow { font-size: 2rem; opacity: 0.5; }

/* --- About & Split --- */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-side h2 { font-family: var(--font-heading); color: var(--color-blue); margin-bottom: 20px; font-size: 1.8rem; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; font-weight: 600; color: var(--color-text); }
.check-list li::before { content: '✔'; color: var(--color-orange); position: absolute; left: 0; }
.img-side { position: relative; }
.img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--color-orange); color: #fff; padding: 15px 25px; border-radius: var(--radius); font-weight: bold; box-shadow: var(--shadow); }

/* --- Stories --- */
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.story-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; margin-top: 30px; }
.avatar { width: 60px; height: 60px; border-radius: 50%; color: #fff; font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; justify-content: center; position: absolute; top: -30px; left: 20px; border: 4px solid var(--color-white); }
.avatar.blue { background-color: var(--color-blue); }
.avatar.orange { background-color: var(--color-orange); }
.story-card p { margin-top: 20px; font-style: italic; color: #555; margin-bottom: 15px; }
.person strong { display: block; color: var(--color-text); }
.person span { font-size: 0.85rem; color: #888; }

/* --- Contact & Forms --- */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; background: var(--color-white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-info h3 { font-family: var(--font-heading); color: var(--color-blue); margin-bottom: 20px; }
.c-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 1.1rem; }
.hours { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; color: #666; font-weight: bold; }

.friendly-form .form-group { margin-bottom: 20px; }
.friendly-form label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--color-text); }
.friendly-form input, .friendly-form select, .friendly-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); background: #fdfdfd; }
.friendly-form input:focus { border-color: var(--color-blue); outline: none; }
.btn-blue { background: var(--color-blue); color: #fff; border: none; width: 100%; padding: 12px; border-radius: 8px; font-weight: bold; cursor: pointer; }
.btn-blue:hover { background: var(--color-blue-dark); }

/* --- Legal --- */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: var(--radius); }
.legal-content h1 { font-family: var(--font-heading); color: var(--color-blue); }
.meta { color: #888; font-style: italic; margin-bottom: 20px; }
.orange-line { height: 3px; background: var(--color-orange); width: 60px; margin: 20px 0; border: none; }
.legal-content h3 { color: var(--color-text); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.service-footer { background-color: var(--color-white); padding: 50px 0; margin-top: auto; border-top: 1px solid #eee; text-align: center; }
.f-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: bold; margin-bottom: 15px; }
.f-links a { margin: 0 10px; color: #666; font-weight: 600; }
.f-links a:hover { color: var(--color-orange); }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #999; }

@media (max-width: 992px) {
    .friendly-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .check-row { flex-direction: column; }
    .info-split, .contact-box { grid-template-columns: 1fr; }
    .steps-flex { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0; }
}