/* ========================================
   REACH — Global Styles
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: #FAFAFA;
}

a { color: #2874A6; text-decoration: none; }
a:hover { color: #1A5276; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: 'Cinzel', Georgia, serif; }

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1B2631;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; }
.top-bar-left span { margin-right: 20px; }
.top-bar-left .fa { margin-right: 5px; color: #5DADE2; }

/* ===== NAVBAR (base — same as hero on all pages) ===== */
.navbar {
    background: transparent;
    border-bottom: none;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.navbar.scrolled {
    background: #1B2631;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 14px rgba(0,0,0,0.2);
}
.navbar.scrolled .nav-menu li a {
    color: rgba(255,255,255,0.85);
    text-shadow: none;
}
.navbar.scrolled .nav-menu li a:hover,
.navbar.scrolled .nav-menu li a.active {
    color: #fff;
    border-bottom-color: #5DADE2;
}
.navbar.scrolled .mobile-toggle {
    color: #fff;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

/* --- Nav brand (image logo) --- */
.nav-brand { flex-shrink: 0; display: flex; align-items: center; }
.nav-brand a {
    display: block;
    text-decoration: none;
}
.nav-brand img {
    height: 95px;
    width: auto;
    display: block;
}

/* --- Nav menu --- */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}
.nav-menu li a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: border-color 0.3s, color 0.3s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    border-bottom-color: #fff;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}
/* --- Dropdown --- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s;
}
.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-top: 3px solid #2874A6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 2000;
    list-style: none;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #333 !important;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-shadow: none !important;
    transition: background 0.2s, padding-left 0.2s;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu li a:hover {
    background: #F4F7FA;
    padding-left: 26px;
    color: #2874A6 !important;
}

/* ===== BUTTONS ===== */
@keyframes shimmer {
    from { left: -100%; }
    to   { left: 140%; }
}
.btn {
    display: inline-block;
    padding: 13px 34px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: none;
}
.btn:hover::after {
    animation: shimmer 0.55s ease forwards;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary {
    background: #2874A6;
    color: #fff;
}
.btn-primary:hover {
    background: #1A5276;
    color: #fff;
    box-shadow: 0 4px 16px rgba(40,116,166,0.3);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 10px;
}
.btn-outline-white:hover {
    background: #fff;
    color: #2874A6;
}
.btn-white {
    background: #fff;
    color: #2874A6;
    font-weight: 700;
}
.btn-white:hover {
    background: #f0f0f0;
    color: #1A5276;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ===== SECTION HEADING ===== */
.section-heading {
    text-align: center;
    margin-bottom: 35px;
}
.section-heading h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 8px;
}
.section-heading p {
    font-size: 16px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}
.section-heading .accent-line {
    display: block;
    width: 50px;
    height: 3px;
    background: #2874A6;
    margin: 15px auto 0;
}

/* ===== PAGE HEADER (subpages — mini hero) ===== */
.page-header {
    padding: 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #1B2631;
}
.page-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('hero-bg.png') center 40%/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.03);
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,38,49,0.7) 0%, rgba(40,116,166,0.5) 100%);
    z-index: 2;
}
.page-header .container {
    position: relative;
    z-index: 3;
    padding: 120px 20px 50px;
}
.page-header h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
}
.breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

/* ===== HERO (homepage) ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero {
    color: #fff;
    position: relative;
    overflow: hidden;
    background: #1B2631;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('hero-bg.png') center 40%/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.03);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,38,49,0.6) 0%, rgba(40,116,166,0.45) 100%);
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
    padding: 160px 20px 120px;
    max-width: 1170px;
    text-align: center;
}
.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.7s ease both;
}
.hero .subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.7s 0.18s ease both;
}
.hero .btn {
    animation: fadeInUp 0.7s 0.36s ease both;
}

/* ===== IS THIS YOU ===== */
.is-this-you {
    padding: 40px 0;
    background: #F0F4F8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.is-this-you-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}
.is-this-you-left {
    flex: 0 0 320px;
}
.is-this-you-left h2 {
    font-size: 22px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 6px;
    line-height: 1.3;
}
.is-this-you-left p {
    color: #888;
    font-size: 13px;
}
.situations-list {
    flex: 1;
    columns: 2;
    column-gap: 30px;
}
.situation-item {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    break-inside: avoid;
    transition: color 0.2s, padding-left 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.situation-item:hover {
    color: #2874A6;
    padding-left: 4px;
}
.situation-item .fa {
    color: #2874A6;
    margin-right: 6px;
    font-size: 12px;
}

/* ===== SERVICES (homepage) ===== */
.services {
    padding: 50px 0;
    background: #fff;
}
.services-grid {
    max-width: 680px;
    margin: 0 auto 28px;
}
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    transition: padding-left 0.3s;
}
.service-item:first-child {
    border-top: 1px solid #eee;
}
.service-item:hover {
    padding-left: 8px;
}
.service-item-dash {
    flex: 0 0 auto;
    width: 22px;
    height: 2px;
    background: #2874A6;
    margin-top: 11px;
    transition: width 0.3s;
}
.service-item:hover .service-item-dash {
    width: 32px;
}
a.service-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.service-item:hover h3 {
    color: #2874A6;
}
.service-item-body {}
.service-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 3px;
}
.service-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
.services-more {
    text-align: center;
}

/* ===== APPROACH ===== */
.approach {
    padding: 50px 0;
    background: #F0F4F8;
}
.approach-row {
    display: flex;
    align-items: center;
    gap: 40px;
}
.approach-photo {
    flex: 0 0 45%;
}
.approach-photo img {
    display: block;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}
.approach-photo img:hover {
    transform: scale(1.02);
}
.approach-text {
    flex: 1;
}
.approach-text h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 12px;
}
.approach-text p {
    margin-bottom: 15px;
    color: #555;
}
.approach-text ul {
    list-style: none;
    margin-top: 15px;
}
.approach-text ul li {
    padding: 6px 0;
    color: #555;
    transition: padding-left 0.2s;
}
.approach-text ul li:hover {
    padding-left: 4px;
    color: #333;
}
.approach-text ul li .fa {
    color: #2874A6;
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

/* ===== FOUNDER SPOTLIGHT ===== */
.founder {
    padding: 70px 0;
    background: #fff;
}
.founder-row {
    display: flex;
    gap: 60px;
    align-items: center;
}
.founder-photo {
    flex: 0 0 440px;
    position: relative;
}
.founder-photo img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
.founder-photo::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -12px;
    right: 12px;
    bottom: -12px;
    border: 2px solid #2874A6;
    z-index: 0;
}
.founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #E8EDF2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.founder-text {
    flex: 1;
}
.founder-text .accent-line-left {
    display: block;
    width: 40px;
    height: 3px;
    background: #2874A6;
    margin-bottom: 20px;
}
.founder-text h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 20px;
    line-height: 1.25;
}
.founder-text p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
}
.founder-text .btn {
    margin-top: 10px;
}

/* ===== PROCESS ===== */
.process {
    padding: 50px 0;
    background: #F0F4F8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.process-steps {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 15px;
    position: relative;
}
.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #2874A6;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(40,116,166,0.35);
}
.process-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -17px;
    width: 34px;
    height: 2px;
    background: linear-gradient(to right, #2874A6, #ddd);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 60px 0;
    background: #F7F7F5;
}
.testimonials-row {
    display: flex;
    gap: 28px;
}
.testimonial {
    flex: 1;
    padding: 30px 28px;
    background: #fff;
    border: 1px solid #eee;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}
.testimonial p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial cite {
    display: block;
    font-size: 14px;
    color: #1B2631;
    font-style: normal;
    font-weight: 700;
}
.testimonial .cite-location {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, #2874A6 0%, #1A5276 100%);
    color: #fff;
    padding: 45px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-band h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}
.cta-band p {
    font-size: 15px;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.9);
    position: relative;
}

/* ===== DARK ACCENT BAND ===== */
.cta-band--dark {
    background: linear-gradient(135deg, #1B2631 0%, #2C3E50 100%);
}

/* ===== CONTACT ===== */
.contact {
    padding: 50px 0;
    background: #fff;
}
.contact-row {
    display: flex;
    gap: 40px;
}
.contact-form-wrap { flex: 1; }
.contact-info-wrap { flex: 0 0 340px; }
.contact-form-wrap h3,
.contact-info-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #ddd;
    background: #FAFAFA;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2874A6;
    box-shadow: 0 0 0 3px rgba(40,116,166,0.08);
}
.form-group textarea {
    resize: vertical;
    min-height: 90px;
}
.form-row {
    display: flex;
    gap: 18px;
}
.form-row .form-group { flex: 1; }
.submit-btn {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-status {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 14px;
    display: none;
}
.form-status.success {
    background: #d5f5e3;
    color: #1e8449;
    display: block;
}
.form-status.error {
    background: #fadbd8;
    color: #922b21;
    display: block;
}
.info-block { margin-bottom: 22px; }
.info-block .fa {
    color: #2874A6;
    font-size: 18px;
    margin-right: 10px;
    width: 22px;
    text-align: center;
}
.info-block h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 5px;
}
.info-block p {
    color: #666;
    font-size: 14px;
    margin-left: 32px;
}

/* ===== FOOTER ===== */
.footer {
    background: #111820;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
.footer-main {
    padding: 50px 0 35px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}
.footer-col h4 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.footer-col p {
    margin-bottom: 8px;
    line-height: 1.7;
}
.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #5DADE2;
}
.footer-brand {
    font-size: 13px;
    line-height: 1.8;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 14px;
    display: block;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 14px;
    transition: padding-left 0.2s, color 0.2s;
}
.footer-links a:hover {
    padding-left: 4px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-contact-item .fa {
    color: #5DADE2;
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a {
    color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===== ABOUT PAGE ===== */
.about-intro { padding: 70px 0; background: #fff; }
.about-row { display: flex; gap: 50px; align-items: flex-start; }
.about-photo { flex: 0 0 380px; }
.about-photo img {
    display: block;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}
.about-photo img:hover { transform: scale(1.02); }
.about-photo .photo-caption {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}
.about-bio { flex: 1; }
.about-bio h2 {
    font-size: 30px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 5px;
}
.about-bio .role {
    font-size: 16px;
    color: #2874A6;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-bio p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

/* Education Block */
.edu-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 25px;
    padding: 22px 24px;
    background: #F4F7FA;
    border-left: 4px solid #2874A6;
}
.edu-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #2874A6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edu-icon .fa {
    font-size: 20px;
    color: #fff;
}
.edu-info h3 {
    font-size: 16px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 2px;
}
.edu-degree {
    font-size: 14px;
    color: #555;
    font-weight: 700;
    margin-bottom: 2px;
}
.edu-majors {
    font-size: 13px;
    color: #2874A6;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* What Meghan Does */
.what-does { padding: 70px 0; background: #FAFAFA; }
.does-grid { display: flex; flex-wrap: wrap; gap: 30px; }
.does-item {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
}
.does-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.does-item .fa {
    font-size: 28px;
    color: #2874A6;
    flex-shrink: 0;
    width: 35px;
    text-align: center;
    margin-top: 3px;
}
.does-item h3 { font-size: 17px; font-weight: 700; color: #1B2631; margin-bottom: 8px; }
.does-item p { font-size: 14px; color: #666; line-height: 1.7; }

/* Philosophy */
.philosophy { padding: 70px 0; background: #fff; }
.philosophy-row { display: flex; gap: 50px; align-items: center; }
.philosophy-text { flex: 1; }
.philosophy-text h2 { font-size: 28px; font-weight: 900; color: #1B2631; margin-bottom: 15px; }
.philosophy-text p { margin-bottom: 15px; color: #555; line-height: 1.8; }
.philosophy-text blockquote {
    border-left: 4px solid #2874A6;
    padding: 15px 20px;
    margin: 20px 0;
    background: #F4F8FB;
    font-style: italic;
    color: #555;
    font-size: 16px;
}
.philosophy-photo { flex: 0 0 400px; }
.philosophy-photo img {
    display: block;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}
.philosophy-photo img:hover { transform: scale(1.02); }

/* ===== SERVICES PAGE ===== */
.service-detail {
    padding: 55px 0;
    border-bottom: 1px solid #e8e8e8;
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail:nth-child(even) { background: #fff; }
.service-detail:nth-child(odd) { background: #FAFAFA; }
.detail-row { display: flex; gap: 45px; align-items: flex-start; }
.detail-number {
    flex: 0 0 60px;
    font-size: 48px;
    font-weight: 900;
    color: #D6E4F0;
    line-height: 1;
    text-align: right;
    padding-top: 2px;
}
.detail-content { flex: 1; }
.detail-content h2 { font-size: 24px; font-weight: 900; color: #1B2631; margin-bottom: 12px; }
.detail-content p { color: #555; line-height: 1.8; margin-bottom: 14px; }
.detail-content p:last-child { margin-bottom: 0; }
.detail-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1B2631;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 10px;
}
.detail-content ul { list-style: none; margin: 0; }
.detail-content ul li {
    padding: 5px 0;
    color: #555;
    font-size: 14px;
    transition: padding-left 0.2s;
}
.detail-content ul li:hover { padding-left: 4px; }
.detail-content ul li .fa {
    color: #2874A6;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}
.detail-sidebar {
    flex: 0 0 280px;
    background: #F0F4F8;
    border: 1px solid #e0e0e0;
    padding: 25px;
    transition: box-shadow 0.3s;
}
.detail-sidebar:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.detail-sidebar h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1B2631;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.detail-sidebar p { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 15px; }
.detail-sidebar .btn { display: block; text-align: center; }

/* ===== SINGLE SERVICE PAGE ===== */
.service-hero {
    padding: 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #1B2631;
}
.service-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('hero-bg.png') center 40%/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.03);
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,38,49,0.7) 0%, rgba(40,116,166,0.5) 100%);
    z-index: 2;
}
.service-hero .container {
    position: relative;
    z-index: 3;
    padding: 120px 20px 50px;
}
.service-hero .service-number {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5DADE2;
    margin-bottom: 10px;
}
.service-hero h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 8px;
}

.service-body {
    padding: 60px 0;
    background: #fff;
}
.service-body-row {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.service-main {
    flex: 1;
}
.service-main h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 15px;
    margin-top: 35px;
}
.service-main h2:first-child {
    margin-top: 0;
}
.service-main p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}
.service-main ul {
    list-style: none;
    margin: 15px 0 20px;
}
.service-main ul li {
    padding: 7px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    transition: padding-left 0.2s;
}
.service-main ul li:hover {
    padding-left: 4px;
    color: #333;
}
.service-main ul li .fa {
    color: #2874A6;
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.service-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 90px;
}
.sidebar-card {
    background: #F4F7FA;
    border: 1px solid #e4e8ec;
    padding: 28px 24px;
    margin-bottom: 20px;
}
.sidebar-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 12px;
}
.sidebar-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
.sidebar-card .btn {
    display: block;
    text-align: center;
    width: 100%;
}
.sidebar-nav {
    list-style: none;
}
.sidebar-nav li {
    border-bottom: 1px solid #e4e8ec;
}
.sidebar-nav li:first-child {
    border-top: 1px solid #e4e8ec;
}
.sidebar-nav li a {
    display: block;
    padding: 12px 16px;
    color: #555;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s, padding-left 0.2s, color 0.2s;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: #F4F7FA;
    padding-left: 22px;
    color: #2874A6;
}

@media (max-width: 768px) {
    .service-body-row {
        flex-direction: column;
        gap: 30px;
    }
    .service-sidebar {
        flex: 1 1 auto;
        position: static;
    }
    .service-hero h1 { font-size: 28px; }
}

/* ===== FAQ PAGE ===== */
.faq { padding: 70px 0; background: #fff; }
.faq-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #FAFAFA;
    border: 1px solid #eee;
    margin-bottom: 10px;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.faq-question {
    display: block;
    width: 100%;
    text-align: left;
    padding: 18px 50px 18px 20px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: #1B2631;
    background: #FAFAFA;
    border: none;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
    transition: background 0.2s;
}
.faq-question:hover { background: #f0f4f8; }
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #2874A6;
    transition: transform 0.3s;
}
.faq-question.open::after {
    content: '\2212';
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.faq-answer.open { display: block; }

/* ===== ARTICLE (blog posts) ===== */
.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 20px;
}
.article-back {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #2874A6;
}
.article-back:hover {
    color: #1A5276;
}
.article-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 25px;
}
.article-body h2 {
    font-size: 22px;
    color: #1B2631;
    margin: 35px 0 12px;
}
.article-body p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
}
.article-body ul,
.article-body ol {
    margin: 15px 0 20px 20px;
    color: #555;
    line-height: 1.85;
}
.article-body li {
    margin-bottom: 8px;
}
.article-body strong {
    color: #1B2631;
}
.article-body a {
    color: #2874A6;
    font-weight: 700;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    padding: 50px 0;
    background: #F0F4F8;
    border-top: 1px solid #e0e0e0;
}
.seo-content-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}
.seo-col h2 {
    font-size: 22px;
    font-weight: 900;
    color: #1B2631;
    margin-bottom: 15px;
}
.seo-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 10px;
    margin-top: 20px;
}
.seo-col h3:first-child {
    margin-top: 0;
}
.seo-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
}
.seo-col p a {
    color: #2874A6;
    font-weight: 700;
}
.seo-areas {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}
.seo-areas li {
    padding: 4px 0;
    font-size: 13px;
}
.seo-areas a {
    color: #555;
    transition: color 0.2s;
}
.seo-areas a:hover {
    color: #2874A6;
}
@media (max-width: 768px) {
    .seo-content-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .seo-areas { columns: 1; }
}

/* ===== BLOG ===== */
.blog {
    padding: 60px 0;
    background: #fff;
}
.blog-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: #FAFAFA;
    border: 1px solid #eee;
    padding: 28px 24px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}
.blog-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2874A6;
    background: rgba(40,116,166,0.08);
    padding: 4px 10px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.blog-card-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: block;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1B2631;
    margin-bottom: 12px;
    line-height: 1.35;
}
.blog-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card-link {
    font-size: 14px;
    font-weight: 700;
    color: #2874A6;
    text-decoration: none;
    transition: padding-left 0.2s;
}
.blog-card-link:hover {
    padding-left: 4px;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
a.reveal {
    pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 3px;
        text-align: center;
    }
    .top-bar-right { display: none; }
    .mobile-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        border-bottom: 2px solid #2874A6;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav-menu.open { display: flex; }
    .nav-menu li a {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        color: #333 !important;
        text-shadow: none !important;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: #f7f7f7;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding-left: 36px;
        font-size: 13px;
    }
    .navbar .container,
    .navbar--hero .container {
        position: relative;
    }

    .hero .container { padding: 100px 20px 70px; }
    .hero h1 { font-size: 30px; }
    .hero .subtitle { font-size: 15px; }
    .btn-outline-white { margin-left: 0; margin-top: 10px; }

    .page-header { padding: 40px 0; }
    .page-header h1 { font-size: 26px; }

    .is-this-you-inner { flex-direction: column; gap: 20px; }
    .is-this-you-left { flex: 1 1 auto; }
    .situations-list { columns: 1; }

    .founder-row { flex-direction: column; gap: 30px; }
    .founder-photo { flex: 1 1 auto; max-width: 360px; }
    .founder-photo::before { display: none; }

    .approach-row { flex-direction: column; gap: 25px; }
    .approach-photo { flex: 1 1 auto; }

    .process-steps { flex-direction: column; gap: 20px; }
    .process-step:not(:last-child)::after { display: none; }

    .testimonials-row { flex-direction: column; gap: 16px; }

    .contact-row { flex-direction: column; gap: 30px; }
    .contact-info-wrap { flex: 1 1 auto; }
    .form-row { flex-direction: column; gap: 0; }

    .about-row { flex-direction: column; gap: 25px; }
    .about-photo { flex: 1 1 auto; }
    .does-grid { flex-direction: column; }
    .does-item { flex: 1 1 100%; }
    .philosophy-row { flex-direction: column-reverse; gap: 25px; }
    .philosophy-photo { flex: 1 1 auto; }

    .detail-row { flex-direction: column; gap: 15px; }
    .detail-number { flex: 1 1 auto; text-align: left; font-size: 36px; }
    .detail-sidebar { flex: 1 1 auto; }

    .faq { padding: 45px 0; }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-right { text-align: center; }
    .footer-nav { justify-content: center; }
}
