/*
Theme Name: ANG Consultants
Theme URI: https://angadmin.com
Author: ANG Consultants
Description: Professional WordPress theme for ANG Consultants — CTE Equipment & Procurement Solutions for Texas School Districts. Built for Elementor Free.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ang-consultants
Tags: elementor, business, education, custom-colors, custom-logo, custom-menu, full-width-template
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #1B3F8B;
  --navy-dark:   #0E2155;
  --navy-mid:    #2450A8;
  --gold:        #D97706;
  --gold-light:  #F59E0B;
  --white:       #FFFFFF;
  --off-white:   #F0F3FF;
  --light-gray:  #CDD6F5;
  --mid-gray:    #6070A8;
  --text:        #0F1A3A;
  --text-light:  #3A4878;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

  --shadow-sm:  0 2px 10px rgba(26,58,92,0.07);
  --shadow-md:  0 6px 24px rgba(26,58,92,0.12);
  --shadow-lg:  0 16px 48px rgba(26,58,92,0.18);

  --radius:    5px;
  --radius-md: 7px;
  --radius-lg: 10px;
  --ease:      0.28s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: #fff; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--navy); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--navy); line-height: 1.2; font-weight: 700; }
p { margin-bottom: 1.1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.ang-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.ang-section { padding: 88px 0; }
.ang-section--bg { background: var(--off-white); }
.ang-section--dark { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }

/* ============================================================
   HEADER
   ============================================================ */
#ang-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 1px 6px rgba(26,58,92,0.06);
  transition: box-shadow var(--ease);
}
#ang-header.scrolled { box-shadow: 0 4px 24px rgba(26,58,92,0.13); }

.ang-header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}

/* Logo */
.ang-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ang-logo-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--gold); letter-spacing: -0.5px;
}
.ang-logo-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.15; display: block; }
.ang-logo-sub  { font-family: var(--font-body); font-size: 10px; color: var(--mid-gray); letter-spacing: 1.5px; text-transform: uppercase; display: block; }

/* Nav */
.ang-nav { display: flex; align-items: center; gap: 2px; }
.ang-nav a {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--text); padding: 8px 15px; border-radius: var(--radius);
  text-decoration: none; transition: all var(--ease);
  border-bottom: 2px solid transparent; letter-spacing: 0.03em;
}
.ang-nav a:hover { color: var(--navy); background: var(--off-white); }
.ang-nav a.active { color: var(--navy); border-bottom-color: var(--gold); }
.ang-nav-divider { width: 1px; height: 18px; background: var(--light-gray); margin: 0 10px; }
.ang-nav-cta {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  background: var(--gold); color: #fff !important;
  padding: 9px 20px; border-radius: var(--radius);
  transition: background var(--ease); border: none;
}
.ang-nav-cta:hover { background: var(--navy) !important; color: #fff; }

/* Mobile toggle */
.ang-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.ang-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
#ang-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
#ang-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: 48px 48px; pointer-events: none;
}
#ang-hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(200,150,42,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.ang-hero-inner { padding: 88px 0 0; position: relative; z-index: 1; }
.ang-hero-content { max-width: 680px; }

.ang-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,42,0.15); border: 1px solid rgba(200,150,42,0.38);
  color: var(--gold-light); font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px; margin-bottom: 26px;
  font-family: var(--font-body);
  animation: fadeUp 0.5s ease both;
}
.ang-hero-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

#ang-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  color: #fff; font-weight: 700; line-height: 1.13;
  margin-bottom: 18px;
  animation: fadeUp 0.5s 0.08s ease both;
}
#ang-hero h1 em { font-style: normal; color: var(--gold-light); }

.ang-hero-lead {
  font-size: 17px; color: rgba(255,255,255,0.78);
  line-height: 1.72; margin-bottom: 36px; max-width: 580px;
  font-family: var(--font-body);
  animation: fadeUp 0.5s 0.16s ease both;
}

.ang-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.5s 0.24s ease both; }

/* Trust bar */
.ang-trust-bar {
  margin-top: 72px;
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ang-trust-inner {
  display: flex; align-items: center; flex-wrap: wrap;
}
.ang-trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.68);
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 16px 32px 16px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 32px;
}
.ang-trust-item:last-child { border-right: none; margin-right: 0; }
.ang-trust-item svg { color: var(--gold-light); flex-shrink: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.ang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px;
  font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--ease);
}
.ang-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.ang-btn-gold {
  background: var(--gold); color: #fff;
}
.ang-btn-gold:hover {
  background: var(--gold-light); color: #fff;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,150,42,0.35);
}

.ang-btn-gold-dark:hover { background: var(--navy) !important; }

.ang-btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.ang-btn-outline:hover {
  background: rgba(255,255,255,0.1); color: #fff;
  border-color: rgba(255,255,255,0.8);
}

.ang-btn-navy { background: var(--navy); color: #fff; }
.ang-btn-navy:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); }

/* ============================================================
   SECTION LABELS + HEADINGS
   ============================================================ */
.ang-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.ang-label--light { color: var(--gold-light); }

.ang-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.2;
}
.ang-section-title--light { color: #fff; }
.ang-section-title--center { text-align: center; }

.ang-gold-bar { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 18px; }

.ang-section-lead {
  font-family: var(--font-body); font-size: 15.5px;
  color: var(--text-light); line-height: 1.72;
}
.ang-section-lead--center { text-align: center; max-width: 560px; margin: 0 auto; }
.ang-section-lead--light { color: rgba(255,255,255,0.72); }

/* ============================================================
   ABOUT
   ============================================================ */
.ang-about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; }

.ang-mission-card {
  background: var(--navy); border-radius: var(--radius-md);
  padding: 28px 30px; position: relative; overflow: hidden; margin-bottom: 22px;
}
.ang-mission-card::before {
  content: '"'; position: absolute; top: -8px; right: 14px;
  font-family: var(--font-heading); font-size: 6rem;
  color: rgba(200,150,42,0.12); line-height: 1; pointer-events: none;
}
.ang-mission-label {
  font-size: 10px; font-family: var(--font-body); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px; display: block;
}
.ang-mission-card p {
  font-family: var(--font-body); font-size: 15px;
  color: rgba(255,255,255,0.87); line-height: 1.75; margin: 0;
  font-style: italic; position: relative; z-index: 1;
}

.ang-cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,42,0.09); border: 1.5px solid rgba(200,150,42,0.28);
  padding: 9px 16px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; color: var(--navy);
  font-family: var(--font-body);
}
.ang-cert-badge svg { color: var(--gold); width: 14px; height: 14px; }

/* Stats + Specialties panel */
.ang-panel {
  background: #fff; border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-md);
}
.ang-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.ang-stat {
  background: var(--off-white); border-radius: var(--radius);
  padding: 18px 16px; border-left: 3px solid var(--gold);
}
.ang-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.ang-stat-label { font-family: var(--font-body); font-size: 11px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.ang-specialties-title {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid-gray);
  margin-bottom: 14px; padding-top: 22px;
  border-top: 1px solid var(--light-gray);
}
.ang-specialty-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.ang-specialty-tile {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: var(--radius); padding: 12px 8px; text-align: center;
}
.ang-specialty-icon {
  width: 32px; height: 32px; background: var(--navy); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ang-specialty-icon svg { color: var(--gold-light); width: 15px; height: 15px; }
.ang-specialty-name { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--text); line-height: 1.2; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.ang-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.ang-service-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray);
  transition: all var(--ease); position: relative; overflow: hidden;
}
.ang-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0; transition: opacity var(--ease);
}
.ang-service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(26,58,92,0.14); }
.ang-service-card:hover::before { opacity: 1; }

.ang-service-icon {
  width: 48px; height: 48px; background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ang-service-icon svg { color: var(--gold-light); width: 22px; height: 22px; }

.ang-service-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.ang-service-card p { font-family: var(--font-body); font-size: 14px; color: var(--text-light); line-height: 1.72; margin: 0; }

/* ============================================================
   CORE SERVICES
   ============================================================ */
.ang-core-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.ang-checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.ang-checklist-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border-radius: var(--radius);
  padding: 13px 16px; box-shadow: var(--shadow-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--text); line-height: 1.55;
}
.ang-checklist-item svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.ang-approach-block {
  background: #fff; border-radius: var(--radius-md);
  padding: 30px 30px 30px 26px;
  border-left: 4px solid var(--navy);
  box-shadow: 0 3px 14px rgba(26,58,92,0.09);
  margin-top: 24px;
}
.ang-approach-block h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; }
.ang-approach-block p { font-family: var(--font-body); font-size: 14.5px; color: var(--text-light); line-height: 1.76; margin-bottom: 13px; }
.ang-approach-block p:last-child { margin-bottom: 0; }

/* ============================================================
   CTA
   ============================================================ */
#ang-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
#ang-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,42,0.09) 0%, transparent 65%);
  pointer-events: none;
}
#ang-cta .ang-wrap { position: relative; z-index: 1; max-width: 700px; }
#ang-cta h2 { font-family: var(--font-heading); font-size: clamp(1.7rem,3.5vw,2.4rem); color: #fff; margin-bottom: 14px; }
#ang-cta p  { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 34px; line-height: 1.72; }
.ang-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.ang-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

/* Form */
.ang-form-row { margin-bottom: 16px; }
.ang-form-row label {
  display: block; font-family: var(--font-body); font-size: 11px;
  font-weight: 700; color: var(--navy); letter-spacing: 0.09em;
  text-transform: uppercase; margin-bottom: 6px;
}
.ang-form-row label .req { color: #c0392b; }
.ang-form-row input,
.ang-form-row textarea,
.ang-form-row select {
  width: 100%; border: 1.5px solid var(--light-gray);
  border-radius: var(--radius); padding: 11px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: #fff; outline: none; transition: border-color var(--ease);
}
.ang-form-row input:focus,
.ang-form-row textarea:focus  { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,42,0.1); }
.ang-form-row textarea        { min-height: 130px; resize: vertical; }

.ang-form-submit {
  width: 100%; background: var(--gold); color: #fff; border: none;
  padding: 14px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background var(--ease); letter-spacing: 0.04em;
}
.ang-form-submit:hover { background: var(--navy); }

.ang-form-notice { padding: 10px 14px; border-radius: var(--radius); font-family: var(--font-body); font-size: 13.5px; margin-top: 12px; }
.ang-form-notice--success { background: #edf7f2; border: 1px solid #a8d8be; color: #1a5c38; }
.ang-form-notice--error   { background: #fef0f0; border: 1px solid #f5c6c6; color: #7b1c1c; }

/* Contact info */
.ang-contact-info { display: flex; flex-direction: column; gap: 12px; }
.ang-contact-block {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--off-white); border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid var(--light-gray);
}
.ang-contact-icon {
  width: 40px; height: 40px; background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ang-contact-icon svg { color: var(--gold-light); width: 18px; height: 18px; }
.ang-contact-block-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--mid-gray); margin-bottom: 4px; display: block;
}
.ang-contact-block p { font-family: var(--font-body); font-size: 14px; color: var(--text); line-height: 1.55; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#ang-footer { background: var(--navy-dark); padding: 52px 0 20px; }

.ang-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }

.ang-footer-brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: #fff; }
.ang-footer-brand-sub  { font-family: var(--font-body); font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 1.5px; text-transform: uppercase; }
.ang-footer-desc { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.72; max-width: 260px; margin: 14px 0 18px; }

.ang-footer-cert {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,150,42,0.1); border: 1px solid rgba(200,150,42,0.22);
  color: var(--gold-light); padding: 4px 12px; border-radius: 3px;
  font-size: 11px; font-weight: 700; font-family: var(--font-body);
}
.ang-footer-cert svg { width: 11px; height: 11px; }

.ang-footer-col-title {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px;
}
.ang-footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.ang-footer-col a {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--ease);
}
.ang-footer-col a:hover { color: var(--gold-light); }

.ang-footer-address { margin-top: 22px; }
.ang-footer-address p { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; margin: 0; }

.ang-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.ang-footer-bottom p { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.28); margin: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.ang-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.ang-reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ang-services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .ang-about-grid,
  .ang-core-grid,
  .ang-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ang-footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .ang-nav { display: none; }
  .ang-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 20px; z-index: 999;
    box-shadow: var(--shadow-lg); gap: 4px;
  }
  .ang-hamburger { display: flex; }
  .ang-services-grid { grid-template-columns: 1fr; }
  .ang-footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .ang-trust-item    { padding: 12px 20px 12px 0; margin-right: 20px; }
  .ang-hero-btns     { flex-direction: column; }
  .ang-cta-btns      { flex-direction: column; align-items: center; }
}

/* ============================================================
   WORDPRESS CORE COMPATIBILITY
   ============================================================ */
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; width: 1px; overflow: hidden; position: absolute; white-space: nowrap; }
.elementor-section .elementor-container { max-width: 1200px; }

.ang-contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}
.ang-contact-block {
    min-height: 120px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.ang-contact-info { display: flex; flex-direction: column; gap: 24px; }
.ang-contact-block { min-height: 120px; display: flex; align-items: flex-start; }
