:root {
  --navy: #0f1f33;
  --navy-mid: #1a2f47;
  --orange: #e8621a;
  --orange-light: #f57c3a;
  --cream: #faf8f5;
  --gray-soft: #f4f4f2;
  --gray-text: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(15,31,51,0.07);
  --shadow-md: 0 6px 30px rgba(15,31,51,0.12);
  --shadow-lg: 0 16px 60px rgba(15,31,51,0.16);
  --radius: 14px;
  --radius-lg: 22px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* ── NAVBAR ── */
.main-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  padding: 0.9rem 0;
  transition: box-shadow 0.3s;
}
.main-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.55rem;
  color: var(--navy); text-decoration: none;
}
.nav-brand span { color: var(--orange); }
.main-nav .nav-link {
  font-weight: 500; color: var(--navy);
  padding: 0.4rem 0.9rem !important;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.95rem;
  cursor: pointer;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active-link { background: rgba(232,98,26,0.08); color: var(--orange); }
.btn-nav-cta {
  background: var(--orange); color: #fff !important;
  border-radius: 8px; font-weight: 600 !important;
  padding: 0.45rem 1.2rem !important;
}
.btn-nav-cta:hover { background: var(--orange-light) !important; }
.navbar-toggler { border: none; padding: 0.3rem 0.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ── BUTTONS ── */
.btn-primary-mf {
  background: var(--orange); color: #fff;
  border: none; border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.btn-primary-mf:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,26,0.3); color: #fff; }
.btn-outline-mf {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 0.72rem 1.8rem;
  cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.btn-outline-mf:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.7); border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 0.72rem 1.8rem;
  cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,98,26,0.1); color: var(--orange);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}
.section-title { font-size: clamp(1.9rem, 3vw, 2.7rem); color: var(--navy); line-height: 1.2; }
.section-subtitle { color: var(--gray-text); font-size: 1.05rem; max-width: 560px; margin-top: 0.75rem; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232,98,26,0.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,98,26,0.2); border: 1px solid rgba(232,98,26,0.4);
  color: #ffaa77; border-radius: 50px;
  padding: 0.4rem 1.1rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff; line-height: 1.13;
  font-weight: 800;
}
.hero-title .highlight { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 1.12rem; max-width: 520px; margin: 1.4rem 0 2.2rem; line-height: 1.7; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat-val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.hero-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: #fff; border-radius: 12px;
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-img-badge-icon { width: 42px; height: 42px; background: rgba(232,98,26,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.3rem; }
.hero-img-badge-text .num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.hero-img-badge-text .lbl { font-size: 0.78rem; color: var(--gray-text); }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(232,98,26,0.3); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 1.4rem; }
.service-card-icon { width: 46px; height: 46px; background: rgba(232,98,26,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.3rem; margin-bottom: 0.9rem; }
.service-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card-desc { color: var(--gray-text); font-size: 0.9rem; line-height: 1.6; }
.service-card-link { color: var(--orange); font-weight: 600; font-size: 0.88rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 0.6rem; }

/* ── HOW IT WORKS ── */
.how-step { text-align: center; position: relative; }
.how-step-num {
  width: 64px; height: 64px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: #fff;
  margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
}
.how-step-icon { font-size: 1.6rem; color: var(--orange); margin-bottom: 0.7rem; }
.how-step-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.how-step-desc { color: var(--gray-text); font-size: 0.9rem; }
.how-line { position: absolute; top: 32px; left: 60%; right: -40%; height: 2px; background: linear-gradient(90deg, var(--navy), transparent); z-index: 0; }

/* ── WHY US ── */
.why-item {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem;
  border-radius: var(--radius); transition: background 0.2s;
}
.why-item:hover { background: var(--gray-soft); }
.why-icon { width: 48px; height: 48px; background: rgba(232,98,26,0.1); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.25rem; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(232,98,26,0.12); position: absolute; top: -0.5rem; left: 1.5rem; line-height: 1; }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.testimonial-text { color: #374151; line-height: 1.7; margin: 0.8rem 0 1.4rem; font-size: 0.95rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { color: var(--gray-text); font-size: 0.82rem; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg); padding: 4rem;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,98,26,0.2) 0%, transparent 70%);
}

/* ── ABOUT PAGE ── */
.about-stat { text-align: center; padding: 1.5rem; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: var(--orange); }
.about-stat-label { color: var(--gray-text); font-size: 0.9rem; margin-top: 0.3rem; }
.team-card { text-align: center; }
.team-img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); margin-bottom: 1rem; }
.team-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.team-role { color: var(--orange); font-size: 0.88rem; font-weight: 500; }

/* ── BLOG ── */
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--shadow-sm); transition: all 0.3s; height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.4s; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-body { padding: 1.5rem; }
.blog-tag { background: rgba(232,98,26,0.1); color: var(--orange); border-radius: 6px; padding: 0.2rem 0.7rem; font-size: 0.78rem; font-weight: 600; display: inline-block; margin-bottom: 0.7rem; }
.blog-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 0.6rem; }
.blog-excerpt { color: var(--gray-text); font-size: 0.88rem; line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--gray-text); }
.blog-read { color: var(--orange); font-weight: 600; font-size: 0.88rem; text-decoration: none; margin-top: 0.8rem; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ── CONTACT ── */
.contact-info-card {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg); padding: 2.5rem;
  height: 100%;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(232,98,26,0.2); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; }
.contact-info-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { color: #fff; font-weight: 500; font-size: 0.95rem; }
.contact-form-card { background: var(--gray-soft); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 0.7rem 1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem; background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
  outline: none;
}
.map-placeholder {
  background: var(--gray-soft); border-radius: var(--radius-lg);
  overflow: hidden; height: 320px;
  border: 1px solid var(--border);
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ── UPLOAD PAGE ── */
.upload-zone {
  border: 2px dashed rgba(232,98,26,0.4); border-radius: var(--radius-lg);
  padding: 3rem 2rem; text-align: center;
  background: rgba(232,98,26,0.03);
  cursor: pointer; transition: all 0.25s;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--orange); background: rgba(232,98,26,0.07);
}
.upload-icon { font-size: 2.8rem; color: var(--orange); margin-bottom: 0.8rem; }
.success-message {
  display: none; background: #ecfdf5; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 1.5rem 2rem;
  text-align: center; color: #166534;
}
.success-message i { font-size: 2rem; color: #22c55e; margin-bottom: 0.5rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy); padding: 5rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(232,98,26,0.12) 0%, transparent 60%);
}
.page-hero-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; z-index: 1; }
.page-hero-sub { color: rgba(255,255,255,0.6); position: relative; z-index: 1; font-size: 1.05rem; }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; }
.breadcrumb-item.active { color: var(--orange); font-size: 0.88rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
footer h5 { color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.3rem; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer a:hover { color: var(--orange); }
footer li { margin-bottom: 0.55rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: 0.9rem; max-width: 260px; line-height: 1.7; margin-top: 0.7rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 1rem; transition: all 0.2s; }
.social-btn:hover { background: var(--orange); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; margin-top: 3rem; font-size: 0.85rem; }

/* ── MISC ── */
.bg-cream { background: var(--cream); }
.bg-soft { background: var(--gray-soft); }
section { padding: 5rem 0; }
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: auto; padding: 5rem 0; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .contact-info-card { padding: 2rem 1.5rem; }
  .how-line { display: none; }
}
.divider { height: 3px; width: 48px; background: var(--orange); border-radius: 2px; margin: 1rem 0 1.5rem; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded-xl { border-radius: var(--radius-lg) !important; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.22s; opacity: 0; }
.fade-up-3 { animation-delay: 0.34s; opacity: 0; }
.fade-up-4 { animation-delay: 0.46s; opacity: 0; }


/* ════════════════════════════════════════════════════
   CONTACT FORM 7 — THEME INTEGRATION STYLES
   These override CF7 defaults to match ModernFix theme
════════════════════════════════════════════════════ */

/* Form layout wrapper */
.wpcf7 { width: 100%; }
.wpcf7 form { width: 100%; }

/* Every CF7 field block: full width + spacing */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

/* Remove CF7 default paragraph margins */
.wpcf7 p { margin-bottom: 1rem; }
.wpcf7 br { display: none; }

/* ── Text / Email / Tel / Number inputs ── */
.wpcf7 input.form-control,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"] {
    display: block;
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    background: var(--white);
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.wpcf7 input.form-control:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}

/* ── Textarea ── */
.wpcf7 textarea.form-control,
.wpcf7 textarea {
    display: block;
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    background: var(--white);
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
    min-height: 130px;
}
.wpcf7 textarea.form-control:focus,
.wpcf7 textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}

/* ── Select dropdown ── */
.wpcf7 select.form-select,
.wpcf7 select {
    display: block;
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    background: var(--white);
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}
.wpcf7 select.form-select:focus,
.wpcf7 select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}

/* ── File upload ── */
.wpcf7 input[type="file"],
.wpcf7 input.form-control[type="file"] {
    display: block;
    width: 100%;
    border: 2px dashed rgba(232,98,26,0.4);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    background: rgba(232,98,26,0.03);
    color: var(--gray-text);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.wpcf7 input[type="file"]:hover {
    border-color: var(--orange);
    background: rgba(232,98,26,0.07);
}

/* ── Submit Button ── */
.wpcf7 input.wpcf7-submit,
.wpcf7 .btn-primary-mf {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.wpcf7 input.wpcf7-submit:hover,
.wpcf7 .btn-primary-mf:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,98,26,0.3);
}
.wpcf7 input.wpcf7-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ── Validation error messages ── */
.wpcf7-not-valid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}
.wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    font-family: 'DM Sans', sans-serif;
}

/* ── Response messages (success / error) ── */
.wpcf7-response-output {
    border-radius: 10px !important;
    padding: 1rem 1.2rem !important;
    margin: 1.2rem 0 0 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.92rem !important;
    border-width: 1px !important;
}
.wpcf7-mail-sent-ok {
    background: #ecfdf5 !important;
    border-color: #86efac !important;
    color: #166534 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
    background: #fef2f2 !important;
    border-color: #fca5a5 !important;
    color: #991b1b !important;
}
.wpcf7-spam-blocked {
    background: #fef3c7 !important;
    border-color: #fcd34d !important;
    color: #92400e !important;
}
.wpcf7-validation-errors {
    background: #fef3c7 !important;
    border-color: #fcd34d !important;
    color: #92400e !important;
}

/* ── Loading spinner on submit ── */
.wpcf7-spinner {
    background-color: var(--orange) !important;
}

/* ── Labels ── */
.wpcf7 label,
.wpcf7-form-control-wrap + label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    display: block;
}

/* ── Checkbox & Radio ── */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ── Row helper class for 2-col layouts inside CF7 ── */
.cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 576px) {
    .cf7-row { grid-template-columns: 1fr; }
}
.cf7-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.cf7-field-full {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
