/* ============================================================
   ZILO — Subpage Styles (About, Services)
   Extends styles.css
   ============================================================ */

/* No custom cursor on subpages */
body { cursor: auto; }
a, button { cursor: pointer; }

/* ---------- ABOUT PAGE THEME (blue/purple) ---------- */
.about-hero-bg {
    background:
        radial-gradient(ellipse at 25% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(200, 80, 192, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
}
.about-hero { padding-bottom: 48px; min-height: 70vh; display: flex; flex-direction: column; justify-content: center; }
.about-hero-visual {
    max-width: var(--container-width); margin: 40px auto 0; padding: 0 var(--container-padding);
    position: relative; z-index: 1;
}
.about-hero-visual img {
    width: 100%; height: auto; border-radius: var(--radius-xl);
    border: none; filter: brightness(2.35);
}
.about-illustration { margin-top: 32px; margin-bottom: 16px; }
.about-illustration img {
    width: 100%; height: auto; border-radius: var(--radius-lg);
    border: none; filter: brightness(2.35);
}
.about-illustration--center { max-width: 900px; margin-left: auto; margin-right: auto; }
.about-story { background: var(--bg-deep); }
.about-stats-section { background: var(--bg-deep); border-top: 1px solid var(--border); }

/* Value card icons */
.value-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2); margin-bottom: 20px;
}
.value-icon svg { width: 22px; height: 22px; color: var(--accent-cyan); }
.value-icon--violet { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.2); }
.value-icon--violet svg { color: var(--accent-violet); }
.value-icon--magenta { background: rgba(200, 80, 192, 0.1); border-color: rgba(200, 80, 192, 0.2); }
.value-icon--magenta svg { color: #c850c0; }
.value-icon--emerald { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.value-icon--emerald svg { color: var(--accent-emerald); }

/* ---------- PAGE HERO ---------- */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-deep);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 700px;
}
.page-hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--fg-muted);
    max-width: 600px;
}

/* Service hero — title + CTA side by side */
.service-hero-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
}
.service-hero-header .page-hero-title { flex: 1; min-width: 300px; }
.service-hero-cta {
    display: flex; flex-direction: column; gap: 12px;
    padding-top: 8px; flex-shrink: 0;
}
.service-hero-cta .btn { white-space: nowrap; }
.service-hero-cta-note {
    font-size: 13px; color: var(--fg-dim); text-align: center;
}
@media (max-width: 768px) {
    .service-hero-header { flex-direction: column; gap: 20px; }
    .service-hero-cta { width: 100%; }
    .service-hero-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- CONTENT GRID ---------- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.body-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--fg-muted);
    margin-bottom: 24px;
}

/* ---------- VALUES ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.value-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
}
.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.value-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 28px;
}
.value-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fg);
}
.value-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fg-muted);
}

/* ---------- STATS ROW ---------- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-block {
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

/* ---------- SERVICE DETAIL GRID ---------- */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-detail-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all var(--duration-slow) var(--ease-out);
}
.service-detail-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.service-detail-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 24px;
}
.service-detail-icon svg { width: 22px; height: 22px; color: var(--accent-cyan); }
.service-detail-icon--violet { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.2); }
.service-detail-icon--violet svg { color: var(--accent-violet); }
.service-detail-icon--amber { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.2); }
.service-detail-icon--amber svg { color: var(--accent-amber); }
.service-detail-icon--emerald { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.service-detail-icon--emerald svg { color: var(--accent-emerald); }

.service-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--fg);
}
.service-detail-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fg-muted);
    margin-bottom: 20px;
}
.service-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-detail-list li {
    font-size: 14px;
    color: var(--fg-dim);
    padding-left: 16px;
    position: relative;
}
.service-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    opacity: 0.4;
}

/* ---------- PROCESS GRID ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-step {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    transition: all var(--duration-slow) var(--ease-out);
}
.process-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.process-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-cyan);
    opacity: 0.2;
    margin-bottom: 16px;
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--fg);
}
.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--fg-muted);
}

/* ---------- TECH TAGS ---------- */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tech-tag {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--fg-muted);
    background: var(--bg-card);
    transition: all var(--duration-normal) var(--ease-out);
}
.tech-tag:hover {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--fg);
}

/* ---------- WHY LIST ---------- */
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fg);
}
.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fg-muted);
}

/* ---------- PARALLAX BACKGROUND SECTIONS ---------- */
.parallax-bg-section {
    position: relative;
    border-top: none;
}
.parallax-bg-section > .parallax-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
@media (prefers-reduced-motion: reduce) {
    .parallax-bg-section > .parallax-bg { background-attachment: scroll; }
}
/* Dark theme images */
.parallax-bg--1 { background-image: url('../images/bg/dark-1.jpg'); }
.parallax-bg--2 { background-image: url('../images/bg/dark-2.jpg'); }
/* Light theme — swap to light-appropriate images */
[data-theme="light"] .parallax-bg--1 { background-image: url('../images/bg/light-1.jpg'); }
[data-theme="light"] .parallax-bg--2 { background-image: url('../images/bg/light-2.jpg'); }

.parallax-bg-section > .parallax-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, var(--bg-deep) 0%, rgba(5,5,7,0.5) 8%, rgba(5,5,7,0.5) 92%, var(--bg-deep) 100%);
}
[data-theme="light"] .parallax-bg-section > .parallax-bg-overlay {
    background:
        linear-gradient(180deg, var(--bg-deep) 0%, rgba(255,255,255,0.55) 8%, rgba(255,255,255,0.55) 92%, var(--bg-deep) 100%);
}
.parallax-bg-section > .container {
    position: relative; z-index: 2;
}

/* ---------- SERVICE PAGE VISUALS ---------- */
.service-hero { padding-bottom: 48px; }
.service-hero-visual {
    max-width: var(--container-width); margin: 40px auto 0; padding: 0 var(--container-padding);
    position: relative; z-index: 1;
}
.service-hero-visual img {
    width: 100%; height: auto; border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    filter: brightness(2.35);
}
.service-visual {
    margin-bottom: 40px;
}
.service-visual img {
    width: 100%; height: auto; border-radius: var(--radius-lg);
    border: none;
    filter: brightness(2.35);
}

/* Light mode: invert dark SVGs for light backgrounds */
[data-theme="light"] .service-hero-visual img,
[data-theme="light"] .service-visual img,
[data-theme="light"] .about-illustration img,
[data-theme="light"] .about-hero-visual img {
    filter: invert(1) hue-rotate(180deg) saturate(2.0) brightness(1.0);
    border-color: rgba(99, 102, 241, 0.08);
}
@media (max-width: 768px) {
    .service-hero-visual { margin-top: 24px; }
}

/* ---------- LANDING PAGES ---------- */
.landing-hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    padding: 120px 0 80px; background: var(--bg-deep); overflow: hidden;
    display: flex; align-items: center;
}
.landing-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
}
.landing-title {
    font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px);
    font-weight: 700; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
}
.landing-text { font-size: 16px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 16px; }
.landing-points { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.landing-point {
    display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--fg-muted);
}
.landing-point svg { width: 20px; height: 20px; color: var(--accent-emerald); flex-shrink: 0; margin-top: 2px; }
.landing-form-wrap {
    padding: 40px; border-radius: var(--radius-xl);
    border: 1px solid var(--border); background: var(--bg-card);
    position: sticky; top: 100px;
}
.landing-form-wrap h3 {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 8px;
}
.landing-form-wrap > p { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
[data-theme="light"] .landing-form-wrap {
    background: #fff; border-color: rgba(99,102,241,0.1); box-shadow: 0 4px 24px rgba(99,102,241,0.06);
}
@media (max-width: 1024px) { .landing-grid { grid-template-columns: 1fr; } .landing-form-wrap { position: static; } }

/* ---------- BLOG LISTING ---------- */
.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
    display: flex; flex-direction: column;
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    background: var(--bg-card); overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
    text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-violet); margin-bottom: 10px; }
.blog-card-title {
    font-family: var(--font-heading); font-size: 18px; font-weight: 600;
    line-height: 1.35; margin-bottom: 12px; color: var(--fg);
}
.blog-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--fg-muted); flex: 1; margin-bottom: 16px; }
.blog-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--accent-violet);
    transition: gap var(--duration-normal) var(--ease-out);
}
.blog-card-link svg { width: 16px; height: 16px; }
.blog-card:hover .blog-card-link { gap: 10px; }
[data-theme="light"] .blog-card { background: #fff; box-shadow: 0 2px 12px rgba(99,102,241,0.04); }

/* ---------- BLOG SINGLE ---------- */
.blog-hero { padding-bottom: 32px; }
.blog-hero-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.blog-hero-top .section-label { margin-bottom: 0; }
.btn-sm { padding: 8px 18px; font-size: 13px; gap: 6px; }
.btn-sm svg { width: 14px; height: 14px; }
.blog-date { display: block; font-size: 13px; font-weight: 600; color: var(--accent-violet); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.blog-featured-image { margin-bottom: 0; }
.blog-featured-image img {
    width: 100%; max-height: 500px; object-fit: cover;
    border-radius: var(--radius-xl); border: 1px solid var(--border);
}
.blog-content { padding: var(--section-padding) 0; }
.blog-body {
    max-width: 760px; margin: 0 auto;
    font-size: 17px; line-height: 1.8; color: var(--fg-muted);
}
.blog-body h2, .blog-body h3, .blog-body h4 {
    font-family: var(--font-heading); color: var(--fg);
    margin: 40px 0 16px; line-height: 1.3;
}
.blog-body h2 { font-size: 28px; font-weight: 700; }
.blog-body h3 { font-size: 22px; font-weight: 600; }
.blog-body h4 { font-size: 18px; font-weight: 600; }
.blog-body p { margin-bottom: 20px; }
.blog-body ul, .blog-body ol { margin: 0 0 20px 24px; }
.blog-body li { margin-bottom: 8px; }
.blog-body a { color: var(--accent-violet); text-decoration: underline; text-underline-offset: 3px; }
.blog-body a:hover { color: var(--accent-cyan); }
.blog-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 24px 0; }
.blog-body blockquote {
    border-left: 3px solid var(--accent-violet); padding: 16px 24px; margin: 24px 0;
    background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--fg);
}
.blog-body strong { color: var(--fg); }
.blog-footer {
    max-width: 760px; margin: 48px auto 0;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.blog-footer .btn svg { width: 16px; height: 16px; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } .blog-body { font-size: 16px; } }

/* ---------- CONTACT PAGE ---------- */
.contact-main { background: var(--bg-deep); }
.contact-grid {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start;
}
.contact-form-wrap {
    padding: 48px; border-radius: var(--radius-xl);
    border: 1px solid var(--border); background: var(--bg-card);
}
.contact-form-title {
    font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 8px;
}
.contact-form-sub { font-size: 15px; color: var(--fg-muted); margin-bottom: 32px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select {
    width: 100%; padding: 16px 18px; appearance: none;
    background: var(--bg-deep); border: 1px solid var(--border); border-radius: var(--radius-md);
    color: var(--fg); font-family: var(--font-body); font-size: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    cursor: pointer; outline: none;
}
.form-group select:focus { border-color: var(--accent-cyan); }
[data-theme="light"] .form-group select { background-color: #f8f7fc; border-color: rgba(99, 102, 241, 0.15); color: #1a1a2e; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-card {
    padding: 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); background: var(--bg-card);
    transition: all var(--duration-slow) var(--ease-out);
}
.contact-detail-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.contact-detail-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2); margin-bottom: 16px;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent-cyan); }
.contact-detail-icon--violet { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.2); }
.contact-detail-icon--violet svg { color: var(--accent-violet); }
.contact-detail-icon--emerald { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.contact-detail-icon--emerald svg { color: var(--accent-emerald); }
.contact-detail-card h4 {
    font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 6px;
}
.contact-detail-card a, .contact-detail-card p {
    font-size: 15px; color: var(--fg-muted); transition: color var(--duration-fast);
}
.contact-detail-card a:hover { color: var(--accent-violet); }
.contact-detail-note { font-size: 13px; color: var(--fg-dim); line-height: 1.6; margin-top: 6px; }
.contact-social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.contact-social-links a {
    padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500;
    border: 1px solid var(--border); color: var(--fg-muted);
    transition: all var(--duration-normal) var(--ease-out);
}
.contact-social-links a:hover { border-color: var(--accent-violet); color: var(--accent-violet); }

/* Offices */
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offices-grid--two { grid-template-columns: repeat(2, 1fr); }
.office-card {
    padding: 36px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); background: var(--bg-card);
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
}
.office-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.office-badge {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; background: rgba(139, 92, 246, 0.15); color: var(--accent-violet);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.office-card h3 {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.office-address { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 20px; }
.office-contact { display: flex; flex-direction: column; gap: 8px; }
.office-contact span {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--fg-dim);
}
.office-contact svg { color: var(--accent-cyan); flex-shrink: 0; }

/* Map */
.contact-map-section { background: var(--bg-deep); border-top: 1px solid var(--border); }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.map-label { font-family: var(--font-heading); font-size: 15px; font-weight: 600; margin-bottom: 12px; color: var(--fg); }
@media (max-width: 768px) { .maps-grid { grid-template-columns: 1fr; } }

/* Office card links */
.office-address-link { display: block; text-decoration: none; color: inherit; margin-bottom: 16px; }
.office-address-link:hover .office-address { color: var(--fg); }
.office-address-link:hover .office-map-link { color: var(--accent-violet); gap: 8px; }
.office-map-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600; color: var(--accent-cyan); margin-top: 8px;
    transition: all var(--duration-normal) var(--ease-out);
}
.office-contact a {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--fg-dim); padding: 4px 0;
    transition: color var(--duration-normal) var(--ease-out);
}
.office-contact a:hover { color: var(--accent-violet); }
.office-contact a svg { color: var(--accent-cyan); flex-shrink: 0; }

.map-wrap {
    border-radius: var(--radius-xl); overflow: hidden;
    border: 1px solid var(--border); height: 450px;
}
.map-wrap iframe { width: 100%; height: 100%; display: block; }

[data-theme="light"] .contact-form-wrap,
[data-theme="light"] .contact-detail-card,
[data-theme="light"] .office-card {
    background: #ffffff; border-color: rgba(99, 102, 241, 0.1);
    box-shadow: 0 2px 16px rgba(99, 102, 241, 0.06);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; gap: 48px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .offices-grid,
    .offices-grid--two { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 20px; border-radius: var(--radius-lg); }
    .contact-form-title { font-size: 22px; }
    .office-card { padding: 24px; }
}
