/* Palette: Teal, White, Light Grey */
:root {
    --teal: #00897B;
    --dark-teal: #004D40;
    --white: #FFFFFF;
    --light-grey: #ECEFF1;
    --text: #37474F;
    --border: #CFD8DC;
    
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    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; }

/* Header */
.bridge-header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.teal { color: var(--teal); }

.peace-nav a { margin-left: 20px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: #78909C; }
.peace-nav a:hover, .peace-nav a.active { color: var(--teal); }

.btn-teal { background: var(--teal); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; font-weight: 600; }
.btn-teal:hover { background: var(--dark-teal); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--teal); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--teal); z-index: 2000; display: flex; flex-direction: column; padding: 30px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); background: none; border: none; font-size: 2rem; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { color: var(--white); font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.2); }

@media (max-width: 900px) {
    .peace-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-bridge { height: 80vh; background-size: cover; background-position: center; position: relative; }
.calm-overlay { width: 100%; height: 100%; background: rgba(0, 77, 64, 0.6); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { color: var(--white); max-width: 800px; padding: 20px; }
.sub-head { display: block; font-weight: 600; letter-spacing: 2px; margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #E0F2F1; font-weight: 300; }

.btn-row { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--teal); color: var(--white); padding: 15px 35px; border-radius: 4px; font-weight: 600; }
.btn-secondary { background: var(--white); color: var(--teal); padding: 15px 35px; border-radius: 4px; font-weight: 600; }

/* Benefits */
.section-title h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text); }
.teal-dot { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; margin: 15px auto 0; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.benefit-card { background: var(--light-grey); padding: 40px 25px; text-align: center; border-radius: 8px; transition: 0.3s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); background: var(--white); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.benefit-card h3 { color: var(--teal); font-family: var(--font-heading); margin-bottom: 10px; }

/* Stats */
.stat-bar { background: var(--teal); color: var(--white); padding: 50px 0; margin-top: 50px; }
.stat-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-heading); font-size: 3rem; font-weight: 700; }
.stat-item span { font-size: 0.9rem; opacity: 0.9; text-transform: uppercase; }

/* Services Detail */
.services-layout { max-width: 900px; margin: 0 auto; }
.intro-text { text-align: center; margin-bottom: 50px; }
.teal-line { width: 60px; height: 3px; background: var(--teal); margin: 15px auto; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.s-item { background: var(--white); border: 1px solid var(--border); padding: 30px; border-radius: 8px; border-left: 5px solid var(--teal); }
.s-item h3 { color: var(--text); font-family: var(--font-heading); margin-bottom: 10px; font-size: 1.1rem; }

/* Process */
.process-container { max-width: 900px; margin: 0 auto; }
.steps-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.step-card { position: relative; padding-left: 60px; }
.step-num { position: absolute; left: 0; top: 0; width: 45px; height: 45px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); font-size: 1.2rem; }
.step-card h3 { color: var(--text); margin-bottom: 10px; font-family: var(--font-heading); }

/* privacy */
.privacy-box { max-width: 800px; margin: 0 auto; }
.privacy-box h2 { text-align: center; font-family: var(--font-heading); color: var(--text); }
.privacy-box .teal-dot { margin-bottom: 40px; }
.acc-item { margin-bottom: 15px; border-bottom: 1px solid var(--border); }
.acc-btn { width: 100%; text-align: left; background: none; border: none; padding: 15px 0; font-size: 1.1rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; font-family: var(--font-heading); }
.acc-btn::after { content: '+'; color: var(--teal); font-size: 1.5rem; }
.acc-item.active .acc-btn::after { content: '-'; }
.acc-content { display: none; padding-bottom: 15px; color: #555; }
.acc-item.active .acc-content { display: block; }

/* Contact */
.contact-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--light-grey); padding: 60px; border-radius: 8px; }
.contact-info h2 { font-family: var(--font-heading); color: var(--teal); margin-bottom: 20px; }
.info-list p { margin-bottom: 10px; font-weight: 600; color: #555; }

.clean-form .form-grp { margin-bottom: 20px; }
.clean-form label { display: block; font-weight: 600; margin-bottom: 5px; color: #555; font-size: 0.9rem; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-body); background: var(--white); }
.btn-submit { width: 100%; background: var(--teal); color: var(--white); border: none; padding: 15px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--dark-teal); }

/* Legal Doc */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--light-grey); padding: 60px; border-radius: 8px; }
.legal-box h1 { font-family: var(--font-heading); color: var(--text); }
.teal-line.left { margin: 20px 0; }
.legal-box h3 { color: var(--teal); margin-top: 30px; font-family: var(--font-heading); }

/* Footer */
.bridge-footer { background: #263238; color: #B0BEC5; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #37474F; padding-bottom: 30px; margin-bottom: 20px; }
.f-info h4 { color: var(--white); font-family: var(--font-heading); letter-spacing: 1px; }
.f-links a { color: #B0BEC5; margin-left: 20px; }
.f-links a:hover { color: var(--teal); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-calm { position: fixed; bottom: 20px; left: 20px; background: var(--white); border-top: 4px solid var(--teal); padding: 20px 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; border-radius: 4px; }
.cookie-calm.active { display: flex; }
.cookie-calm button { background: var(--teal); color: var(--white); border: none; padding: 8px 20px; font-weight: 600; cursor: pointer; border-radius: 20px; }

@media (max-width: 900px) {
    .grid-3, .contact-card, .stat-flex, .service-list, .steps-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .btn-row { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}