/* =========================================================
   MINDSHIFT CONSULTANCY & SERVICES — Stylesheet v4
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --crimson: #712C30;
  --crimson-dark: #5a1a26;
  --crimson-light: #9e3a4a;
  --cream: #FAF8F5;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --text-dark: #1e1e1e;
  --text-muted: #666;
  --text-light: #999;
  --border: rgba(0,0,0,0.09);
  --border-light: rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: 50px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; white-space: nowrap; }
.btn-primary { background: var(--crimson); color: white; box-shadow: 0 2px 14px rgba(113,44,48,0.32); }
.btn-primary:hover { background: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(113,44,48,0.42); }
.btn-outline { background: transparent; color: var(--crimson); border: 1.5px solid var(--crimson); }
.btn-outline:hover { background: var(--crimson); color: white; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================
   NAVBAR — Floating white rounded card
   ========================================================== */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1180px; z-index: 1000;
  background: white; border-radius: 18px;
  border: 1px solid rgba(113,44,48,0.15);
  box-shadow: 4px 4px 20px rgba(113,44,48,0.10);
  padding: 10px 24px; transition: var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; }

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; object-fit: contain; }

/* Center glassmorphism pill */
.nav-center { display: flex; align-items: center; background: rgba(113,44,48,0.11); border-radius: 24px; border: 0.75px solid rgba(255,255,255,0.5); padding: 5px 7px; gap: 2px; backdrop-filter: blur(2px); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-dark); padding: 6px 14px; border-radius: 18px; transition: var(--transition); }
.nav-links a:hover { color: var(--crimson); background: rgba(255,255,255,0.4); }
.nav-blog-pill { display: inline-flex; align-items: center; background: rgba(255,255,255,0.30); border-radius: 18px; border: 1px solid rgba(0,0,0,0.10); padding: 6px 18px; font-size: 14px; font-weight: 500; color: var(--text-dark); transition: var(--transition); white-space: nowrap; }
.nav-blog-pill:hover { background: rgba(255,255,255,0.55); color: var(--crimson); }

/* CTA */
.nav-cta { background: var(--crimson); color: white; padding: 9px 20px; border-radius: 18px; font-size: 14px; font-weight: 600; transition: var(--transition); flex-shrink: 0; }
.nav-cta:hover { background: var(--crimson-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(113,44,48,0.38); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; top: 88px; left: 16px; right: 16px; background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px 24px; z-index: 999; flex-direction: column; gap: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 16px; font-weight: 500; color: var(--text-dark); padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--crimson); }

/* ==========================================================
   HERO
   ========================================================== */
.hero { padding: 130px 0 72px; background: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(113,44,48,0.022) 1px,transparent 1px), linear-gradient(90deg,rgba(113,44,48,0.022) 1px,transparent 1px); background-size: 52px 52px; pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }

.hero-title { font-family: var(--font-display); font-size: clamp(2.3rem,4vw,3.1rem); font-weight: 700; color: var(--charcoal); line-height: 1.18; margin-bottom: 18px; animation: fadeUp 0.6s ease 0.1s both; }
.hero-desc { font-size: 14px; color: var(--text-muted); max-width: 460px; line-height: 1.78; margin-bottom: 28px; animation: fadeUp 0.6s ease 0.25s both; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; animation: fadeUp 0.6s ease 0.4s both; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; animation: fadeUp 0.6s ease 0.55s both; }
.hero-card { background: var(--crimson-dark); border-radius: 12px; padding: 20px; position: relative; overflow: hidden; min-height: 148px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; transition: var(--transition); }
.hero-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(113,44,48,0.32); }
.hero-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(113,44,48,0.72),rgba(30,10,15,0.87)); }
.hero-card-arrow { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; background: rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 13px; }
.hero-card-content { position: relative; z-index: 1; }
.hero-card-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.hero-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: white; line-height: 1.35; margin-bottom: 6px; }
.hero-card p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }

.hero-right { position: relative; animation: fadeLeft 0.7s ease 0.3s both; }
.hero-image-main { border-radius: 16px; overflow: hidden; height: 400px; }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-stats { display: flex; justify-content: space-between; margin-top: 22px; padding: 18px 26px; background: white; border-radius: 12px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { padding: 80px 0; background: var(--cream); }
.services-intro { margin-bottom: 40px; }
.services-intro h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.3rem); font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.services-intro p { font-size: 14px; color: var(--text-muted); max-width: 580px; }
.services-accordion { display: flex; flex-direction: column; gap: 10px; }
.service-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition); }
.service-item.open { box-shadow: 0 4px 22px rgba(113,44,48,0.10); border-color: rgba(113,44,48,0.22); }
.service-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; user-select: none; transition: background var(--transition); }
.service-header:hover { background: rgba(113,44,48,0.025); }
.service-header-title { font-size: 16px; font-weight: 600; color: var(--charcoal); }
.service-chevron { width: 34px; height: 34px; background: rgba(113,44,48,0.09); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--crimson); font-size: 18px; flex-shrink: 0; }
.service-item.open .service-chevron { background: var(--crimson); color: white; transform: rotate(180deg); }
.service-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.service-item.open .service-body { max-height: 900px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 6px 20px 22px; }
.service-card { background: var(--cream); border: 1px solid var(--border-light); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; transition: var(--transition); }
.service-card:hover { border-color: var(--crimson); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(113,44,48,0.09); }
.service-card h4 { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; line-height: 1.4; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.service-card-btn { width: 100%; padding: 9px; background: var(--crimson); color: white; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); text-align: center; }
.service-card-btn:hover { background: var(--crimson-dark); }

/* ==========================================================
   ABOUT — text LEFT, logo RIGHT
   ========================================================== */
.about { padding: 80px 0; background: white; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.3rem); font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.about-content p { font-size: 14px; color: var(--text-muted); line-height: 1.82; margin-bottom: 14px; }
.about-cta { margin-top: 24px; }
.about-logo { display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: 20px; padding: 24px; border: 1px solid var(--border-light); box-shadow: 0 10px 40px rgba(0,0,0,0.07); }
.about-logo img { width: 100%; height: auto; object-fit: contain; display: block; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 56px; background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-stat { text-align: center; padding: 26px 14px; border-right: 1px solid var(--border); }
.about-stat:last-child { border-right: none; }
.about-stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.about-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: 80px 0; background: var(--cream); }
.faq .container { display: grid; grid-template-columns: 1fr 1.8fr; gap: 68px; align-items: start; }
.faq-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--crimson); margin-bottom: 8px; }
.faq-label::before { content: '# '; }
.faq-left h2 { font-family: var(--font-display); font-size: clamp(1.7rem,2.5vw,2.2rem); font-weight: 700; color: var(--charcoal); margin-bottom: 18px; line-height: 1.25; }
.faq-left p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.faq-img { border-radius: var(--radius); overflow: hidden; }
.faq-img img { width: 100%; height: auto; object-fit: contain; display: block; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; user-select: none; gap: 16px; }
.faq-question h4 { font-size: 15px; font-weight: 500; color: var(--charcoal); line-height: 1.4; }
.faq-question:hover h4 { color: var(--crimson); }
.faq-toggle { width: 28px; height: 28px; background: rgba(113,44,48,0.09); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--crimson); font-size: 16px; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-toggle { background: var(--crimson); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.78; padding-bottom: 18px; }

/* ==========================================================
   TEAM
   ========================================================== */
.team { padding: 80px 0; background: white; }
.team h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.3rem); font-weight: 700; color: var(--charcoal); margin-bottom: 40px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { border-radius: 16px; overflow: hidden; background: var(--cream); border: 1px solid var(--border-light); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-photo { height: 300px; overflow: hidden; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-card-info { padding: 18px 20px; background: white; }
.team-card-name { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 3px; }
.team-card-role { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.team-card-btn { width: 100%; padding: 10px; background: var(--crimson); color: white; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.team-card-btn:hover { background: var(--crimson-dark); }

/* ==========================================================
   CONTACT (homepage)
   ========================================================== */
.contact-section { padding: 80px 0; background: var(--cream); }
.contact-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.contact-section-label { font-size: 13px; color: var(--crimson); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.contact-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.3rem); font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.contact-section-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 14px; color: var(--text-dark); background: white; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(113,44,48,0.09); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-submit { width: 100%; padding: 13px; background: var(--crimson); color: white; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--crimson-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(113,44,48,0.32); }
.form-success { display: none; align-items: center; gap: 10px; background: #d4edda; border: 1px solid #c3e6cb; border-radius: 8px; padding: 14px 18px; color: #155724; font-size: 14px; font-weight: 500; margin-top: 12px; }
.form-success.show { display: flex; }
.contact-info-panel h3 { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 18px; }
.contact-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.contact-detail-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.contact-detail-text { color: var(--text-muted); line-height: 1.55; }
.contact-map { margin-top: 22px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 220px; border: none; display: block; }

/* ==========================================================
   NEWSLETTER
   ========================================================== */
.newsletter { background: var(--crimson); padding: 62px 0; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 50%,rgba(255,255,255,0.07),transparent 55%), radial-gradient(circle at 85% 50%,rgba(255,255,255,0.07),transparent 55%); }
.newsletter .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter-text h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: white; margin-bottom: 8px; }
.newsletter-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.newsletter-form-row { display: flex; gap: 0; min-width: 360px; border-radius: 50px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.18); }
.newsletter-input { flex: 1; padding: 14px 22px; border: none; outline: none; font-family: var(--font-body); font-size: 14px; background: white; color: var(--text-dark); }
.newsletter-input::placeholder { color: var(--text-light); }
.newsletter-btn { padding: 14px 24px; background: var(--charcoal); color: white; border: none; font-family: var(--font-body); font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.newsletter-btn:hover { background: #000; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--crimson-dark); color: white; padding: 58px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
..footer-logo img { height: 38px; width: 38px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.72; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: white; transition: var(--transition); text-decoration: none; }
.footer-social:hover { background: rgba(255,255,255,0.25); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: white; }
.back-to-top { cursor: pointer; color: rgba(255,255,255,0.5); font-size: 13px; transition: color var(--transition); display: flex; align-items: center; gap: 5px; }
.back-to-top:hover { color: white; }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.page-hero { padding: 140px 0 64px; background: linear-gradient(135deg,var(--crimson-dark),var(--crimson)); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size: 38px 38px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag { display: inline-block; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,0.22); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.15; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 500px; }
.contact-page-section { padding: 72px 0; background: white; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-page-info h2 { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; }
.contact-page-info > p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }
.cp-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--cream); border-radius: 10px; margin-bottom: 12px; border: 1px solid var(--border-light); }
.cp-item-icon { width: 42px; height: 42px; background: rgba(113,44,48,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cp-item-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.cp-item-value { font-size: 14px; color: var(--charcoal); font-weight: 500; }
.cp-map { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.cp-map iframe { width: 100%; height: 240px; border: none; display: block; }
.contact-page-form-wrap { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 14px 56px rgba(0,0,0,0.09); border: 1px solid var(--border-light); }
.contact-page-form-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.contact-page-form-wrap > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .faq .container { grid-template-columns: 1fr; gap: 36px; }
  .contact-section .container { grid-template-columns: 1fr; gap: 40px; }
  .newsletter .container { flex-direction: column; gap: 28px; }
  .newsletter-form-row { min-width: unset; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .navbar { top: 10px; width: calc(100% - 24px); padding: 10px 16px; }
  .nav-center, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .contact-page-form-wrap { padding: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr; }
}
