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

:root {
  --navy: #0A192F;
  --navy-light: #172A45;
  --black: #000000;
  --white: #ffffff;
  --accent-blue: #0077FF;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #ccd6f6;
  --awad-sans: 'Outfit', sans-serif;
  --awad-body: 'Manrope', sans-serif;
  --awad-serif: 'Playfair Display', serif;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: var(--awad-body);
}

html {
overflow-x: clip;
max-width: 100vw;
scroll-behavior: smooth;
}

body{
background: var(--white);
color: var(--navy);
overflow-x: clip;
max-width: 100vw;
}

/* NAVBAR */

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 80px;
position: sticky;
top: 0;
z-index: 2000;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 80px;
  background: var(--navy);
}

.navbar.scrolled nav a,
.navbar.scrolled .nav-dropdown-toggle {
  color: var(--white);
}

.navbar.scrolled .logo img {
  filter: brightness(0) invert(1);
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:inherit;
}

.logo-box{
  width:55px;
  height:55px;
  background:black;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
}

/* HERO */

.hero{
  max-width: 1500px;
  margin: 21px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 119, 255, 0.1), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, #02060c 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("assets/brokenglass.png");
  background-size: 600px;
  background-position: 80% 20%;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero-left{
  max-width:650px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  font-family: var(--awad-sans);
}

.blue{
  color: var(--accent-blue);
}

.pill{
  background: var(--white);
  color: var(--navy);
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-left p{
  margin-top:20px;
  margin-bottom: 50px;
  font-size:22px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta{
  display: inline-block;
  padding: 20px 50px;
  border:none;
  border-radius: 50px;
  background: var(--accent-blue);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  cursor:pointer;
  font-size:18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 119, 255, 0.3);
  width: fit-content;
}

.cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.5);
  background: #0066DD;
}

.hero-right{
font-size:28px;
font-weight:700;
}

.logo-text h3{
font-size:18px;
letter-spacing:1px;
}

.logo-text .small{
font-size:10px;
letter-spacing:3px;
color:#555;
}

nav{
display:flex;
gap:40px;
font-size:14px;
text-transform:uppercase;
}

nav a{
cursor:pointer;
color: var(--navy);
font-weight: 700;
text-decoration: none;
font-family: var(--awad-sans);
text-decoration: none;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  cursor: pointer;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  pointer-events: auto;
}

.nav-dropdown-toggle.active {
  color: #6da6e3;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  margin-left: 8px;
  transform: rotate(45deg);
  vertical-align: middle;
  margin-top: -3px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  min-width: 420px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-dropdown-item:hover {
  background: #f0f5fa;
  color: #6da6e3;
}

.nav-dropdown-item.active {
  color: #6da6e3;
}

.nav-icons{
display:flex;
gap:12px;
}

.icon{
width:42px;
height:42px;
border:1px solid #2d3238;
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
}

/* HERO */
width:350px;
height:550px;
overflow:visible;
border-radius:15px;
display:flex;
align-items:center;
justify-content:center;
}

.hero-right img{
width:auto;
height:150%;
border-radius:15px;
position:relative;
top:40px;
left:-205px;
object-fit:contain;
}

/* PARTNERS */

.partners{
text-align:center;
margin-top:40px;
}

.partners h2{
font-size:28px;
font-weight:500;
}

.partners h2 span{
color:#7eaee5;
font-style:italic;
font-weight:600;
}

.logos-marquee-wrapper{
margin-top:25px;
background:white;
border-radius:10px;
border:1px solid #d7d7d7;
overflow: hidden;
width: 100%;
  padding: 20px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-marquee{
display:flex;
gap:0;
  align-items: center;
animation: marquee 15s linear infinite;
width: fit-content;
}

@keyframes marquee {
from {
  transform: translateX(-66.66%);
}
to {
  transform: translateX(0);
}
}

.logos-marquee:hover {
  animation-play-state: paused;
}

.logo-card{
background:transparent;
padding:20px 25px;
border-radius:0;
font-weight:600;
font-size:14px;
border:none;
display:flex;
align-items:center;
justify-content:center;
height:100px;
flex-shrink:0;
}

.logo-card img{
max-height:50px;
max-width:90%;
object-fit:contain;
}

.nav-btn{
width:48px;
height:48px;
border-radius:10px;
border:1px solid #2d3238;
background:transparent;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:all .2s ease;
}

.nav-btn svg{
width:20px;
height:20px;
color:#1b1f24;
stroke:#1b1f24;
}

.nav-btn:hover{
background:white;
transform:translateY(-2px);
}
.logo img{
height:75px;
width:auto;
object-fit:contain;
}
.hero-left h1 .blue,
.hero-left h1 .pill {
  display: inline;
}
.hero-left {
  max-width: 650px; /* wider to fit the text */
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/herooverlay1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  opacity: 0.5;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 180px;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(126, 174, 229, 0.35) 0%,
    rgba(100, 150, 210, 0.25) 50%,
    transparent 100%
  );
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  z-index: 0.5;
}

.hero-left, .hero-right {
  position: relative;
  z-index: 1;
}

/* ORIGIN STORY SECTION */

.origin-story {
  max-width: 1200px;
  margin: 100px auto 140px auto;
  padding: 0 50px;
  text-align: center;
  position: relative;
}

.origin-story::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
}

.origin-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.origin-subtitle {
  color: #666;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.origin-header h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
}

.blue-italic {
  color: #7eaee5;
  font-style: italic;
  font-weight: 700;
}

.origin-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.origin-description strong {
  color: #333;
  font-weight: 600;
}

.origin-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    #a8d5f7 0%,
    #7eaee5 50%,
    #5a8fc4 100%
  );
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  min-height: 550px;
}

.origin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
}

.origin-card-left {
  flex: 1;
  padding: 80px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.origin-text {
  text-align: center;
}

.origin-label {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.15);
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.origin-card-left h3 {
  font-size: 96px;
  font-weight: 800;
  color: #004d7a;
  line-height: 1;
  letter-spacing: -2px;
}

.origin-card-right {
  flex: 1;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.origin-video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 40px 0;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 850px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(126, 174, 229, 0.3);
}

.play-button svg {
  width: 50px;
  height: 50px;
  color: #7eaee5;
  margin-left: 4px;
}

.play-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(126, 174, 229, 0.5);
}

.learn-more-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #7eaee5;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.learn-more-btn:hover {
  background: #6da6e3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(126, 174, 229, 0.3);
}

/* VIDEO MODAL */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  overflow: hidden;
  overscroll-behavior: contain;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-modal-content {
  position: relative;
  width: min(92vw, 980px);
  max-width: 900px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 183, 96, 0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.62), 0 0 0 8px rgba(214,183,96,0.08);
  animation: slideUp 0.3s ease;
}

.video-modal-content iframe {
  display: block;
  width: 100%;
  height: min(56.25vw, 552px);
  max-height: calc(100dvh - 96px);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: white;
  transform: scale(1.1);
}

/* PRACTICE AREAS SECTION */

.practice-areas {
  max-width: 1400px;
  margin: 100px auto 30px auto;
  padding: 0 50px;
  text-align: center;
}

.practice-header {
  margin-bottom: 60px;
}

.practice-subtitle {
  color: #666;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.practice-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.practice-header h2 .regular {
  font-weight: 400;
}

.nav-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  perspective: 1200px;
}

.carousel-nav {
  width: 48px;
  height: 48px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  border-color: #7eaee5;
  color: #7eaee5;
  background: #f0f6ff;
  transform: scale(1.1);
}

.carousel-wrapper {
  flex: 1;
  overflow: visible;
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  scroll-behavior: smooth;
  transition: transform 0.4s ease;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 340px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s ease,
    box-shadow 0.5s ease;
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0) scale(1);
  transform-style: preserve-3d;
  z-index: 1;
  padding: 8px;
  margin: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.carousel-card::before,
.carousel-card::after {
  display: none;
}

/* nth-child defaults removed â€” JS controls all positioning */

.carousel-card img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
  border-radius: 16px;
  z-index: 1;
}

.carousel-card:hover img {
  transform: scale(1.03);
}

.carousel-card-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 4;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  line-height: 1.3;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-card.active-card .carousel-card-overlay {
  opacity: 1;
}

.carousel-card-overlay p {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.practice-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.practice-btn {
  padding: 12px 28px;
  background: white;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.practice-btn:hover {
  border-color: #7eaee5;
  color: #7eaee5;
}

.practice-btn.active {
  background: #7eaee5;
  color: white;
  border-color: #7eaee5;
}
/* â”€â”€ Testimonials Section â”€â”€ */
/* Requires: https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=DM+Sans:wght@300;400;500;600&display=swap */

:root {
  --gold-light: #f5c842;
  --blue-accent: #3b7dd8;
  --bg: #f0f4f8;
  --card-bg: #ffffff;
  --text-main: #1a1e2e;
  --text-muted: #8a93a8;
  --text-body: #3d4358;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --radius: 18px;
}

.testimonials-section {
  font-family: var(--awad-sans);
  background: var(--bg);
  padding: 60px 24px;
}

.testimonials-inner {
  max-width: 860px;
  margin: 0 auto;
  animation: t-fadeUp 0.7s ease both;
}

@keyframes t-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header */
.t-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.t-header-left .t-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1e2e;
  margin-bottom: 6px;
}

.t-header-left h2 {
  font-family: var(--awad-sans);
  font-size: clamp(26px, 4vw, 36px);
  color: #a3c4e0;
  font-weight: 700;
  line-height: 1.1;
}

.t-review-sources {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.t-source-label {
  font-size: 13px;
  color: #777;
  font-weight: 500;
}

.t-source-logo {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.t-source-logo:hover {
  opacity: 1;
}

.t-source-separator {
  color: #ccc;
  font-size: 16px;
}

.t-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card-bg);
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.t-stars-row {
  display: flex;
  gap: 3px;
}

.t-star {
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
  filter: drop-shadow(0 1px 2px rgba(200, 160, 0, 0.3));
}

.t-rating-score {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.t-review-count {
  font-size: 13px;
  color: var(--text-muted);
}

.t-view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.t-view-all:hover { color: var(--blue-accent); }

.t-view-all svg {
  transition: transform 0.2s;
}

.t-view-all:hover svg {
  transform: translateX(3px);
}

.t-divider {
  width: 1px;
  height: 20px;
  background: #dde2ec;
}

/* Grid */
.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 580px) {
  .t-grid { grid-template-columns: 1fr; }
}

/* Card */
.t-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: t-fadeUp 0.7s ease both;
}

.t-card:nth-child(1) { animation-delay: 0.05s; }
.t-card:nth-child(2) { animation-delay: 0.12s; }
.t-card:nth-child(3) { animation-delay: 0.19s; }
.t-card:nth-child(4) { animation-delay: 0.26s; }

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
}

.t-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-card-stars {
  display: flex;
  gap: 2px;
}

.t-card-star {
  width: 15px;
  height: 15px;
  fill: var(--gold-light);
  filter: drop-shadow(0 1px 1px rgba(200, 160, 0, 0.25));
}

.t-time-ago {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: auto;
}

.t-body-text {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-body);
  font-weight: 300;
  flex: 1;
}

.t-body-text strong {
  font-weight: 600;
  color: var(--text-main);
}

.t-reviewer {
  margin-top: 4px;
}

.t-reviewer-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-accent);
  margin-bottom: 2px;
}

.t-reviewer-location {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CASE STUDIES SECTION
   Font needed in <head>:
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.cs-section {
  font-family: var(--awad-sans);
  background: #ffffff;
  padding: 56px 0 64px;
  overflow: hidden;
}

.cs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* â”€â”€ Heading row â”€â”€ */
.cs-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cs-heading-row h2 {
  font-family: var(--awad-sans);
  font-size: clamp(24px, 3.5vw, 34px);
  color: #a3c4e0;
  font-weight: 700;
  line-height: 1.1;
}

.cs-nav {
  display: flex;
  gap: 10px;
}

.cs-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #d1d9e6;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1e2e;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cs-nav-btn:hover {
  background: #3b7dd8;
  border-color: #3b7dd8;
  color: #fff;
  transform: scale(1.08);
}

.cs-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* â”€â”€ Track wrapper â”€â”€ */
.cs-track-wrapper {
  overflow: hidden;
}

.cs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* â”€â”€ Card â”€â”€ */
.cs-card {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  border-radius: 18px;
  position: relative;
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1.5px rgba(126, 174, 229, 0.3);
  border: 1px solid rgba(126, 174, 229, 0.2);
  perspective: 1000px;
}

.cs-card:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(-1deg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1.5px rgba(126, 174, 229, 0.5);
}

.cs-card.cs-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0) rotateY(0);
}

/* stagger */
.cs-card:nth-child(1)  { transition-delay: 0.05s; }
.cs-card:nth-child(2)  { transition-delay: 0.12s; }
.cs-card:nth-child(3)  { transition-delay: 0.19s; }
.cs-card:nth-child(4)  { transition-delay: 0.26s; }
.cs-card:nth-child(5)  { transition-delay: 0.33s; }
.cs-card:nth-child(6)  { transition-delay: 0.40s; }
.cs-card:nth-child(7)  { transition-delay: 0.47s; }
.cs-card:nth-child(8)  { transition-delay: 0.54s; }
.cs-card:nth-child(9)  { transition-delay: 0.61s; }
.cs-card:nth-child(10) { transition-delay: 0.68s; }
.cs-card:nth-child(11) { transition-delay: 0.75s; }
.cs-card:nth-child(12) { transition-delay: 0.82s; }
.cs-card:nth-child(13) { transition-delay: 0.89s; }
.cs-card:nth-child(14) { transition-delay: 0.96s; }
.cs-card:nth-child(15) { transition-delay: 1.03s; }

/* â”€â”€ Thumbnail â”€â”€ */
.cs-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cs-card:hover .cs-thumb {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.15);
}

.cs-thumb {
  aspect-ratio: 16 / 9;
}

.cs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cs-card:hover .cs-thumb img {
  transform: scale(1.04);
}

/* blue gradient overlay */
.cs-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 26, 47, 0.04) 0%, rgba(12, 26, 47, 0.24) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cs-video-card:hover .cs-thumb-overlay {
  opacity: 0.88;
}

/* Play button on video cards */
.cs-video-card {
  cursor: pointer;
}

.cs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 36, 66, 0.74);
  border: 2.5px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  z-index: 10;
  color: #ffffff;
  backdrop-filter: blur(4px);
  box-shadow: 0 14px 30px rgba(8, 22, 43, 0.38);
}

.cs-play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  animation: csPlayPulse 1.8s ease-out infinite;
}

.cs-play-btn svg {
  transform: translateX(1px);
  transition: transform 0.25s ease;
}

.cs-video-card:hover .cs-play-btn {
  transform: translate(-50%, -50%) scale(1.14);
  background: rgba(18, 57, 98, 0.9);
  box-shadow: 0 20px 42px rgba(8, 22, 43, 0.48);
}

.cs-video-card:hover .cs-play-btn svg {
  transform: translateX(1px) scale(1.08);
}

.cs-play-btn:focus-visible {
  outline: 3px solid rgba(126, 174, 229, 0.75);
  outline-offset: 3px;
}

@keyframes csPlayPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

/* YouTube Modal */
.yt-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.yt-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.yt-modal {
  position: relative;
  width: 90vw;
  max-width: 960px;
  max-height: calc(100dvh - 96px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.25s ease;
  background: #000;
}

.yt-modal-backdrop.active .yt-modal {
  transform: scale(1);
}

.yt-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.yt-modal-close:hover {
  background: rgba(0,0,0,0.9);
}

.yt-modal-iframe-wrap {
  position: relative;
  width: 100%;
  max-height: calc(100dvh - 96px);
  padding-top: 56.25%;
}

.yt-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* avatar + label top-left */
.cs-thumb-meta {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  overflow: hidden;
  background: #a8c0e8;
  flex-shrink: 0;
}

.cs-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-attorney-tag {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1e2e;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* title on image */
.cs-thumb-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(10,20,60,0.72) 0%, transparent 100%);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* â”€â”€ Below-card title â”€â”€ */
.cs-card-title {
  font-size: 13.5px;
  font-weight: 500;
  color: #2c3247;
  line-height: 1.5;
  padding: 0 2px;
}

/* â”€â”€ Dots â”€â”€ */
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5cedc;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.cs-dot.cs-dot-active {
  background: #3b7dd8;
  transform: scale(1.35);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 720px) {
  .cs-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 480px) {
  .cs-card {
    flex: 0 0 85%;
  }
  .cs-inner {
    padding: 0 20px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Team Section (After Case Studies)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-section{
  background: linear-gradient(
    180deg,
    #a8cde8 0%,
    #b5d5ee 30%,
    #c4ddf1 60%,
    #cfe5f5 100%
  );
  padding: 62px 0 70px;
  overflow: hidden;
  position: relative;
}

.team-section::before{
  content:'';
  position:absolute;
  inset: -30px -80px 120px -80px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(180deg, rgba(255,255,255,0) 38%, rgba(255,255,255,0.38) 47%, rgba(255,255,255,0.56) 50%, rgba(255,255,255,0.14) 57%, rgba(255,255,255,0) 66%),
    radial-gradient(circle at 20% 24%, rgba(126,174,229,0.28) 0%, transparent 44%),
    radial-gradient(circle at 84% 12%, rgba(126,174,229,0.22) 0%, transparent 42%);
  filter: blur(28px);
  opacity: 0.95;
  pointer-events:none;
}

.team-section::after{
  content:'THE AWAD';
  position:absolute;
  right: 30px;
  top: 20px;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.25);
  pointer-events:none;
  white-space: nowrap;
}

.team-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.team-inner::after {
  content: 'LAW FIRM';
  position: absolute;
  bottom: -60px;
  left: -350px;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.2);
  pointer-events: none;
  white-space: nowrap;
  z-index: -1;
}

.team-heading{
  margin-bottom: 26px;
}

.team-label{
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-title{
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
  color: #ffffff;
  font-weight: 600;
  font-family: var(--awad-sans-bold);
}

.team-title .highlight{
  background: linear-gradient(90deg, #4a7fa5 0%, #0a1a33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.team-carousel{
  position: relative;
}

.team-nav-row{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.team-nav{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(180, 200, 230, 0.8);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1b2b42;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.team-nav:hover{
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.team-track-wrapper{
  overflow: hidden;
}

.team-track{
  display: flex;
  gap: 20px;
  width: fit-content;
  transition: transform 0.5s cubic-bezier(0.22, 0.9, 0.25, 1);
  will-change: transform;
}

.team-card{
  width: 250px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #c4d9ee 0%, #c4d9ee 50%, #ffffff 50%, #ffffff 100%);
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card::before {
  display: none;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(180,212,240,0.18) 16%,
    rgba(130,175,218,0.36) 44%,
    rgba(100,148,198,0.58) 74%,
    rgba(80,130,185,0.72) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.team-card:hover{
  transform: translateY(-6px);
  box-shadow: none;
}

.team-photo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Tighter crop in source â€” scale down; anchor to bottom so shoulders/suit meet the card edge like other photos */
.team-photo img.team-photo-fit-looser{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  transform: scale(0.88);
  transform-origin: 50% 100%;
}

.team-name{
  position: absolute;
  bottom: 22px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-size: 12px;
  color: rgba(255,255,255,0.98);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(37, 73, 114, 0.18);
}

.team-role{
  position: absolute;
  bottom: 10px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-size: 8px;
  color: rgba(246,250,255,0.88);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(37, 73, 114, 0.16);
}

@media (max-width: 980px){
  .team-inner{ padding: 0 20px; }
}

@media (max-width: 720px){
  .team-card{
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 580px){
  .team-title{
    font-size: 24px;
    white-space: nowrap;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FAQ Section (After Team)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section{
  background: linear-gradient(180deg, #e7f2ff 0%, #f2f8ff 55%, #f7fcff 100%);
  padding: 86px 0 112px;
  min-height: 520px;
}

.faq-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

.faq-card{
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(205, 226, 255, 0.85);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.06);
  padding: 72px 64px 30px;
  display: flex;
  flex-direction: column;
}

.faq-heading{
  text-align: center;
  margin-bottom: 50px;
}

.faq-label{
  color: rgba(126,174,229,0.85);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.faq-title{
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  color: #4d97df;
}

.faq-accordion{
  margin: 0 auto;
  max-width: 100%;
}

.faq-item{
  border-top: 1px solid rgba(140, 170, 210, 0.25);
}
/* Remove top border from the first FAQ item to eliminate the horizontal line */
.faq-item:first-child{
  border-top: none;
}

.faq-item:last-child{
  border-bottom: 1px solid rgba(140, 170, 210, 0.25);
}

.faq-question{
  width: 100%;
  text-align: left;
  padding: 34px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  appearance: none;
  -webkit-appearance: none;
}

.faq-question-text{
  font-size: 20px;
  color: #1b2b42;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
}

.faq-plus{
  width: 26px;
  height: 26px;
  position: relative;
  flex: 0 0 26px;
  align-self: center;
}

.faq-plus::before,
.faq-plus::after{
  content:'';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #1b2b42;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-plus::after{
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-plus::after{
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.faq-item.open .faq-answer{
  max-height: 170px;
  opacity: 1;
}

.faq-answer p{
  padding: 0 0 16px 0;
  color: rgba(27,43,66,0.80);
  font-size: 17px;
  line-height: 1.75;
}

.faq-more-wrap{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.faq-more{
  border: 1px solid rgba(60, 135, 220, 0.28);
  background: rgba(126,174,229,0.95);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 34px rgba(126,174,229,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.faq-more:visited{
  color: #fff;
}

.faq-more:hover{
  transform: translateY(-2px);
  background: rgba(106,160,219,0.98);
}

@media (max-width: 720px){
  .faq-card{
    padding: 26px 18px 18px;
  }
  .faq-question{
    padding: 14px 0;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Team of Experts Page
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.te-section {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.te-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 10%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.5) 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 10%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.5) 65%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.te-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.te-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.te-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7a8a9a;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.te-page-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-family: var(--awad-sans);
}

.te-bold {
  font-weight: 800;
  color: #1b2b42;
  font-style: italic;
}

.te-light {
  font-weight: 300;
  color: #1b2b42;
  font-style: italic;
}

.te-group {
  margin-bottom: 50px;
}

.te-group-label {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #3a6fa0;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid rgba(91,159,216,0.4);
}

.te-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.te-grid .team-card {
  width: 100%;
  height: 300px;
}

@media (max-width: 980px) {
  .te-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .te-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .te-grid .team-card {
    height: 260px;
  }
  .te-group-label {
    font-size: 32px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .te-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .te-grid .team-card {
    height: 220px;
  }
  .te-group-label {
    font-size: 28px;
    white-space: nowrap;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Five Steps Section (Why Choose Us)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.five-steps-section {
  background: #ffffff;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.five-steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 10%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.5) 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 10%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.5) 65%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.five-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.five-steps-header {
  text-align: center;
  margin-bottom: 24px;
}

.five-steps-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7a8a9a;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.five-steps-title {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  font-family: var(--awad-sans);
  font-weight: 400;
  color: #1b2b42;
}

.five-steps-title .blue-italic {
  font-weight: 700;
}

.five-steps-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 36px;
}

.five-steps-row-3 {
  /* 3 cards */
}

.five-steps-row-2 {
  /* 2 cards centered */
}

.five-steps-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 70px 50px 40px;
  text-align: center;
  width: 340px;
  box-shadow: 0 4px 20px rgba(91,159,216,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.five-steps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(91,159,216,0.15);
}

.five-steps-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dce9f5 0%, #c4d9ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  font-weight: 800;
  color: #000000;
  border: 3px solid #ffffff;
}

.five-steps-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #a3c4e0;
  margin-bottom: 0;
  line-height: 1.3;
  font-style: italic;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.five-steps-card-title::after {
  content: '';
  display: block;
  width: 240px;
  height: 2px;
  background: rgba(180,200,225,0.5);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.five-steps-card-desc {
  font-size: 17px;
  line-height: 1.5;
  color: #000000;
  font-weight: 400;
  text-align: center;
  margin-top: 28px;
}

/* Tablet: prevent hero image overlap on smaller screens (13" laptops) */
@media (max-width: 1366px) {
  .hero-right {
    width: 350px;
    height: 450px;
  }

  .hero-right img {
    height: 130%;
    left: -140px;
    top: 30px;
  }
}

@media (max-width: 768px) {
  .five-steps-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .five-steps-card {
    width: calc(50% - 10px);
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .five-steps-card {
    width: 100%;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Community Page
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.community-section {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 10%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.5) 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 10%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.5) 65%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.community-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.community-header {
  text-align: center;
  margin-bottom: 50px;
}

.community-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7a8a9a;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.community-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-family: var(--awad-sans);
  font-weight: 300;
  color: #1b2b42;
}

.community-intro {
  max-width: 900px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6a7a;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.community-card {
  background: linear-gradient(160deg, rgba(220,233,245,0.5) 0%, rgba(255,255,255,0.7) 50%, rgba(220,233,245,0.35) 100%);
  border-radius: 18px;
  border: 1px solid rgba(163,196,224,0.35);
  box-shadow: 0 4px 24px rgba(91,159,216,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 24px;
  position: relative;
  margin-bottom: 20px;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(91,159,216,0.16), inset 0 1px 0 rgba(255,255,255,0.6);
}

.community-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #dce9f5 0%, #c4d9ee 100%);
}

.community-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.community-card-body {
  padding: 18px 8px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.community-card-title {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #1b2b42;
  margin-bottom: 10px;
  line-height: 1.3;
}

.community-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5a6a7a;
  margin-bottom: 0;
  font-weight: 400;
  flex: 1;
}

.community-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(135deg, #6a9ec8 0%, #8fb5d8 100%);
  padding: 10px 22px;
  border-radius: 22px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.community-card-btn:hover {
  background: linear-gradient(135deg, #5a8eb8 0%, #7ea5c8 100%);
  transform: translateX(-50%) translateY(-2px);
}

/* â”€â”€ Community Article Section â”€â”€ */
.community-article-section {
  background: #ffffff;
  padding: 70px 0 80px;
  border-top: 1px solid #e2eaf3;
}
.community-article-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 36px;
}
.community-article-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(91,159,216,0.12);
  object-fit: cover;
  max-height: 460px;
}
.community-article-title {
  font-family: var(--awad-sans-bold);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.25;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.community-article-body p {
  font-family: var(--awad-sans);
  font-size: 16px;
  color: #3d4a5a;
  line-height: 1.78;
  margin: 0 0 18px;
}
.community-article-body p:last-child {
  margin-bottom: 0;
}
.community-article-kicker {
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a9ec8;
  margin-bottom: 12px;
}
.community-article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 36px;
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a9ec8;
  text-decoration: none;
  transition: gap 0.2s;
}
.community-article-back:hover {
  gap: 10px;
}

@media (max-width: 920px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Ibrahim Awad Bio Page
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-section {
  background: linear-gradient(135deg, #e8f1f8 0%, #dce9f5 50%, #eef4fa 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.bio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 700px;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.bio-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  position: relative;
}

/* Social icons (horizontal, below image) */
.bio-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.bio-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7eaee5;
  font-size: 20px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.bio-social-icon svg {
  width: 22px;
  height: 22px;
}

.bio-social-icon:hover {
  color: #4a8ac7;
}

/* Main content area */
.bio-content {
  flex: 1;
}

/* Hero: Image + Name */
.bio-hero {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.bio-hero-left {
  flex-shrink: 0;
}

.bio-image-wrapper {
  position: relative;
  width: 300px;
  height: 420px;
  flex-shrink: 0;
}

/* Outer rounded card/frame with light background */
.bio-image-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(220, 235, 248, 0.85) 0%, rgba(200, 225, 245, 0.75) 50%, rgba(235, 243, 250, 0.9) 100%),
    url('assets/brokenefffect.png') center/cover no-repeat;
  border: 1.5px solid rgba(126, 174, 229, 0.22);
  box-shadow: 0 8px 36px rgba(91, 159, 216, 0.08);
  z-index: 1;
}

/* Blue diagonal accent strip */
.bio-image-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) skewX(-12deg);
  width: 155px;
  height: 420px;
  background: linear-gradient(175deg, #6badd9 0%, #7eb2e8 100%);
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
}

/* Person photo */
.bio-image-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  z-index: 3;
}

.bio-hero-text {
  padding-top: 80px;
  flex: 1;
  min-width: 0;
}

.bio-name {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #92bbd9;
  line-height: 1.2;
  margin-bottom: 8px;
}

.bio-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #7a8a9a;
  text-transform: uppercase;
}

/* Bio text content */
.bio-text-content {
  max-width: 100%;
  margin-top: 30px;
}

.bio-text-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #3d4a5a;
  margin-bottom: 18px;
  font-weight: 400;
}

.bio-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: #5b9fd8;
  margin-top: 36px;
  margin-bottom: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bio-text-content .bio-section-heading:first-child {
  margin-top: 0;
}

@media (max-width: 920px) {
  .bio-inner {
    padding: 0 24px;
  }
  .bio-hero {
    flex-direction: column;
    align-items: center;
  }
  .bio-hero-text {
    text-align: center;
    padding-top: 0;
  }
  .bio-text-content {
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .bio-image-wrapper {
    width: 240px;
    height: 340px;
  }
  .bio-image-accent {
    width: 130px;
    height: 300px;
  }
  .bio-image-box {
    width: 240px;
    height: 270px;
  }
  .bio-image-person {
    width: 215px;
    height: 300px;
  }
  .bio-name {
    font-size: 26px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Footer (thin dark bar)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer{
  background: #070707;
  padding: 0;
}

.site-footer-inner{
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Anniversary Section (About Page)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.anniversary-section {
  background: linear-gradient(135deg, rgba(91, 159, 216, 0.05) 0%, rgba(126, 174, 229, 0.05) 100%);
  padding: 80px 0;
}

.anniversary-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.anniversary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.anniversary-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  order: 1;
}

.anniversary-image-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, #5b9fd8 0%, #7eaee5 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.anniversary-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.95;
}

.anniversary-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.4;
}

.anniversary-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 2;
  border: 2px solid #7eaee5;
  border-radius: 24px;
  padding: 50px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(126, 174, 229, 0.08) 100%);
  box-shadow:
    /* Top-left highlight */
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(91, 159, 216, 0.2),
    /* Main shadows for 3D block effect */
    8px 8px 0px rgba(91, 159, 216, 0.15),
    16px 16px 0px rgba(91, 159, 216, 0.08),
    24px 24px 0px rgba(91, 159, 216, 0.04),
    /* Soft shadow */
    0 20px 60px rgba(91, 159, 216, 0.25);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backdrop-filter: blur(10px);
  border-top: 2px solid #7eaee5;
  border-left: 2px solid #7eaee5;
  border-right: 1px solid rgba(91, 159, 216, 0.4);
  border-bottom: 1px solid rgba(91, 159, 216, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anniversary-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 70% -20%, rgba(126, 174, 229, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.anniversary-right::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(126, 174, 229, 0.3) 50%, transparent 100%);
  filter: blur(2px);
  z-index: 2;
}

.anniversary-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  order: -1;
  margin: 0;
  position: relative;
  z-index: 1;
}

.anniversary-highlight {
  color: #5b9fd8;
  font-weight: 700;
}

.anniversary-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.anniversary-text strong {
  color: #1a1a1a;
  font-weight: 700;
}

.anniversary-right:hover {
  border-color: #5b9fd8;
  box-shadow:
    /* Enhanced 3D block shadows on hover */
    12px 12px 0px rgba(91, 159, 216, 0.2),
    24px 24px 0px rgba(91, 159, 216, 0.12),
    36px 36px 0px rgba(91, 159, 216, 0.06),
    /* Soft shadow */
    0 30px 80px rgba(91, 159, 216, 0.35);
  transform: translateY(-8px) translateX(-4px);
  border-right: 1px solid rgba(91, 159, 216, 0.6);
  border-bottom: 1px solid rgba(91, 159, 216, 0.6);
}

@media (max-width: 920px) {
  .anniversary-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .anniversary-heading {
    font-size: 28px;
  }

  .anniversary-inner {
    padding: 0 30px;
  }
}

@media (max-width: 580px) {
  .anniversary-section {
    padding: 50px 0;
  }

  .anniversary-heading {
    font-size: 24px;
  }

  .anniversary-text {
    font-size: 14px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FAQ Section with Image (After Anniversary)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-with-image-section {
  padding: 80px 0;
  background: white;
}

.faq-with-image-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Single FAQ Card */
.faq-card {
  background: linear-gradient(135deg, #c5dff4 0%, #d8eaf8 100%);
  border-radius: 40px;
  padding: 45px 45px;
  box-shadow: 0 10px 40px rgba(91, 159, 216, 0.12);
  border: 1px solid rgba(126, 174, 229, 0.25);
  position: relative;
  z-index: 1;
}

.faq-with-image-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: 40px;
  align-items: center;
}

/* Left: Image Section */
.faq-image-wrapper {
  position: relative;
  height: 450px;
}

.faq-image-accent {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 200px;
  height: 460px;
  background: linear-gradient(135deg, #5b9fd8 0%, #7eaee5 100%);
  border-radius: 20px 40px 40px 20px;
  transform: skewX(-10deg);
  z-index: 2;
  pointer-events: none;
}

.faq-image-box {
  position: absolute;
  top: 40px;
  left: 0;
  width: 280px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f1f8 0%, #d8e8f5 100%);
  box-shadow: 0 15px 50px rgba(91, 159, 216, 0.15);
  z-index: 1;
}

.faq-image-person {
  position: absolute;
  top: 40px;
  left: 0;
  width: 280px;
  height: 400px;
  border-radius: 24px;
  object-fit: cover;
  z-index: 3;
}

/* Right: FAQ Accordion Container */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid rgba(126, 174, 229, 0.3);
  padding: 18px 0;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:first-child {
  padding-top: 0;
}

/* FAQ Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: all 0.3s ease;
  font-family: var(--awad-sans);
  position: relative;
  z-index: 10;
}

.faq-question:hover {
  color: #5b9fd8;
}

.faq-question:active {
  transform: scale(0.99);
}

.faq-icon {
  font-size: 28px;
  color: #7eaee5;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #5b9fd8;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), padding-top 0.4s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding-top: 14px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

@media (max-width: 1100px) {
  .faq-with-image-grid {
    gap: 60px;
  }

  .faq-card {
    padding: 45px;
  }
}

@media (max-width: 920px) {
  .faq-with-image-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-image-wrapper {
    height: 380px;
  }

  .faq-image-box {
    width: 220px;
    height: 320px;
  }

  .faq-image-accent {
    width: 150px;
    height: 180px;
    left: 60px;
  }

  .faq-with-image-inner {
    padding: 0 30px;
  }

  .faq-card {
    padding: 40px;
  }
}

@media (max-width: 580px) {
  .faq-with-image-section {
    padding: 60px 0;
  }

  .faq-image-wrapper {
    height: 320px;
    position: relative;
    margin: 0 auto 40px auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .faq-image-box {
    width: 220px;
    height: 290px;
    top: 30px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
  }

  .faq-image-person {
    width: 220px;
    height: 290px;
    top: 30px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
  }

  .faq-image-accent {
    position: absolute;
    top: 10px;
    left: calc(50% - 5px);
    width: 140px;
    height: 310px;
    transform: translateX(-50%) skewX(-10deg);
    border-radius: 20px 40px 40px 20px;
    z-index: 2;
  }

  .faq-card {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .faq-with-image-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 15px;
    gap: 15px;
  }

  .faq-icon {
    font-size: 24px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-item {
    padding: 18px 0;
  }

  .faq-with-image-inner {
    padding: 0 20px;
  }

  .faq-accordion-wrapper {
    width: 100%;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   The Process Section (After FAQ)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section {
  background: linear-gradient(to bottom right, #ffffff 0%, #dce9f5 100%);
  padding: 80px 0;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.process-header {
  margin-bottom: 60px;
}

.process-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #111;
}

.process-blue {
  color: #7eaee5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  position: relative;
  padding: 40px 40px 40px 60px;
  background: #ffffff;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.process-step:hover {
  background: #ffffff;
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step-toggle {
  font-size: 28px;
  font-weight: 300;
  color: #7eaee5;
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.process-step.active .process-step-toggle {
  transform: rotate(45deg);
}

.process-step-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #5b9fd8 0%, #7eaee5 100%);
  border-radius: 12px 0 0 12px;
}

.process-step-number {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  min-width: 60px;
}

.process-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 0;
}

.process-step-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.process-step-desc p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.process-step.active .process-step-desc {
  max-height: 300px;
  margin-top: 16px;
}

@media (max-width: 920px) {
  .process-inner {
    padding: 0 40px;
  }

  .process-header h2 {
    font-size: 36px;
  }

  .process-step {
    padding: 30px 30px 30px 50px;
  }
}

@media (max-width: 580px) {
  .process-section {
    padding: 60px 0;
  }

  .process-inner {
    padding: 0 20px;
  }

  .process-header h2 {
    font-size: 28px;
  }

  .process-step {
    padding: 25px 25px 25px 40px;
  }

  .process-step-number {
    font-size: 24px;
  }

  .process-step-title {
    font-size: 16px;
  }

  .process-step-desc {
    font-size: 14px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Why Choose Us Section (After Process)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-choose-section {
  background: linear-gradient(135deg, #d6e8f8 0%, #e8f1f8 100%);
  padding: 80px 0;
}

.why-choose-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.why-choose-card {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(91, 159, 216, 0.1);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(91, 159, 216, 0.15);
}

.why-choose-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d6e8f8 0%, #e8f1f8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.why-choose-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.why-choose-title {
  font-size: 22px;
  font-weight: 600;
  color: #7eaee5;
  margin-bottom: 20px;
}

.why-choose-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@media (max-width: 920px) {
  .why-choose-inner {
    padding: 0 40px;
  }

  .why-choose-grid {
    gap: 30px;
  }

  .why-choose-card {
    padding: 40px 30px;
  }
}

@media (max-width: 720px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-inner {
    padding: 0 20px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 30px 25px;
  }

  .why-choose-title {
    font-size: 18px;
  }

  .why-choose-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Core Values Section
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.core-values-section {
  background: linear-gradient(135deg, #d6e8f8 0%, #e8f1f8 100%);
  padding: 80px 0;
  position: relative;
}

.core-values-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  overflow: hidden;
  z-index: 1;
}

.core-values-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
}

.core-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.core-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.core-values-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

.growth-text {
  color: #7eaee5;
  font-weight: 700;
}

.core-values-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.core-value-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: stretch;
}

.core-value-letter {
  width: 140px;
  min-height: 100px;
  background: linear-gradient(180deg, #aacce8 0%, #e0e0dc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #4a7ba7;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(91, 159, 216, 0.1);
}

.core-value-content {
  background: white;
  padding: 25px 30px;
  border-radius: 8px;
  border-left: 5px solid #5b9fd8;
  box-shadow: 0 5px 20px rgba(91, 159, 216, 0.08);
}

.core-value-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.core-value-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 920px) {
  .core-values-inner {
    padding: 0 40px;
  }

  .core-values-header h1 {
    font-size: 36px;
  }

  .core-value-item {
    grid-template-columns: 90px 1fr;
    gap: 15px;
  }

  .core-value-letter {
    width: 90px;
    height: 90px;
    font-size: 40px;
  }

  .core-value-content {
    padding: 20px 25px;
  }

  .core-value-content h3 {
    font-size: 15px;
  }

  .core-value-content p {
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  .core-values-section {
    padding: 60px 0;
  }

  .core-values-background {
    height: 250px;
  }

  .core-values-inner {
    padding: 0 20px;
  }

  .core-values-header h1 {
    font-size: 28px;
  }

  .core-value-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .core-value-letter {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .core-value-content {
    padding: 15px 20px;
  }

  .core-value-content h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .core-value-content p {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Mission & Vision Section
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mission-vision-section {
  position: relative;
  padding: 100px 0 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.watermark-top-right {
  position: absolute;
  top: 265px;
  right: 60px;
  font-size: 150px;
  font-weight: 800;
  color: #f0f0f0;
  letter-spacing: 2px;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.watermark-bottom-left {
  position: absolute;
  bottom: 80px;
  left: 80px;
  font-size: 150px;
  font-weight: 800;
  color: #f0f0f0;
  letter-spacing: 2px;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  top: 10px;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 900px;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
}

.mission-vision-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 80px;
}

.mission-vision-subtitle {
  color: #666;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.mission-vision-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  word-spacing: 0.2em;
}

.mission-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.mission-vision-card {
  background: linear-gradient(135deg, #a8d5f7 0%, #7eaee5 50%, #5a8fc4 100%);
  border-radius: 20px;
  padding: 60px;
  color: white;
  position: relative;
  overflow: visible;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(126, 174, 229, 0.3),
              0 0 60px rgba(126, 174, 229, 0.2),
              inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.purpose-card {
  grid-column: 1;
  align-self: flex-start;
  text-align: left;
  margin-bottom: 0;
}

.legacy-card {
  grid-column: 2;
  align-self: flex-end;
  text-align: right;
  margin-top: 350px;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
}

.card-label {
  position: relative;
  z-index: 1;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 0.9;
}

.legacy-card .card-label {
  text-align: right;
}

.mission-vision-card h3 {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.mission-vision-card p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 920px) {
  .mission-vision-section {
    padding: 80px 0 60px 0;
  }

  .watermark-top-right {
    top: 60px;
    right: 60px;
    font-size: 48px;
  }

  .watermark-bottom-left {
    bottom: 60px;
    left: 60px;
    font-size: 48px;
  }

  .mission-vision-header {
    padding: 0 60px;
  }

  .mission-vision-header h2 {
    font-size: 42px;
  }

  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 60px;
  }

  .purpose-card,
  .legacy-card {
    text-align: left;
    align-self: auto !important;
    margin: 0 !important;
  }

  .legacy-card .card-label {
    text-align: left;
  }

  .mission-vision-card {
    padding: 50px;
    min-height: 280px;
  }

  .mission-vision-card h3 {
    font-size: 36px;
  }
}

@media (max-width: 580px) {
  .mission-vision-section {
    padding: 60px 0 40px 0;
  }

  .mission-vision-section::before {
    height: 400px;
  }

  .watermark-top-right {
    top: 0;
    right: 0;
    font-size: 32px;
  }

  .watermark-bottom-left {
    bottom: 40px;
    left: 40px;
    font-size: 32px;
  }

  .mission-vision-header {
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .mission-vision-header h2 {
    font-size: 32px;
  }

  .mission-vision-container {
    gap: 20px;
    padding: 0 24px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .mission-vision-card {
    padding: 30px;
  }

  .purpose-card {
    text-align: left;
    margin-bottom: 0;
    align-self: auto;
  }

  .legacy-card {
    text-align: left;
    margin-top: 0;
    align-self: auto;
  }

  .legacy-card .card-label {
    text-align: left;
  }

  .mission-vision-card h3 {
    font-size: 28px;
  }

  .mission-vision-card p {
    font-size: 14px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Client Promise Section (After Mission & Vision)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.client-promise-section {
  position: relative;
  padding: 40px 0 0 0;
  background: linear-gradient(180deg, #89b8e5 0%, #a8cde8 30%, #b8d4ee 60%, #c4d9f0 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 950px;
}

.client-promise-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(137,184,229,0) 0%, rgba(137,184,229,0.3) 40%, rgba(120,170,220,0.55) 70%, rgba(100,155,210,0.75) 100%);
  z-index: 5;
  pointer-events: none;
}

.client-promise-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.client-promise-inner {
  max-width: 1200px;
  width: 100%;
  position: static;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  margin-top: 0;
}

.client-promise-header {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 980px;
  z-index: 5;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: auto;
}

.client-promise-header h2 {
  font-size: 62px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #555;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.client-promise-text {
  font-size: 17px;
  line-height: 1.65;
  color: #666;
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
}

.client-promise-btn {
  align-self: center;
  padding: 12px 38px;
  border: none;
  border-radius: 50px;
  background: #7eaee5;
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(126, 174, 229, 0.4);
}

.client-promise-btn:hover {
  background: #6a9dc8;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(126, 174, 229, 0.5);
}

.client-promise-image {
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 0;
  z-index: 4;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
  border: none;
  box-shadow: none;
  transform: none;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.client-promise-image:hover {
  box-shadow: none;
  transform: none;
}

.client-promise-image img {
  width: 100%;
  display: block;
  max-width: 100%;
}

@media (max-width: 920px) {
  .client-promise-section {
    padding: 80px 80px 40px 80px;
    min-height: auto;
    background: linear-gradient(135deg, #b8d4ee 0%, #aecbe8 50%, #c4d9f0 100%);
  }

  .client-promise-inner {
    max-width: 100%;
  }

  .client-promise-bg {
    width: 700px;
    height: 500px;
  }

  .client-promise-header h2 {
    font-size: 32px;
  }

  .client-promise-text {
    font-size: 13px;
  }

  .client-promise-image {
    margin-bottom: 0;
  }
}

@media (max-width: 580px) {
  .client-promise-section {
    padding: 40px 20px 0 20px;
    min-height: auto;
    background: linear-gradient(135deg, #b8d4ee 0%, #aecbe8 50%, #c4d9f0 100%);
    display: block;
    overflow: visible;
  }

  .client-promise-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(180deg, rgba(137,184,229,0) 0%, rgba(137,184,229,0.3) 40%, rgba(120,170,220,0.55) 70%, rgba(100,155,210,0.75) 100%);
    z-index: 5;
    pointer-events: none;
  }

  .client-promise-inner {
    max-width: 100%;
    display: block;
  }

  .client-promise-bg {
    display: none;
  }

  .client-promise-header {
    position: relative;
    max-width: 100%;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 20px;
  }

  .client-promise-header h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #555;
  }

  .client-promise-text {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .client-promise-btn {
    font-size: 11px;
    padding: 10px 30px;
    margin-bottom: -100px;
  }

  .client-promise-image {
    position: relative;
    max-width: 100%;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .client-promise-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Contact Section (After FAQ)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section{
  background: linear-gradient(to right, #dce9f5 0%, #f0f6fc 40%, #ffffff 100%);
  padding: 54px 0 60px;
  overflow: hidden;
}

.contact-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-grid{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.contact-left{
  flex: 1 1 420px;
  padding-top: 12px;
}

.contact-kicker{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #222;
  margin-bottom: 10px;
}

.contact-heading{
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.08;
  font-weight: 600;
  color: #a3c4e0;
  margin-bottom: 26px;
  font-family: var(--awad-sans-bold);
  white-space: nowrap;
}

.contact-group{
  margin-bottom: 22px;
}

.contact-group-title{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-list-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-row{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.contact-info-value{
  margin-left: 24px;
  font-size: 13.2px;
  color: rgba(17, 59, 102, 0.86);
  font-weight: 700;
}

.contact-icon{
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 20px;
}

.contact-icon-pin{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236da6e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-4.35-7-11a7 7 0 0 1 14 0c0 6.65-7 11-7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.contact-icon-mail{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236da6e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m4 6 8 7 8-7'/%3E%3C/svg%3E");
}

.contact-icon-phone{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236da6e3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.86 19.86 0 0 1 3 5.18 2 2 0 0 1 5.08 3h3a2 2 0 0 1 2 1.72c.12.81.32 1.6.59 2.36a2 2 0 0 1-.45 2.11L9.09 10.91a16 16 0 0 0 4 4l1.72-1.12a2 2 0 0 1 2.11-.45c.76.27 1.55.47 2.36.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-form-card{
  flex: 0 1 520px;
  min-width: 0;
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  border: 1px solid rgba(210, 225, 245, 0.9);
  box-shadow: 0 18px 70px rgba(0,0,0,0.06);
  padding: 28px 26px 24px;
}

.contact-form-brand{
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.contact-form-brand-mark{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  width: auto;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  /* Logo-only container */
}

.contact-form-logo{
  width: 110px;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row{
  display: grid;
  gap: 16px;
}

.contact-row-2{
  grid-template-columns: 1fr 1fr;
}

.contact-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label{
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(90, 110, 135, 0.85);
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea{
  width: 100%;
  border: 1px solid rgba(120, 140, 170, 0.35);
  border-radius: 10px;
  padding: 12px 12px;
  outline: none;
  background: rgba(255,255,255,0.9);
  font-size: 13px;
  color: rgba(17, 59, 102, 0.9);
}

.contact-field select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17,59,102,0.7) 50%),
    linear-gradient(135deg, rgba(17,59,102,0.7) 50%, transparent 50%),
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px),
    100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

.contact-field-full{
  width: 100%;
}

.contact-submit{
  align-self: center;
  width: 260px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(180deg, #86b7f0 0%, #6da6e3 100%);
  color: #fff;
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(126, 174, 229, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-submit:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

@media (max-width: 920px){
  .contact-grid{
    flex-direction: column;
    gap: 26px;
  }
  .contact-form-card{
    flex: 1 1 auto;
    width: 100%;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Practice Areas Page
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pa-hero {
  display: none;
}

.pa-hero::before {
  display: none;
}

.pa-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.pa-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7a8a9a;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pa-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-family: var(--awad-sans);
  font-weight: 700;
  color: #1b2b42;
}

.pa-section {
  background: #ffffff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.pa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
}

.pa-section::after {
  content: 'AWAD\ALaw Firm';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  color: rgba(200, 220, 240, 0.15);
  line-height: 1;
  white-space: pre;
  pointer-events: none;
  z-index: 0;
}

.pa-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.pa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pa-card {
  display: flex;
  flex-direction: column;
}

.pa-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
}

.pa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pa-card:hover .pa-card-img img {
  transform: scale(1.05);
}

.pa-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 0;
}

.pa-card-label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1b2b42;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pa-card-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #6da6e3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.pa-card-btn:hover {
  background: #5a94d1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .pa-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .pa-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Practice Detail Page (Car Accidents, etc.)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-section {
  background: #ffffff;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.pd-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
}

.pd-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}

.pd-header {
  text-align: center;
  margin-bottom: 24px;
}

.pd-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: #1b2b42;
  line-height: 1.25;
  font-family: var(--awad-sans);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESULTS PAGE â€” GLASSMORPHISM CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.results-section {
  position: relative;
  padding: 100px 80px;
  background: linear-gradient(135deg, #eaf2fb 0%, #f0f6ff 30%, #e8f0fe 60%, #f5f8ff 100%);
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 166, 227, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.results-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(109, 166, 227, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.results-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.results-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #6da6e3;
  margin-bottom: 16px;
  font-weight: 600;
}

.results-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.2;
}

.results-header h2 .blue {
  color: #6da6e3;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Glassmorphism Card */
.result-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: default;
  box-shadow: 0 4px 24px rgba(109, 166, 227, 0.08);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(109, 166, 227, 0.12), 0 0 40px rgba(109, 166, 227, 0.06);
  border-color: rgba(109, 166, 227, 0.3);
}

.result-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.result-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
}

.result-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-card:hover .result-card-img img {
  transform: scale(1.05);
}

.result-card-body {
  padding: 28px 24px 32px;
}

.result-amount {
  font-size: 28px;
  font-weight: 800;
  color: #6da6e3;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.result-title {
  font-size: 15px;
  font-weight: 700;
  color: #1b2b42;
  margin-bottom: 14px;
  line-height: 1.4;
}

.result-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}

.result-desc strong {
  color: #6da6e3;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .results-section {
    padding: 80px 40px;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .results-section {
    padding: 60px 20px;
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .result-amount {
    font-size: 24px;
  }
}

.pd-title strong {
  font-weight: 700;
  color: #6da6e3;
}

.pd-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7a8a9a;
  text-transform: uppercase;
  margin-top: 8px;
}

.pd-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  text-align: center;
  margin-bottom: 34px;
}

.pd-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.pd-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pd-divider {
  border: none;
  border-top: 2px solid #1b2b42;
  width: 80px;
  margin: 28px 0;
}

.pd-content-block {
  margin-bottom: 10px;
}

.pd-content-block p {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.pd-spacer {
  height: 30px;
}

.pd-content-block p strong {
  font-weight: 700;
  color: #1b2b42;
}

.pd-cta-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: #6da6e3;
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: var(--awad-sans-bold);
}

.pd-cta-underline {
  text-decoration: none;
}

.pd-cta-title.pd-cta-underline::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: #1b2b42;
  margin-top: 6px;
}

.pd-text {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .pd-inner {
    padding: 0 20px;
  }
  .pd-title {
    font-size: 26px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Contact Page (cp-)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Animations â”€â”€ */
@keyframes cpFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cpFadeDown {
  from { opacity: 0; transform: translateY(-36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cpFadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cpFadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cpScaleX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes cpPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,166,227,0.25); }
  50%      { box-shadow: 0 0 24px 6px rgba(109,166,227,0.18); }
}
@keyframes cpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes cpGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cp-animate {
  opacity: 0;
}
.cp-animate.cp-visible {
  opacity: 1;
}
.cp-animate.cp-visible[data-anim="fadeUp"] {
  animation: cpFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.cp-animate.cp-visible[data-anim="fadeDown"] {
  animation: cpFadeDown 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.cp-animate.cp-visible[data-anim="fadeRight"] {
  animation: cpFadeRight 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.cp-animate.cp-visible[data-anim="fadeLeft"] {
  animation: cpFadeLeft 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.cp-animate.cp-visible[data-anim="scaleX"] {
  animation: cpScaleX 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* â”€â”€ Hero â”€â”€ */
.cp-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf2fb 0%, #dde9f7 40%, #e4eef9 70%, #f0f6ff 100%);
  background-size: 200% 200%;
  animation: cpGradientShift 12s ease infinite;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(109,166,227,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(109,166,227,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cp-hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.cp-hero-logo {
  margin-bottom: 28px;
}
.cp-hero-logo img {
  width: 140px;
  height: auto;
  opacity: 0.92;
  animation: cpFloat 4s ease-in-out infinite;
}
.cp-hero-title {
  font-family: var(--awad-sans-bold);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  color: #1b2b42;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cp-hero-subtitle {
  font-family: var(--awad-sans);
  font-size: 18px;
  font-weight: 300;
  color: #555;
  margin: 0 0 30px;
  letter-spacing: 0.01em;
}
.cp-hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6da6e3, #a3c4e0);
  margin: 0 auto;
  border-radius: 4px;
  transform-origin: center;
}

/* â”€â”€ Info Cards â”€â”€ */
.cp-info {
  background: linear-gradient(135deg, #eaf2fb 0%, #f0f6ff 50%, #e8f0fe 100%);
  padding: 40px 0 50px;
  position: relative;
  z-index: 2;
}
.cp-info-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cp-info-card {
  background: #ffffff;
  border: 1px solid rgba(210,225,245,0.7);
  border-radius: 18px;
  padding: 36px 28px 30px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cp-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(109,166,227,0.12);
}
.cp-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0fa, #dce9f5);
  color: #6da6e3;
  animation: cpPulseGlow 3s ease-in-out infinite;
}
.cp-info-label {
  font-family: var(--awad-sans-bold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 8px;
}
.cp-info-value {
  font-family: var(--awad-sans-bold);
  font-size: 17px;
  font-weight: 600;
  color: #6da6e3;
  margin: 0 0 6px;
}
.cp-info-note {
  font-size: 13px;
  color: rgba(34,34,34,0.5);
  margin: 0;
  font-weight: 400;
}

/* â”€â”€ Main Section â”€â”€ */
.cp-main {
  background: linear-gradient(to right, #dce9f5 0%, #f0f6fc 40%, #ffffff 100%);
  padding: 60px 0 70px;
}
.cp-main-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

/* â”€â”€ Left: Offices â”€â”€ */
.cp-left {}

.cp-offices-heading {
  font-family: var(--awad-sans-bold);
  font-size: 28px;
  font-weight: 700;
  color: #1a2d45;
  margin: 0 0 24px;
}

.cp-office-card {
  background: #ffffff;
  border: 1px solid rgba(210,225,245,0.7);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cp-office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(109,166,227,0.1);
}
.cp-office-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #6da6e3;
  background: rgba(109,166,227,0.1);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.cp-office-address {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.55;
  margin: 0 0 10px;
}
.cp-office-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(34,34,34,0.55);
}
.cp-office-hours svg {
  color: #6da6e3;
  flex-shrink: 0;
}

.cp-map-wrap {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* â”€â”€ Right: Form Card â”€â”€ */
.cp-form-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(210,225,245,0.9);
  border-radius: 20px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.06);
  padding: 36px 32px 32px;
}
.cp-form-header {
  text-align: center;
  margin-bottom: 28px;
}
.cp-form-logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}
.cp-form-title {
  font-family: var(--awad-sans-bold);
  font-size: 22px;
  font-weight: 700;
  color: #1a2d45;
  margin: 0 0 6px;
}
.cp-form-subtitle {
  font-size: 14px;
  color: rgba(34,34,34,0.5);
  margin: 0;
  font-weight: 400;
}

.cp-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cp-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cp-form-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(90,110,135,0.85);
  text-transform: uppercase;
}
.cp-form-field input,
.cp-form-field select,
.cp-form-field textarea {
  width: 100%;
  border: 1px solid rgba(120,140,170,0.3);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  background: rgba(255,255,255,0.9);
  font-size: 14px;
  color: rgba(17,59,102,0.9);
  font-family: var(--awad-sans);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cp-form-field input:focus,
.cp-form-field select:focus,
.cp-form-field textarea:focus {
  border-color: #6da6e3;
  box-shadow: 0 0 0 3px rgba(109,166,227,0.12);
}
.cp-form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17,59,102,0.7) 50%),
    linear-gradient(135deg, rgba(17,59,102,0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.cp-form-field-full {
  width: 100%;
}

.cp-form-submit {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 280px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(135deg, #86b7f0 0%, #6da6e3 50%, #5590d0 100%);
  background-size: 200% 200%;
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 45px rgba(109,166,227,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
  overflow: hidden;
  margin-top: 6px;
}
.cp-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(109,166,227,0.38);
  background-position: 100% 50%;
}
.cp-form-submit:active {
  transform: translateY(0);
}
.cp-form-submit-text,
.cp-form-submit-icon {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cp-form-submit.cp-submitted .cp-form-submit-text,
.cp-form-submit.cp-submitted .cp-form-submit-icon {
  opacity: 0;
  transform: translateY(-10px);
}
.cp-form-submit-success {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}
.cp-form-submit.cp-submitted .cp-form-submit-success {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ CTA Banner â”€â”€ */
.cp-cta {
  background: linear-gradient(135deg, #eaf2fb 0%, #dde9f7 50%, #e4eef9 100%);
  padding: 60px 32px;
  text-align: center;
}
.cp-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cp-cta-title {
  font-family: var(--awad-sans-bold);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #1b2b42;
  margin: 0 0 12px;
}
.cp-cta-text {
  font-size: 16px;
  color: #555;
  margin: 0 0 28px;
  font-weight: 300;
  line-height: 1.6;
}
.cp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #86b7f0, #6da6e3);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(109,166,227,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(109,166,227,0.4);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 920px) {
  .cp-main-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cp-info-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cp-form-row {
    grid-template-columns: 1fr;
  }
  .cp-hero {
    padding: 100px 0 60px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HAMBURGER + MOBILE NAV
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hamburger button â€“ hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  flex-shrink: 0;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: #1b1f24;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€ Mobile breakpoint â”€â”€ */
@media (max-width: 900px) {

  /* Navbar */
  .navbar {
    padding: 14px 20px;
    position: relative;
    z-index: 1000;
  }

  /* Hide desktop nav & icons */
  .navbar > nav,
  .navbar .nav-icons {
    display: none !important;
  }

  /* Show hamburger */
  .nav-hamburger {
    display: flex;
  }

  /* Logo size */
  .logo img {
    height: 54px;
  }

  /* â”€â”€ Open state: slide-down nav panel â”€â”€ */
  .navbar.nav-open > nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1050;
    padding: 90px 28px 40px;
    gap: 0;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    animation: mobileNavIn 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .navbar.nav-open > nav > a {
    padding: 16px 0;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #f0f4fa;
    color: #1b1f24;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* Dropdown in mobile menu */
  .navbar.nav-open .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-bottom: 1px solid #f0f4fa;
  }

  .navbar.nav-open .nav-dropdown-toggle {
    padding: 16px 0;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
  }

  /* Dropdown submenu accordion */
  .navbar.nav-open .nav-dropdown-menu {
    position: static;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #f7fafd;
    border-radius: 10px;
    margin: 0 0 12px;
    padding: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  .navbar.nav-open .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    max-height: 500px;
    padding: 8px 0;
  }

  .navbar.nav-open .nav-dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar.nav-open .nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(-135deg);
  }

  .navbar.nav-open .nav-dropdown-item {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Hamburger sits on top of open menu */
  .navbar.nav-open .nav-hamburger {
    z-index: 1100;
    position: relative;
  }

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â• Section / Layout fixes â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 36px 24px 0;
    margin: 12px 16px;
    text-align: center;
    background-position: center bottom, center, center;
    min-height: unset;
    overflow: visible;
  }

  .hero-left {
    max-width: 100%;
    align-items: center;
    height: auto;
  }

  .hero-left h1 {
    font-size: 32px;
    white-space: normal;
    margin-left: 0;
  }

  .hero-left p {
    margin-left: 0;
    font-size: 17px;
    margin-bottom: 24px;
  }

  /* CTA: remove absolute positioning on mobile */
  .cta {
    position: static;
    bottom: auto;
    left: auto;
    margin: 0 auto 32px;
    display: block;
    width: fit-content;
    padding: 16px 36px;
    font-size: 15px;
  }

  /* Hero image: sit below the text, grow naturally */
  .hero-right {
    width: 100%;
    height: auto;
    margin-top: -80px;
    overflow: visible;
  }

  .hero-right img {
    position: relative;
    width: 150%;
    height: auto;
    max-height: 340px;
    left: auto;
    top: 15px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }

  /* Partners */
  .partners {
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
  }

  .partners h2 {
    font-size: 22px;
    padding: 0 20px;
  }

  .logos-marquee-wrapper {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* General section padding */
  section {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* Contact section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-inner {
    padding: 40px 20px;
  }

  .contact-row-2 {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-inner {
    padding: 40px 20px;
  }

  .t-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .t-header-left h2 {
    font-size: 26px;
  }

  .t-review-sources {
    flex-wrap: wrap;
    gap: 8px;
  }

  .t-header-right {
    width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 14px 18px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .t-rating-score {
    font-size: 15px;
  }

  .t-review-count {
    font-size: 12px;
  }

  .t-view-all {
    font-size: 12px;
  }

  /* Video carousel */
  .cs-section .cs-inner {
    padding: 40px 20px;
  }

  .cs-card {
    flex: 0 0 calc(100% - 4px);
  }

  .cs-heading-row {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 26px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .cs-card {
    flex: 0 0 calc(100% - 4px);
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEO: Breadcrumb Navigation
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumb {
  background: #f5f8fc;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 80px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '\203A';
  color: #9ca3af;
  font-size: 14px;
}

.breadcrumb-list a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: #7eaee5;
}

.breadcrumb-list li[aria-current="page"] {
  color: #1b2b42;
  font-weight: 600;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEO: Footer â€” Location Addresses
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-locations {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 28px 40px 18px;
  flex-wrap: wrap;
}

.footer-locations address {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.footer-locations address strong {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 14px 40px;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEO: Hub Back-Link Banner (Spoke Pages)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hub-backlink {
  background: linear-gradient(135deg, #e8f1fb 0%, #d4e5f4 100%);
  border-left: 4px solid #7eaee5;
  border-radius: 10px;
  padding: 16px 24px;
  margin: 28px auto;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.hub-backlink p {
  font-size: 13px;
  color: #3d4a5a;
  margin: 0;
}

.hub-backlink a {
  font-size: 13px;
  font-weight: 700;
  color: #4a8ac7;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}

.hub-backlink a:hover {
  color: #2d6fa3;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEO: Related Case Results (Spoke Pages)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-results {
  background: #ffffff;
  border: 1px solid #dce9f5;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 0 auto 28px;
  max-width: 800px;
}

.related-results-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a8a9a;
  margin-bottom: 14px;
}

.related-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.related-results-card {
  background: linear-gradient(135deg, #f0f6fb 0%, #e8f1f8 100%);
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(126,174,229,0.2);
}

.related-results-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(126,174,229,0.15);
}

.related-results-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1b2b42;
  margin-bottom: 4px;
}

.related-results-card span {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  display: block;
}

@media (max-width: 600px) {
  .related-results-grid {
    grid-template-columns: 1fr;
  }
  .hub-backlink {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-locations {
    gap: 30px;
    padding: 22px 20px 14px;
  }
  .breadcrumb {
    padding: 8px 16px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EDUCATION PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero â”€â”€ */
.edu-hero {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 82px 0 90px;
  position: relative;
  overflow: hidden;
}
.edu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
}
.edu-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.edu-hero-kicker {
  display: inline-block;
  background: rgba(106, 158, 200, 0.12);
  border: 1px solid rgba(106, 158, 200, 0.35);
  color: #6a9ec8;
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.edu-hero h1 {
  font-family: var(--awad-sans-bold);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.edu-hero h1 strong {
  color: #6a9ec8;
}
.edu-hero-desc {
  font-family: var(--awad-sans);
  font-size: 17px;
  color: #5a6a7a;
  line-height: 1.72;
  max-width: 660px;
  margin: 0 auto 36px;
}
.edu-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.edu-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 30px;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
}
.edu-hero-btn.primary {
  background: linear-gradient(90deg, #5f9fd4 0%, #7eb9f0 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(91, 159, 216, 0.38);
}
.edu-hero-btn.primary:hover {
  background: linear-gradient(90deg, #4d8fc4 0%, #6daae0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(91, 159, 216, 0.5);
}
.edu-hero-btn.secondary {
  background: rgba(27, 43, 66, 0.06);
  color: #1b2b42;
  border: 1px solid rgba(27, 43, 66, 0.22);
}
.edu-hero-btn.secondary:hover {
  background: rgba(27, 43, 66, 0.1);
  transform: translateY(-2px);
}

/* â”€â”€ Stats Bar â”€â”€ */
.edu-stats {
  background: #ffffff;
  border-bottom: 1px solid #e2eaf3;
}
.edu-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.edu-stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid #e2eaf3;
}
.edu-stat-item:last-child {
  border-right: none;
}
.edu-stat-number {
  font-family: var(--awad-sans-bold);
  font-size: 44px;
  font-weight: 700;
  color: #6a9ec8;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.edu-stat-label {
  font-family: var(--awad-sans);
  font-size: 12px;
  font-weight: 600;
  color: #5a6a7a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

/* â”€â”€ Article Cards Section â”€â”€ */
.edu-cards-section {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 74px 0 82px;
  position: relative;
}
.edu-cards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}
.edu-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.edu-section-header {
  margin-bottom: 44px;
}
.edu-section-kicker {
  display: inline-block;
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8aaecc;
  margin-bottom: 10px;
}
.edu-section-heading {
  font-family: var(--awad-sans-bold);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.22;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.edu-section-desc {
  font-family: var(--awad-sans);
  font-size: 16px;
  color: #5a6a7a;
  line-height: 1.65;
  max-width: 620px;
}

/* â”€â”€ Deep Article Sections â”€â”€ */
.edu-deep {
  background: #f5f8fc;
  padding: 74px 0 82px;
}
.edu-deep-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
.edu-deep-header {
  text-align: center;
  margin-bottom: 56px;
}
.edu-article + .edu-article {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid #d8e6f2;
}
.edu-article-num {
  display: inline-block;
  font-family: var(--awad-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7eaee5;
  background: rgba(110, 174, 230, 0.12);
  border: 1px solid rgba(110, 174, 230, 0.25);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.edu-article h2 {
  font-family: var(--awad-sans-bold);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.edu-article-body {
  font-family: var(--awad-sans);
  font-size: 16px;
  color: #3d4a5a;
  line-height: 1.76;
}
.edu-article-body p {
  margin: 0 0 16px;
}
.edu-article-body h3 {
  font-family: var(--awad-sans-bold);
  font-size: 17px;
  font-weight: 600;
  color: #1b2b42;
  margin: 28px 0 10px;
}
.edu-article-body ul,
.edu-article-body ol {
  padding-left: 24px;
  margin: 14px 0 18px;
}
.edu-article-body li {
  margin-bottom: 9px;
  color: #3d4a5a;
}
.edu-article-body strong {
  color: #1b2b42;
}
.edu-article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a9ec8;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(106, 158, 200, 0.35);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.edu-article-link:hover {
  color: #2a6098;
  border-color: #2a6098;
}

/* â”€â”€ Checklist CTA â”€â”€ */
.edu-checklist {
  background: linear-gradient(100deg, #2a4565 0%, #1b2b42 100%);
  padding: 62px 0 66px;
  position: relative;
  overflow: hidden;
}
.edu-checklist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.edu-checklist-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.edu-checklist-text {
  flex: 1 1 360px;
}
.edu-checklist-eyebrow {
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #86bde8;
  margin-bottom: 10px;
}
.edu-checklist-title {
  font-family: var(--awad-sans-bold);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.edu-checklist-desc {
  font-family: var(--awad-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}
.edu-checklist-action {
  flex: 0 0 auto;
}
.edu-checklist-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #5f9fd4 0%, #7eb9f0 100%);
  color: #fff;
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(91, 159, 216, 0.38);
  transition: all 0.22s ease;
  white-space: nowrap;
}
.edu-checklist-btn:hover {
  background: linear-gradient(90deg, #4d8fc4 0%, #6daae0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91, 159, 216, 0.5);
}

/* â”€â”€ FAQ Accordion â”€â”€ */
.edu-faq {
  background: linear-gradient(180deg, #e8f1f8 0%, #eef4fa 100%);
  padding: 74px 0 82px;
  position: relative;
}
.edu-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.edu-faq-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.edu-faq-header {
  text-align: center;
  margin-bottom: 46px;
}
.edu-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.edu-faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(163, 196, 224, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(91, 159, 216, 0.06);
  transition: box-shadow 0.2s;
}
.edu-faq-item:hover {
  box-shadow: 0 4px 20px rgba(91, 159, 216, 0.12);
}
.edu-faq-item.open .edu-faq-answer {
  max-height: 600px;
  padding: 0 22px 20px;
}
.edu-faq-item.open .edu-faq-icon {
  transform: rotate(45deg);
}
.edu-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
  -webkit-user-select: none;
  user-select: none;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
}
.edu-faq-q-text {
  font-family: var(--awad-sans-bold);
  font-size: 15px;
  font-weight: 600;
  color: #1b2b42;
  line-height: 1.35;
}
.edu-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #6a9ec8, #7eb9f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  color: #fff;
}
.edu-faq-icon svg {
  width: 12px;
  height: 12px;
}
.edu-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}
.edu-faq-answer p {
  font-family: var(--awad-sans);
  font-size: 15px;
  color: #3d4a5a;
  line-height: 1.72;
  margin: 0;
}
.edu-faq-answer strong {
  color: #1b2b42;
}

/* â”€â”€ Education Responsive â”€â”€ */
@media (max-width: 900px) {
  .edu-checklist-inner {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
  }
  .edu-checklist-text {
    flex: 0 1 auto;
  }
  .edu-checklist-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .edu-stat-number {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .edu-hero {
    padding: 62px 0 70px;
  }
  .edu-hero-inner {
    padding: 0 22px;
  }
  .edu-stats-inner {
    grid-template-columns: 1fr;
  }
  .edu-stat-item {
    border-right: none;
    border-bottom: 1px solid #e2eaf3;
    padding: 20px 22px;
  }
  .edu-stat-item:last-child {
    border-bottom: none;
  }
  .edu-cards-inner,
  .edu-deep-inner,
  .edu-faq-inner {
    padding: 0 18px;
  }
  .edu-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .edu-checklist-inner {
    padding: 0 22px;
    gap: 14px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TEDX PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero â”€â”€ */
.tedx-hero {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.tedx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') top center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, transparent 100%);
}
.tedx-hero::after {
  content: none;
}
.tedx-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tedx-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(106, 158, 200, 0.12);
  border: 1px solid rgba(106, 158, 200, 0.35);
  color: #6a9ec8;
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 26px;
}
.tedx-badge-dot {
  width: 8px;
  height: 8px;
  background: #6a9ec8;
  border-radius: 50%;
  flex-shrink: 0;
}
.tedx-hero h1 {
  font-family: var(--awad-sans-bold);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.14;
  margin: 0 0 10px;
  letter-spacing: -0.025em;
}
.tedx-hero h1 em {
  font-style: italic;
  color: #6a9ec8;
}
.tedx-hero-subtitle {
  font-family: var(--awad-sans-bold);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  color: #5a6a7a;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}
.tedx-hero-desc {
  font-family: var(--awad-sans);
  font-size: 17px;
  color: #5a6a7a;
  line-height: 1.74;
  max-width: 820px;
  margin: 0 auto 38px;
}
.tedx-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tedx-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 600;
  color: #5a6a7a;
  letter-spacing: 0.04em;
}
.tedx-meta-item svg {
  color: #6a9ec8;
  flex-shrink: 0;
}
.tedx-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #5f9fd4 0%, #7eb9f0 100%);
  color: #fff;
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(91, 159, 216, 0.38);
  transition: all 0.22s ease;
  border: none;
  cursor: pointer;
}
.tedx-hero-btn:hover {
  background: linear-gradient(90deg, #4d8fc4 0%, #6daae0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 159, 216, 0.52);
}

/* â”€â”€ Video Section â”€â”€ */
.tedx-video-section {
  background: #f5f8fc;
  padding: 80px 0 90px;
}
.tedx-video-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.tedx-video-header {
  text-align: center;
  margin-bottom: 44px;
}
.tedx-section-kicker {
  display: inline-block;
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a9ec8;
  margin-bottom: 10px;
}
.tedx-section-heading {
  font-family: var(--awad-sans-bold);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.22;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.tedx-section-desc {
  font-family: var(--awad-sans);
  font-size: 16px;
  color: #5a6a7a;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 580px) {
  .tedx-section-desc {
    padding: 0 20px;
    font-size: 15px;
  }
}
.tedx-embed-caption {
  text-align: center;
  margin-top: 18px;
  font-family: var(--awad-sans);
  font-size: 13px;
  color: #8a9ab0;
  letter-spacing: 0.04em;
}

/* â”€â”€ Video embed (legacy, kept for other pages) â”€â”€ */
.tedx-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  background: #000;
}
.tedx-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* â”€â”€ Custom Click-to-Play Player â”€â”€ */
.tedx-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,0.22), 0 4px 20px rgba(0,0,0,0.12);
  background: #000;
}
.tedx-player-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.tedx-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tedx-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.22) 60%,
    rgba(0,0,0,0.55) 100%
  );
  transition: background 0.25s ease;
}
.tedx-player-thumb:hover .tedx-thumb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.14) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.62) 100%
  );
}
/* Play button */
.tedx-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Pulsing ring */
.tedx-play-ring {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.5);
  animation: tedxRingPulse 2s ease-in-out infinite;
}
@keyframes tedxRingPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  50%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1);    opacity: 0.6; }
}
/* Circle button */
.tedx-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5f9fd4 0%, #7eb9f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 28px rgba(91,159,216,0.55), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}
.tedx-player-thumb:hover .tedx-play-circle {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(91,159,216,0.7), 0 2px 10px rgba(0,0,0,0.35);
}
.tedx-play-circle svg {
  margin-left: 4px; /* optical center for play icon */
}
/* TEDx badge on thumbnail */
.tedx-thumb-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.88);
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}
.tedx-thumb-badge-dot {
  width: 7px;
  height: 7px;
  background: #6a9ec8;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Iframe frame (revealed after click) */
.tedx-player-frame {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.tedx-player-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* â”€â”€ About the Talk â”€â”€ */
.tedx-about {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 80px 0 88px;
  position: relative;
}
.tedx-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.tedx-about-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tedx-about-text h2 {
  font-family: var(--awad-sans-bold);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.22;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.tedx-about-text h2 em {
  font-style: italic;
  color: #6a9ec8;
}
.tedx-about-text p {
  font-family: var(--awad-sans);
  font-size: 16px;
  color: #3d4a5a;
  line-height: 1.76;
  margin: 0 0 18px;
}
.tedx-about-text p:last-child {
  margin-bottom: 0;
}
.tedx-about-text strong {
  color: #1b2b42;
}
/* Themes list */
.tedx-themes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tedx-theme-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(163,196,224,0.35);
  border-left: 4px solid #6a9ec8;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(91,159,216,0.07);
}
.tedx-theme-title {
  font-family: var(--awad-sans-bold);
  font-size: 14px;
  font-weight: 700;
  color: #1b2b42;
  margin-bottom: 5px;
}
.tedx-theme-desc {
  font-family: var(--awad-sans);
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.6;
  margin: 0;
}

/* â”€â”€ Pullquote â”€â”€ */
.tedx-quote {
  background: linear-gradient(135deg, #0d1c2e 0%, #1a2e46 100%);
  padding: 72px 0 76px;
  position: relative;
  overflow: hidden;
}
.tedx-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.tedx-quote::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(91,159,216,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.tedx-quote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.tedx-quote-mark {
  font-family: var(--awad-sans-bold);
  font-size: 80px;
  line-height: 0.6;
  color: #7eaee5;
  opacity: 0.6;
  display: block;
  margin-bottom: 16px;
  user-select: none;
}
.tedx-quote-text {
  font-family: var(--awad-sans-bold);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.42;
  font-style: italic;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.tedx-quote-attr {
  font-family: var(--awad-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.tedx-quote-attr span {
  color: #7eaee5;
}

/* â”€â”€ Speaker Section â”€â”€ */
.tedx-speaker {
  background: #ffffff;
  padding: 80px 0 88px;
}
.tedx-speaker-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}
.tedx-speaker-img {
  position: relative;
  width: 300px;
  height: 420px;
  flex-shrink: 0;
}
.tedx-speaker-kicker {
  display: inline-block;
  font-family: var(--awad-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a9ec8;
  margin-bottom: 10px;
}
.tedx-speaker-name {
  font-family: var(--awad-sans-bold);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #1b2b42;
  line-height: 1.2;
  margin: 0 0 6px;
}
.tedx-speaker-title {
  font-family: var(--awad-sans);
  font-size: 15px;
  color: #7a9ec0;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.tedx-speaker-bio {
  font-family: var(--awad-sans);
  font-size: 16px;
  color: #3d4a5a;
  line-height: 1.76;
}
.tedx-speaker-bio p {
  margin: 0 0 14px;
}
.tedx-speaker-bio p:last-child {
  margin: 0;
}
.tedx-speaker-bio strong {
  color: #1b2b42;
}
.tedx-speaker-links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tedx-speaker-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--awad-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s;
}
.tedx-speaker-link.primary {
  background: linear-gradient(90deg, #5f9fd4, #7eb9f0);
  color: #fff;
  box-shadow: 0 3px 14px rgba(91,159,216,0.3);
}
.tedx-speaker-link.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(91,159,216,0.44);
}
.tedx-speaker-link.outline {
  border: 1.5px solid rgba(106,158,200,0.4);
  color: #6a9ec8;
  background: transparent;
}
.tedx-speaker-link.outline:hover {
  background: rgba(106,158,200,0.07);
  transform: translateY(-2px);
}

/* â”€â”€ Key Takeaways â”€â”€ */
.tedx-takeaways {
  background: linear-gradient(180deg, #e8f1f8 0%, #dce9f5 40%, #eef4fa 100%);
  padding: 80px 0 88px;
  position: relative;
}
.tedx-takeaways::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/brokenefffect.png') center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.tedx-takeaways-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.tedx-takeaways-header {
  text-align: center;
  margin-bottom: 48px;
}
.tedx-takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tedx-takeaway-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(163,196,224,0.35);
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 4px 24px rgba(91,159,216,0.07);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tedx-takeaway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(91,159,216,0.14);
}
.tedx-takeaway-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #5f9fd4, #7eb9f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--awad-sans-bold);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.tedx-takeaway-title {
  font-family: var(--awad-sans-bold);
  font-size: 16px;
  font-weight: 700;
  color: #1b2b42;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tedx-takeaway-desc {
  font-family: var(--awad-sans);
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.65;
  margin: 0;
}

/* â”€â”€ TEDx Responsive â”€â”€ */
@media (max-width: 900px) {
  .tedx-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tedx-speaker-inner {
    grid-template-columns: 1fr;
  }
  .tedx-speaker-img {
    max-width: 260px;
    margin: 0 auto;
  }
  .tedx-takeaways-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .tedx-hero {
    padding: 66px 0 76px;
  }
  .tedx-hero-inner {
    padding: 0 22px;
  }
  .tedx-hero-meta {
    gap: 14px;
  }
  .tedx-about-inner,
  .tedx-speaker-inner,
  .tedx-takeaways-inner,
  .tedx-video-inner,
  .tedx-quote-inner {
    padding: 0 18px;
  }
  .tedx-takeaways-grid {
    grid-template-columns: 1fr;
  }
  .tedx-quote-text {
    font-size: 18px;
  }
  .tedx-speaker-links {
    flex-direction: column;
  }
}
/* FORCE single column on mobile */
@media (max-width: 600px) {
  .mission-vision-container {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
  .purpose-card,
  .legacy-card {
    grid-column: 1 !important;
    margin: 0 !important;
    align-self: auto !important;
    text-align: left !important;
  }
  .legacy-card .card-label {
    text-align: left !important;
  }
}

/* Global premium refresh */
:root {
  --awad-ink: #09111f;
  --awad-navy: #142844;
  --awad-blue: #4f94d8;
  --awad-sky: #dcecff;
  --awad-gold: #c7a45a;
  --awad-paper: #fbfcff;
  --awad-muted: #5f6d7c;
  --awad-line: rgba(20, 40, 68, 0.12);
  --awad-shadow: 0 22px 55px rgba(9, 17, 31, 0.12);
  --awad-soft-shadow: 0 14px 34px rgba(9, 17, 31, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 42%, #ffffff 100%);
  color: var(--awad-ink);
  font-family: var(--awad-sans);
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(199, 164, 90, 0.06) 0%, transparent 26%),
    linear-gradient(245deg, rgba(79, 148, 216, 0.08) 0%, transparent 34%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  margin: 14px auto 0;
  width: min( calc(100% - 32px), 1380px );
  padding: 12px 22px;
  border: 1px solid rgba(20, 40, 68, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(9, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

.logo img {
  height: 62px;
  filter: drop-shadow(0 10px 18px rgba(9, 17, 31, 0.12));
}

nav {
  gap: 24px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
}

nav a,
.nav-dropdown-toggle {
  color: var(--awad-navy);
  position: relative;
  transition: color 0.2s ease;
}

nav a::before,
.nav-dropdown-toggle::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: linear-gradient(90deg, var(--awad-gold), var(--awad-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

nav a:hover,
nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--awad-blue);
}

nav a:hover::before,
nav a.active::before,
.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle.active::before {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  border: 1px solid rgba(20, 40, 68, 0.12);
  border-radius: 8px;
  box-shadow: var(--awad-shadow);
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-dropdown-item {
  border-radius: 6px;
  color: var(--awad-navy);
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: linear-gradient(135deg, rgba(79, 148, 216, 0.12), rgba(199, 164, 90, 0.12));
  color: var(--awad-ink);
}

.nav-btn {
  border-radius: 8px;
  border-color: rgba(20, 40, 68, 0.18);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(9, 17, 31, 0.08);
}

.nav-btn:hover {
  background: var(--awad-navy);
}

.nav-btn:hover svg {
  color: #ffffff;
  stroke: #ffffff;
}

.hero {
  width: min(calc(100% - 32px), 1380px);
  min-height: 650px;
  margin: 22px auto 64px;
  padding: 72px 72px 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 32px 80px rgba(9, 17, 31, 0.18);
  background:
    linear-gradient(115deg, rgba(9, 17, 31, 0.88) 0%, rgba(20, 40, 68, 0.66) 43%, rgba(79, 148, 216, 0.24) 100%),
    url("assets/brokenglass.png"),
    url("assets/brokenefffect.png"),
    linear-gradient(135deg, #eff6ff 0%, #d8e9fb 56%, #ffffff 100%);
  background-size: cover, 560px 560px, cover, cover;
  background-position: center, calc(50% + 250px) 30px, center, center;
}

.hero::before {
  opacity: 0.2;
}

.hero::after {
  right: 120px;
  width: 42%;
  background: linear-gradient(135deg, rgba(199, 164, 90, 0.28), rgba(79, 148, 216, 0.16));
}

.hero-left {
  max-width: 720px;
  flex: 0 0 50%;
  z-index: 2;
}

.hero-left h1 {
  margin-left: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: normal;
}

.hero-left h1 .blue,
.hero-left .blue {
  color: #9dccff;
}

.pill {
  background: linear-gradient(135deg, var(--awad-gold), #e7c977);
  color: #09111f;
  box-shadow: 0 16px 34px rgba(199, 164, 90, 0.28);
}

.hero-left p {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.cta,
.edu-hero-btn,
.tedx-hero-btn,
.community-card-btn,
.cp-submit-btn,
.contact-submit,
.pa-card-btn {
  border: 0;
  box-shadow: 0 16px 34px rgba(79, 148, 216, 0.22);
}

.cta {
  position: static;
  margin-top: 34px;
  width: fit-content;
  background: linear-gradient(135deg, var(--awad-blue), #2d6fab);
  color: #ffffff;
  border-radius: 999px;
  padding: 18px 34px;
}

.cta:hover,
.edu-hero-btn:hover,
.tedx-hero-btn:hover,
.community-card-btn:hover,
.contact-submit:hover,
.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(9, 17, 31, 0.18);
}

.hero-right {
  flex: 0 0 46%;
  width: min(42vw, 560px);
  height: 580px;
  z-index: 1;
}

.hero-right img {
  width: auto;
  height: 150%;
  left: -45px;
  top: 36px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.28));
}

.partners {
  margin-top: 24px;
  padding: 0 24px;
}

.partners h2,
.origin-header h2,
.practice-header h2,
.t-header-left h2,
.results-header h2,
.core-values-header h1,
.mission-vision-header h2,
.client-promise-header h2,
.process-header h2,
.edu-section-heading,
.tedx-section-heading,
.pa-title,
.pd-title {
  color: var(--awad-navy);
  letter-spacing: 0;
}

.partners h2 span,
.blue,
.blue-italic,
.results-header h2 .blue {
  color: var(--awad-blue);
}

.logos-marquee-wrapper {
  border: 1px solid var(--awad-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--awad-soft-shadow);
}

.origin-story,
.team-section,
.five-steps-section,
.community-section,
.bio-section,
.anniversary-section,
.faq-with-image-section,
.process-section,
.why-choose-section,
.core-values-section,
.mission-vision-section,
.client-promise-section,
.contact-section,
.pa-section,
.pd-section,
.results-section,
.edu-cards-section,
.tedx-video-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,255,0.96));
}

.origin-card,
.t-card,
.cs-card,
.team-card,
.five-steps-card,
.community-card,
.anniversary-right,
.faq-card,
.process-step,
.why-choose-card,
.core-value-card,
.mission-vision-card,
.client-promise-card,
.contact-info-card,
.contact-form-card,
.pa-card,
.result-card,
.edu-card,
.tedx-theme-card,
.tedx-takeaway-card,
.cp-info-card,
.cp-office-card,
.cp-form-card,
.related-results-card {
  border-radius: 8px !important;
  border: 1px solid rgba(20, 40, 68, 0.12);
  box-shadow: var(--awad-soft-shadow);
}

.t-card:hover,
.cs-card:hover,
.team-card:hover,
.five-steps-card:hover,
.community-card:hover,
.why-choose-card:hover,
.pa-card:hover,
.result-card:hover,
.edu-card:hover,
.tedx-theme-card:hover,
.tedx-takeaway-card:hover,
.cp-info-card:hover,
.cp-office-card:hover,
.related-results-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--awad-shadow);
}

.pa-section,
.pd-section,
.results-section,
.contact-section,
.core-values-section,
.mission-vision-section,
.community-section,
.edu-cards-section,
.tedx-video-section {
  padding-top: 96px;
}

.pa-hero-inner,
.results-header,
.contact-header,
.core-values-header,
.mission-vision-header,
.community-header,
.edu-section-header,
.tedx-video-header,
.pd-header {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.pa-hero-inner::after,
.results-header::after,
.contact-header::after,
.core-values-header::after,
.mission-vision-header::after,
.community-header::after,
.edu-section-header::after,
.tedx-video-header::after,
.pd-header::after {
  content: '';
  display: block;
  width: 74px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--awad-gold), var(--awad-blue));
}

.pa-section::after {
  color: rgba(20, 40, 68, 0.06);
}

.pa-grid,
.results-grid,
.community-grid,
.why-choose-grid,
.core-values-grid,
.edu-grid,
.tedx-takeaways-grid {
  gap: 24px;
}

.pa-card {
  padding: 10px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pa-card-img,
.result-card-img,
.community-card-img {
  border-radius: 6px;
}

.pa-card-label {
  text-decoration: none;
  color: var(--awad-navy);
  letter-spacing: 0.04em;
}

.pa-card-btn {
  background: linear-gradient(135deg, var(--awad-navy), var(--awad-blue));
}

.breadcrumb {
  margin: 18px auto 0;
  width: min(calc(100% - 32px), 1380px);
  padding: 12px 22px;
  border: 1px solid var(--awad-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
}

.site-footer {
  margin-top: 0;
  padding: 34px 24px;
  background:
    linear-gradient(135deg, #07101d 0%, #142844 100%);
  border-top: 1px solid rgba(199, 164, 90, 0.28);
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  color: rgba(255,255,255,0.76);
}

.footer-locations {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}

.footer-locations address strong {
  color: #ffffff;
}

.footer-copy {
  color: rgba(255,255,255,0.56);
}

.awad-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.awad-reveal.awad-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .navbar {
    width: min(calc(100% - 24px), 1000px);
  }

  nav {
    gap: 16px;
    font-size: 11px;
  }

  .hero {
    padding: 56px 42px 28px;
  }

  .hero-right img {
    left: -25px;
  }
}

@media (max-width: 900px) {
  .navbar {
    position: sticky;
    margin-top: 10px;
    padding: 12px 16px;
    width: calc(100% - 20px);
  }

  .navbar.nav-open > nav {
    background:
      linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  }

  .hero {
    width: calc(100% - 24px);
    margin: 14px auto 44px;
    padding: 42px 24px 0;
    min-height: 0;
    overflow: hidden;
  }

  .hero-left h1 {
    font-size: clamp(34px, 9vw, 54px);
  }

  .hero-left p {
    color: rgba(255,255,255,0.86);
  }

  .hero-right {
    width: 100%;
    margin-top: -28px;
  }

  .hero-right img {
    width: 128%;
    max-height: 390px;
    top: 26px;
    left: 0;
  }

  .pa-section,
  .pd-section,
  .results-section,
  .contact-section,
  .core-values-section,
  .mission-vision-section,
  .community-section,
  .edu-cards-section,
  .tedx-video-section {
    padding-top: 64px;
  }
}

@media (max-width: 560px) {
  .navbar {
    align-items: center;
    justify-content: space-between;
  }

  .nav-hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .logo img {
    height: 50px;
  }

  .hero {
    padding: 34px 18px 0;
  }

  .hero-left {
    width: 100%;
  }

  .hero-left h1 {
    width: 100%;
    font-size: 30px;
    line-height: 1.14;
  }

  .hero-left h1 > div {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px !important;
    max-width: 100%;
  }

  .pill {
    padding: 4px 14px;
  }

  .hero-left p {
    max-width: 100%;
    font-size: 16px;
  }

  .cta {
    width: auto;
    max-width: calc(100vw - 72px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }

  .partners h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px;
    line-height: 1.25;
  }

  .breadcrumb {
    width: calc(100% - 20px);
    padding: 10px 14px;
  }
}

/* Premium clarity pass with Awad brand colors */
:root {
  --awad-ink: #081120;
  --awad-forest: #0b1f3a;
  --awad-forest-2: #17365f;
  --awad-mint: #7fb3ec;
  --awad-cream: #f6f9fe;
  --awad-blue: #4d93dc;
  --awad-gold: #c9a85d;
  --awad-muted: #607086;
}

body {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: #081120;
  background: #f6f9fe;
}

h1, h2, h3,
.pa-title,
.pd-title,
.results-header h2,
.core-values-header h1,
.mission-vision-header h2,
.client-promise-header h2,
.process-header h2,
.edu-section-heading,
.tedx-section-heading,
.origin-header h2,
.practice-header h2,
.t-header-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  color: var(--awad-forest);
}

p, li, address, input, textarea, select, button {
  font-family: 'Manrope', 'Inter', sans-serif;
}

.navbar {
  background: rgba(255,255,255,0.94);
  border-color: rgba(11, 31, 58, 0.14);
  box-shadow: 0 14px 35px rgba(8, 17, 32, 0.08);
}

nav {
  font-weight: 800;
  letter-spacing: 0.02em;
}

nav a,
.nav-dropdown-toggle {
  color: #0b1f3a;
}

nav a:hover,
nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--awad-blue);
}

nav a::before,
.nav-dropdown-toggle::before {
  background: linear-gradient(90deg, var(--awad-gold), var(--awad-blue));
  height: 3px;
}

.nav-btn {
  background: #ffffff;
  border-color: rgba(11, 31, 58, 0.16);
}

.nav-btn:hover {
  background: var(--awad-forest);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 48px;
  align-items: center;
  min-height: 760px;
  padding: 84px 56px;
  background:
    linear-gradient(90deg, rgba(8, 17, 32, 0.98) 0%, rgba(11, 31, 58, 0.94) 52%, rgba(31, 73, 122, 0.88) 100%),
    url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  border-color: rgba(127, 179, 236, 0.24);
  box-shadow: 0 34px 80px rgba(8, 17, 32, 0.24);
}

.hero::before {
  opacity: 0.08;
}

.hero::after {
  display: none;
}

.hero-left {
  grid-column: 1;
  flex: none;
  max-width: 760px;
  align-items: flex-start;
}

.hero-left h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.98;
  max-width: 820px;
  color: #ffffff;
}

.hero-left h1 .blue,
.hero-left .blue {
  color: #9dccff;
}

.pill {
  display: inline-block !important;
  background: transparent;
  color: var(--awad-gold);
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.hero-left p {
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  font-size: 22px;
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, var(--awad-blue), #2f74b8);
  color: #ffffff;
  border-radius: 0;
  padding: 18px 28px;
  font-weight: 900;
  box-shadow: none;
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-top: 18px;
  padding: 13px 16px;
  background: linear-gradient(135deg, #ffffff, #eaf4ff);
  color: var(--awad-forest);
  text-decoration: none;
  font-weight: 800;
}

.hero-phone-cta span {
  display: block;
  font-size: 12px;
  line-height: 1;
}

.hero-phone-cta strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

/* HERO */

.hero{
  max-width: 1500px;
  margin: 21px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 119, 255, 0.1), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, #02060c 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("assets/brokenglass.png");
  background-size: 600px;
  background-position: 80% 20%;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero-left{
  max-width:650px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  font-family: var(--awad-sans);
}

.blue{
  color: var(--accent-blue);
}

.pill{
  background: var(--white);
  color: var(--navy);
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-left p{
  margin-top:20px;
  margin-bottom: 50px;
  font-size:22px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta{
  display: inline-block;
  padding: 20px 50px;
  border:none;
  border-radius: 50px;
  background: var(--accent-blue);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  cursor:pointer;
  font-size:18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 119, 255, 0.3);
  width: fit-content;
}

.cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.5);
  background: #0066DD;
}

/* HERO IMAGE */

.hero-right{
  position: absolute;
  right: 410px;
  bottom: 0;
  width: 330px;
  height: 520px;
  opacity: 0.42;
  pointer-events: none;
}

.hero-right img {
  width: auto;
  height: 115%;
  left: 0;
  top: 0;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,0.28));
}

.hero-intake {
  grid-column: 2;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(9, 24, 46, 0.86);
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}

.hero-intake-kicker {
  margin: 0;
  color: #9dccff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-intake h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 8px;
}

.hero-intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-intake input,
.hero-intake select,
.hero-intake textarea {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  padding: 0 14px;
  background: rgba(255,255,255,0.13);
  color: #ffffff;
  font-size: 15px;
  outline: 1px solid transparent;
}

.hero-intake textarea {
  min-height: 110px;
  padding-top: 15px;
  resize: vertical;
}

.hero-intake input::placeholder,
.hero-intake textarea::placeholder {
  color: rgba(255,255,255,0.82);
}

.hero-intake select {
  color: rgba(255,255,255,0.86);
}

.hero-intake input:focus,
.hero-intake select:focus,
.hero-intake textarea:focus {
  outline-color: var(--awad-blue);
  background: rgba(255,255,255,0.16);
}

.hero-intake button {
  min-height: 58px;
  border: 1px solid rgba(127, 179, 236, 0.8);
  background: rgba(77, 147, 220, 0.18);
  color: #dcedff;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
}

.hero-intake button:hover {
  background: var(--awad-blue);
  color: #ffffff;
}

.partners h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--awad-forest);
}

.partners h2 span,
.blue,
.blue-italic,
.results-header h2 .blue {
  color: var(--awad-blue);
}

.pa-title,
.pd-title {
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 0.98;
  font-style: normal;
}

.pa-kicker,
.edu-section-kicker,
.tedx-section-kicker,
.origin-subtitle,
.t-header-left .t-label {
  color: var(--awad-blue);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 900;
}

.pa-section,
.pd-section,
.results-section,
.contact-section,
.core-values-section,
.mission-vision-section,
.community-section,
.edu-cards-section,
.tedx-video-section {
  background:
    linear-gradient(180deg, rgba(246,249,254,0.98), rgba(255,255,255,0.96));
}

.pa-hero-inner::after,
.results-header::after,
.contact-header::after,
.core-values-header::after,
.mission-vision-header::after,
.community-header::after,
.edu-section-header::after,
.tedx-video-header::after,
.pd-header::after {
  background: linear-gradient(90deg, var(--awad-gold), var(--awad-blue));
  height: 4px;
}

.pa-card,
.result-card,
.community-card,
.t-card,
.cs-card,
.team-card,
.five-steps-card,
.why-choose-card,
.core-value-card,
.mission-vision-card,
.client-promise-card,
.contact-info-card,
.contact-form-card,
.edu-card,
.tedx-theme-card,
.tedx-takeaway-card {
  border-color: rgba(11, 31, 58, 0.14);
  box-shadow: 0 18px 36px rgba(8, 17, 32, 0.08);
}

.pa-card-label,
.result-card-title,
.community-card-title {
  color: var(--awad-forest);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 900;
}

.pa-card-btn,
.community-card-btn,
.edu-hero-btn.primary,
.tedx-hero-btn,
.contact-submit,
.cp-form-submit,
.cp-submit-btn {
  background: var(--awad-forest);
  color: #ffffff;
  border-radius: 0;
}

.contact-form-card input,
.contact-form-card textarea,
.cp-form-card input,
.cp-form-card textarea,
.cp-form-card select {
  border-radius: 0;
  border-color: rgba(11, 31, 58, 0.16);
  font-family: 'Manrope', 'Inter', sans-serif;
}

.site-footer {
  background: var(--awad-forest);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px 28px 0;
  }

  .hero-left,
  .hero-intake {
    grid-column: 1;
  }

  .hero-intake {
    max-width: 560px;
    width: 100%;
  }

  .hero-right {
    position: relative;
    right: auto;
    width: 100%;
    height: 340px;
    opacity: 1;
  }

  .hero-right img {
    height: 128%;
    left: auto;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .hero {
    text-align: left;
    padding: 38px 18px 0;
  }

  .hero-left {
    align-items: flex-start;
  }

  .hero-left h1 {
    font-size: 43px;
    text-align: left;
  }

  .hero-left h1 > div {
    justify-content: flex-start;
  }

  .hero-left p {
    text-align: left;
  }

  .cta,
  .hero-phone-cta {
    width: 100%;
    max-width: 100%;
  }

  .hero-phone-cta {
    justify-content: space-between;
  }

  .hero-intake {
    padding: 24px 18px;
  }

  .hero-intake-grid {
    grid-template-columns: 1fr;
  }

  .hero-intake h2 {
    font-size: 30px;
  }

  .hero-right {
    height: 270px;
  }
}

/* Final premium system: Awad brand, reference-level typography and mega nav */
:root {
  --awad-page: #f4f8fd;
  --awad-ink: #07101f;
  --awad-navy: #071a33;
  --awad-navy-2: #102d52;
  --awad-blue: #4f96df;
  --awad-blue-2: #7db5ec;
  --awad-gold: #c8a762;
  --awad-panel: #0a213d;
  --awad-soft: #e9f3ff;
  --awad-border: rgba(7, 26, 51, 0.14);
  --awad-shadow-strong: 0 28px 70px rgba(7, 16, 31, 0.18);
  --awad-shadow-soft: 0 16px 36px rgba(7, 16, 31, 0.09);
  --awad-serif: 'Reckless Neue', 'Playfair Display', Georgia, serif;
  --awad-sans: aeonikregular, outfitregular, 'Outfit', 'Manrope', 'Inter', sans-serif;
  --awad-sans-bold: aeonikbold, outfitsemi_bold, 'Outfit', 'Manrope', 'Inter', sans-serif;
}

html {
  background: var(--awad-page);
}

body {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f5f9ff 100%);
  color: var(--awad-ink);
  font-family: var(--awad-sans);
}

h1, h2, h3,
.hero-left h1,
.hero-intake h2,
.pa-title,
.pd-title,
.results-header h2,
.core-values-header h1,
.mission-vision-header h2,
.client-promise-header h2,
.process-header h2,
.edu-section-heading,
.tedx-section-heading,
.origin-header h2,
.practice-header h2,
.t-header-left h2,
.contact-heading {
  font-family: var(--awad-serif);
  font-weight: 500;
  letter-spacing: 0;
}

p, li, a, button, input, textarea, select, label, address {
  font-family: var(--awad-sans);
}

/* Header and mega menus */
.navbar {
  width: min(calc(100% - 48px), 1380px);
  margin: 16px auto 0;
  padding: 16px 22px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--awad-navy);
  color: #ffffff;
  box-shadow: var(--awad-shadow-strong);
}

.logo {
  min-width: 170px;
}

.logo img {
  height: 62px;
  padding: 0;
  background: transparent;
  border: 0;
  object-fit: contain;
  filter: none;
}

.navbar nav {
  flex: 1;
  justify-content: center;
  gap: 22px;
  font-family: var(--awad-sans-bold);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.navbar nav a,
.navbar .nav-dropdown-toggle {
  color: rgba(255,255,255,0.92);
  font-family: var(--awad-sans-bold);
  font-weight: 700;
}

.navbar nav a:hover,
.navbar nav a.active,
.navbar .nav-dropdown-toggle:hover,
.navbar .nav-dropdown-toggle.active {
  color: #ffffff;
}

.navbar nav a::before,
.navbar .nav-dropdown-toggle::before {
  bottom: -13px;
  height: 3px;
  background: linear-gradient(90deg, var(--awad-gold), var(--awad-blue-2));
}

.nav-dropdown-toggle::after {
  border-color: currentColor;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  vertical-align: middle;
  margin-top: -3px;
}

.nav-dropdown {
  position: static;
}

.nav-dropdown-menu {
  top: calc(100% + 14px);
  left: 50%;
  width: min(980px, calc(100vw - 64px));
  min-width: 0;
  transform: translate(-50%, 12px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 28px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(135deg, rgba(7,26,51,0.98), rgba(16,45,82,0.98));
  box-shadow: 0 32px 80px rgba(7,16,31,0.28);
}

.nav-dropdown:hover .nav-dropdown-menu {
  transform: translate(-50%, 0);
}

.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-dropdown-menu::before {
  content: 'Explore';
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--awad-blue-2);
  font-family: var(--awad-sans-bold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-dropdown-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  background: rgba(255,255,255,0.045);
  color: #ffffff;
  font-size: 13px;
  font-family: var(--awad-sans-bold);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: #ffffff;
  color: var(--awad-navy);
  transform: translateY(-2px);
}

.nav-icons {
  gap: 10px;
}

.nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}

.nav-btn svg {
  color: #ffffff;
  stroke: #ffffff;
}

.nav-btn:hover {
  background: #ffffff;
}

.nav-btn:hover svg {
  color: var(--awad-navy);
  stroke: var(--awad-navy);
}

.navbar nav > a[href="contact.html"] {
  margin-left: 4px;
  padding: 15px 24px;
  background: #ffffff;
  color: var(--awad-navy) !important;
}

.navbar nav > a[href="contact.html"]::before {
  display: none;
}

/* Homepage conversion hero */
.hero {
  width: min(calc(100% - 48px), 1380px);
  min-height: 760px;
  margin: 20px auto 72px;
  padding: 84px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
  gap: 54px;
  align-items: center;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(90deg, rgba(7,16,31,0.98) 0%, rgba(7,26,51,0.95) 48%, rgba(20,58,99,0.88) 100%),
    url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--awad-shadow-strong);
}

.hero-left {
  grid-column: 1;
  max-width: 800px;
  align-items: flex-start;
}

.hero-left h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(58px, 6.1vw, 96px);
  line-height: 0.98;
}

.hero-left h1 > div {
  display: inline !important;
}

.hero-left h1 .blue,
.hero-left .blue {
  color: var(--awad-blue-2);
}

.pill {
  display: inline !important;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--awad-gold);
  box-shadow: none;
}

.hero-left p {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.42;
  font-weight: 600;
}

.cta,
.hero-phone-cta,
.hero-intake button,
.contact-submit,
.cp-form-submit,
.cp-submit-btn,
.community-card-btn,
.tedx-hero-btn,
.edu-hero-btn.primary {
  border-radius: 0 !important;
  font-family: var(--awad-sans-bold);
}

.cta {
  margin-top: 40px;
  padding: 19px 32px;
  background: linear-gradient(135deg, var(--awad-blue), #2f73b8);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(79,150,223,0.24);
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 20px;
  padding: 14px 18px;
  background: #ffffff;
  color: var(--awad-navy);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.hero-phone-cta span {
  font-size: 12px;
  font-weight: 900;
}

.hero-phone-cta strong {
  font-family: var(--awad-sans-bold);
  font-size: 25px;
}

.hero-right {
  position: absolute;
  right: 396px;
  bottom: 0;
  width: 360px;
  height: 560px;
  opacity: 0.46;
  pointer-events: none;
}

.hero-right img {
  width: auto;
  height: 118%;
  left: -10px;
  top: 0;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,0.34));
}

.hero-intake {
  grid-column: 2;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(8,24,46,0.9);
  box-shadow: 0 32px 70px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.hero-intake-kicker {
  margin: 0;
  color: var(--awad-blue-2);
  font-size: 12px;
  font-family: var(--awad-sans-bold);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-intake h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.02;
}

.hero-intake input,
.hero-intake select,
.hero-intake textarea {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.13);
  color: #ffffff;
  font-size: 15px;
}

.hero-intake input:focus,
.hero-intake select:focus,
.hero-intake textarea:focus {
  outline: 1px solid var(--awad-blue-2);
}

.hero-intake button {
  min-height: 60px;
  border: 1px solid rgba(125,181,236,0.8);
  background: rgba(79,150,223,0.18);
  color: #eaf5ff;
  font-weight: 900;
}

.hero-intake button:hover {
  background: var(--awad-blue);
  color: #ffffff;
}

/* Global page rhythm */
.breadcrumb {
  width: min(calc(100% - 48px), 1380px);
  margin: 18px auto 0;
  padding: 14px 22px;
  border-radius: 0;
  border: 1px solid var(--awad-border);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 10px 24px rgba(7,16,31,0.05);
}

.breadcrumb-list {
  font-family: var(--awad-sans-bold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.pa-section,
.pd-section,
.results-section,
.contact-section,
.core-values-section,
.mission-vision-section,
.community-section,
.edu-cards-section,
.tedx-video-section,
.anniversary-section,
.faq-with-image-section,
.process-section,
.why-choose-section,
.client-promise-section,
.testimonials-section,
.cs-section {
  background:
    linear-gradient(180deg, rgba(246,249,254,0.98), rgba(255,255,255,0.98));
}

.pa-section,
.pd-section,
.results-section,
.contact-section,
.core-values-section,
.mission-vision-section,
.community-section,
.edu-cards-section,
.tedx-video-section {
  padding-top: clamp(78px, 8vw, 120px);
}

.pa-hero-inner,
.pd-header,
.results-header,
.contact-header,
.core-values-header,
.mission-vision-header,
.community-header,
.edu-section-header,
.tedx-video-header {
  margin-bottom: clamp(38px, 5vw, 68px);
}

.pa-title,
.pd-title,
.results-header h2,
.contact-heading,
.core-values-header h1,
.mission-vision-header h2,
.community-header h2,
.edu-section-heading,
.tedx-section-heading {
  color: var(--awad-navy);
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1;
}

.pd-title strong {
  font: inherit;
  color: var(--awad-blue);
}

.pd-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.pa-kicker,
.pd-subtitle,
.results-label,
.contact-kicker,
.edu-section-kicker,
.tedx-section-kicker,
.origin-subtitle,
.t-header-left .t-label {
  color: var(--awad-blue);
  font-family: var(--awad-sans-bold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pa-hero-inner::after,
.pd-header::after,
.results-header::after,
.contact-header::after,
.core-values-header::after,
.mission-vision-header::after,
.community-header::after,
.edu-section-header::after,
.tedx-video-header::after {
  content: '';
  display: block;
  width: 86px;
  height: 4px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, var(--awad-gold), var(--awad-blue));
}

.pd-inner {
  max-width: 1080px;
}

.pd-intro,
.pd-text,
.pd-content-block {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #2d3b4d;
  font-size: 18px;
  line-height: 1.75;
}

.pd-image {
  max-width: 900px;
  margin: 42px auto;
  padding: 10px;
  border: 1px solid var(--awad-border);
  background: #ffffff;
  box-shadow: var(--awad-shadow-strong);
}

.pd-image img {
  width: 100%;
  display: block;
}

.pd-content-block {
  padding: 30px 34px;
  border-left: 4px solid var(--awad-blue);
  background: #ffffff;
  box-shadow: var(--awad-shadow-soft);
}

.pd-divider {
  max-width: 900px;
  border: 0;
  border-top: 1px solid var(--awad-border);
  margin: 42px auto;
}

.pd-cta-title {
  max-width: 850px;
  margin: 42px auto 14px;
  color: var(--awad-navy);
  font-family: var(--awad-serif);
  font-size: clamp(32px, 3vw, 46px);
}

.pa-card,
.result-card,
.community-card,
.t-card,
.cs-card,
.team-card,
.five-steps-card,
.why-choose-card,
.core-value-card,
.mission-vision-card,
.client-promise-card,
.contact-info-card,
.contact-form-card,
.edu-card,
.tedx-theme-card,
.tedx-takeaway-card,
.related-results-card,
.cp-info-card,
.cp-office-card,
.cp-form-card {
  border-radius: 0 !important;
  border: 1px solid var(--awad-border);
  background-color: #ffffff;
  box-shadow: var(--awad-shadow-soft);
}

.pa-card:hover,
.result-card:hover,
.community-card:hover,
.t-card:hover,
.cs-card:hover,
.team-card:hover,
.five-steps-card:hover,
.why-choose-card:hover,
.core-value-card:hover,
.mission-vision-card:hover,
.client-promise-card:hover,
.edu-card:hover,
.tedx-theme-card:hover,
.tedx-takeaway-card:hover,
.related-results-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--awad-shadow-strong);
}

.pa-card {
  padding: 12px;
}

.pa-card-img,
.result-card-img,
.community-card-img {
  border-radius: 0;
}

.pa-card-label,
.result-card-title,
.community-card-title,
.related-results-card strong {
  color: var(--awad-navy);
  font-family: var(--awad-sans-bold);
  font-weight: 900;
}

.pa-card-btn,
.community-card-btn,
.contact-submit,
.cp-form-submit,
.cp-submit-btn {
  background: var(--awad-navy);
  color: #ffffff;
}

.contact-section {
  background:
    linear-gradient(135deg, var(--awad-navy) 0%, var(--awad-navy-2) 100%);
}

.contact-heading,
.contact-kicker,
.contact-left,
.contact-group-title,
.contact-list-item,
.contact-info-row {
  color: #ffffff;
}

.contact-form-card {
  background: #ffffff;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.cp-form-card input,
.cp-form-card textarea,
.cp-form-card select {
  border-radius: 0 !important;
  border-color: var(--awad-border);
  font-family: var(--awad-sans);
}

.partners h2 {
  color: var(--awad-navy);
  font-family: var(--awad-sans);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
}

.partners h2 span,
.blue,
.blue-italic,
.results-header h2 .blue {
  color: var(--awad-blue);
}

.site-footer {
  background: var(--awad-navy);
}

@media (max-width: 1120px) {
  .navbar {
    width: min(calc(100% - 28px), 1000px);
  }

  .navbar nav {
    gap: 16px;
    font-size: 12px;
  }

  .logo {
    min-width: 138px;
  }

  .logo img {
    height: 56px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 34px 0;
  }

  .hero-left,
  .hero-intake {
    grid-column: 1;
  }

  .hero-intake {
    max-width: 620px;
  }

  .hero-right {
    position: relative;
    right: auto;
    width: 100%;
    height: 360px;
    opacity: 1;
  }

  .hero-right img {
    height: 128%;
    left: auto;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .navbar {
    width: calc(100% - 22px);
    padding: 14px 16px;
  }

  .navbar .nav-hamburger {
    border-radius: 0;
    border-color: rgba(255,255,255,0.2);
  }

  .navbar .nav-hamburger span {
    background: #ffffff;
  }

  .navbar.nav-open > nav {
    top: 0;
    background: var(--awad-navy);
  }

  .navbar.nav-open > nav > a,
  .navbar.nav-open .nav-dropdown-toggle {
    color: #ffffff;
    border-color: rgba(255,255,255,0.12);
  }

  .navbar.nav-open .nav-dropdown-menu {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    grid-template-columns: 1fr;
    padding: 0;
  }

  .navbar.nav-open .nav-dropdown-menu::before {
    display: none;
  }

  .navbar.nav-open .nav-dropdown-item {
    color: #ffffff;
  }

  .navbar.nav-open .nav-dropdown-item:hover {
    color: var(--awad-navy);
  }

  .hero {
    width: calc(100% - 22px);
    margin-top: 14px;
    padding: 48px 24px 0;
  }

  .hero-left h1 {
    font-size: clamp(46px, 10vw, 70px);
  }
}

@media (max-width: 560px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    min-height: 82px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    height: 52px;
    padding: 5px 8px;
  }

  .nav-hamburger {
    display: flex !important;
    position: absolute !important;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    flex-shrink: 0;
  }

  .hero {
    text-align: left;
    width: calc(100% - 22px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 38px 18px 0;
    overflow: hidden;
  }

  .hero *,
  .hero *::before,
  .hero *::after {
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-left {
    align-items: flex-start;
    width: 100%;
    min-width: 0;
  }

  .hero-left h1 {
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 37px;
    line-height: 1.06;
    overflow-wrap: normal;
  }

  .hero-left h1 > div {
    display: block !important;
    max-width: 100%;
  }

  .hero-left p {
    max-width: 100%;
    text-align: left;
    font-size: 17px;
  }

  .cta,
  .hero-phone-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .cta {
    display: flex;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }

  .hero-phone-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-phone-cta strong {
    font-size: 22px;
  }

  .hero-intake {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 24px 18px;
  }

  .hero-intake-grid {
    grid-template-columns: 1fr;
  }

  .hero-intake h2 {
    font-size: 30px;
  }

  .hero-right {
    height: 270px;
  }

  .pa-title,
  .pd-title,
  .results-header h2,
  .contact-heading,
  .core-values-header h1,
  .mission-vision-header h2,
  .community-header h2,
  .edu-section-heading,
  .tedx-section-heading {
    font-size: 38px;
  }

  .pd-content-block {
    padding: 24px 20px;
  }
}

/* Full-width refinement requested after visual review */
.navbar {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px 44px;
  border-left: 0;
  border-right: 0;
}

.logo {
  min-width: 210px;
}

.logo img {
  height: 74px;
}

.navbar nav {
  gap: 30px;
  font-size: 16px;
}

.navbar nav a,
.navbar .nav-dropdown-toggle {
  font-family: var(--awad-sans-bold);
  font-weight: 800;
}

.navbar nav a::before,
.navbar .nav-dropdown-toggle::before {
  bottom: -16px;
}

.navbar nav > a[href="contact.html"] {
  padding: 20px 34px;
  font-size: 16px;
}

.nav-btn {
  width: 62px;
  height: 62px;
}

.nav-btn svg {
  width: 23px;
  height: 23px;
}

.nav-dropdown-menu {
  top: calc(100% + 12px);
  width: min(1120px, calc(100vw - 88px));
}

.hero {
  width: 100%;
  max-width: none;
  margin: 0 0 76px;
  min-height: 820px;
  padding: 92px max(64px, calc((100vw - 1320px) / 2 + 42px));
  border-left: 0;
  border-right: 0;
}

.hero-left h1 {
  font-size: clamp(68px, 6.9vw, 116px);
}

.hero-left p {
  font-size: clamp(22px, 1.8vw, 28px);
}

.hero-intake {
  max-width: 470px;
  margin-left: auto;
}

.breadcrumb {
  width: 100%;
  max-width: none;
  margin: 0;
  border-left: 0;
  border-right: 0;
  padding-left: max(44px, calc((100vw - 1320px) / 2 + 24px));
  padding-right: max(44px, calc((100vw - 1320px) / 2 + 24px));
}

@media (max-width: 1240px) {
  .navbar {
    padding: 18px 28px;
  }

  .logo {
    min-width: 170px;
  }

  .logo img {
    height: 62px;
  }

  .navbar nav {
    gap: 20px;
    font-size: 14px;
  }

  .navbar nav > a[href="contact.html"] {
    padding: 16px 24px;
  }

  .nav-btn {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 900px) {
  .navbar {
    width: 100%;
    padding: 14px 18px;
  }

  .hero {
    width: 100%;
    margin-top: 0;
    padding-left: 22px;
    padding-right: 22px;
  }

  .breadcrumb {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 560px) {
  .navbar {
    width: 100%;
  }

  .logo img {
    height: 54px;
  }

  .hero {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Homepage final cleanup: focused contrast, spacing, alignment */
body {
  background: #f7fbff;
  color: var(--awad-ink);
  font-family: var(--awad-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.navbar {
  min-height: 106px;
  padding: 18px 44px;
}

.logo {
  min-width: 180px;
}

.logo img {
  height: 62px;
  width: auto;
}

.navbar nav {
  gap: 24px;
  font-size: 15px;
}

.navbar nav > a[href="contact.html"] {
  padding: 16px 30px;
}

.nav-btn {
  width: 56px;
  height: 56px;
}

.hero {
  min-height: 720px;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 450px);
  gap: 46px;
}

.hero-left h1 {
  max-width: 760px;
  font-size: clamp(62px, 6vw, 104px);
  line-height: 0.98;
}

.hero-left p {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(20px, 1.55vw, 25px);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
}

.hero-phone-cta {
  margin-top: 18px;
}

.hero-intake {
  max-width: 450px;
  gap: 12px;
  padding: 30px;
}

.hero-intake h2 {
  margin-bottom: 6px;
  font-size: 34px;
}

.hero-intake input,
.hero-intake select,
.hero-intake textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  background: #233650;
  color: #ffffff;
  font-family: var(--awad-sans);
  font-size: 15px;
}

.hero-intake textarea {
  min-height: 68px;
  padding-top: 16px;
  resize: vertical;
}

.hero-intake input::placeholder,
.hero-intake textarea::placeholder {
  color: rgba(255,255,255,0.72);
}

.hero-intake select {
  color: rgba(255,255,255,0.86);
}

.partners,
.origin-story,
.practice-areas,
.testimonials-section,
.cs-section,
.team-section,
.faq-section {
  padding-top: 72px;
  padding-bottom: 76px;
}

.partners {
  background: #ffffff;
}

.partners h2,
.origin-header h2,
.practice-header h2,
.t-header-left h2,
.cs-heading-row h2,
.team-title,
.faq-title {
  color: var(--awad-navy);
  text-align: center;
  letter-spacing: 0;
}

.partners h2 {
  max-width: 920px;
  margin: 0 auto 30px;
}

.logos-marquee-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.logo-card {
  border-radius: 0;
  background: #ffffff;
  border: 1px solid rgba(7,26,51,0.1);
  box-shadow: 0 12px 30px rgba(7,16,31,0.06);
}

.origin-story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  align-items: center;
  column-gap: 70px;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  background: #ffffff;
}

.origin-story::before {
  opacity: 0.28;
}

.origin-header {
  max-width: 560px;
  text-align: left;
}

.origin-subtitle,
.practice-subtitle,
.team-label,
.faq-label,
.t-label {
  color: var(--awad-gold);
  font-family: var(--awad-sans-bold);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.origin-header h2 {
  text-align: left;
  font-size: clamp(40px, 4.4vw, 64px);
}

.origin-description {
  color: #2d3b4d;
  font-size: 17px;
  line-height: 1.72;
}

.origin-video-container {
  width: 100%;
  max-width: 620px;
  margin: 0;
}

.video-thumbnail {
  border-radius: 0;
  border: 1px solid rgba(7,26,51,0.12);
  box-shadow: 0 24px 54px rgba(7,16,31,0.13);
}

.learn-more-btn {
  grid-column: 1;
  justify-self: start;
  margin-top: 8px;
  border-radius: 0;
  background: #ffffff;
  font-family: var(--awad-sans-bold);
}

.practice-areas {
  background: #f4f8fd;
}

.practice-header {
  margin-bottom: 22px;
}

.practice-header h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.nav-controls {
  margin-bottom: 8px;
}

.carousel-container {
  margin-top: 14px;
}

.practice-categories {
  max-width: 1080px;
  margin: 28px auto 0;
  gap: 10px;
}

.practice-btn {
  min-height: 42px;
  border-radius: 0;
  border: 1px solid rgba(7,26,51,0.14);
  background: #ffffff;
  color: var(--awad-navy);
  font-family: var(--awad-sans-bold);
  font-size: 13px;
}

.practice-btn.active,
.practice-btn:hover {
  background: var(--awad-navy);
  color: #ffffff;
}

.testimonials-section {
  background: #eef6ff;
}

.testimonials-inner {
  max-width: 1280px;
  padding: 0 36px;
}

.t-header {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.t-header-left {
  align-items: center;
}

.t-header-left h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.t-header-left h2::after {
  content: '';
  display: block;
  width: 82px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--awad-gold);
}

.t-review-sources,
.t-header-right {
  justify-content: center;
}

.t-header-right {
  margin-top: 18px;
}

.t-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.t-card {
  min-height: 236px;
  padding: 26px 24px;
  background: #ffffff;
  border: 1px solid rgba(7,26,51,0.1);
  box-shadow: 0 18px 42px rgba(7,16,31,0.08);
}

.t-body-text {
  color: #263548;
  font-size: 15px;
  line-height: 1.68;
}

.t-body-text strong {
  color: var(--awad-navy);
}

.t-time-ago,
.t-reviewer-location {
  color: #66758a;
}

.t-reviewer-name {
  color: var(--awad-navy);
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b5c0cc;
}

.t-dot.active {
  background: var(--awad-blue);
  box-shadow: 0 0 0 4px rgba(79,150,223,0.12);
}

.cs-section {
  background: #ffffff;
}

.cs-inner {
  max-width: 1240px;
}

.cs-heading-row {
  align-items: center;
  margin-bottom: 28px;
}

.cs-heading-row h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.cs-card,
.cs-thumb,
.cs-thumb img {
  border-radius: 0;
}

.team-section {
  background: #f3f8fe;
}

.team-section::before,
.team-section::after,
.team-inner::after {
  display: none;
}

.team-heading {
  margin-bottom: 32px;
  text-align: center;
}

.team-label {
  color: var(--awad-gold);
}

.team-title {
  font-family: var(--awad-serif);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 600;
  line-height: 1.06;
}

.team-title .highlight {
  color: var(--awad-blue);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.team-card {
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(7,16,31,0.08);
}

.team-nav {
  border-radius: 0;
}

.faq-section {
  background: #ffffff;
  min-height: 0;
}

.faq-card {
  border-radius: 0;
  padding: 48px 56px 38px;
  box-shadow: 0 18px 42px rgba(7,16,31,0.07);
}

.faq-heading {
  margin-bottom: 28px;
}

.faq-title {
  font-family: var(--awad-serif);
  color: var(--awad-navy);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
}

.faq-question {
  padding: 24px 0;
}

.faq-question-text {
  color: var(--awad-navy);
}

.faq-more {
  border-radius: 0;
  background: var(--awad-navy);
  color: #ffffff;
}

.contact-section {
  padding: 82px 0;
  background: var(--awad-navy);
}

.contact-inner {
  max-width: 1180px;
}

.contact-grid {
  align-items: center;
  gap: 58px;
}

.contact-heading {
  color: #ffffff;
  font-size: clamp(42px, 4.4vw, 64px);
}

.contact-list-item,
.contact-info-row {
  color: rgba(255,255,255,0.86);
}

.contact-form-card {
  max-width: 560px;
  padding: 34px;
  border-radius: 0;
}

.contact-form-brand {
  margin-bottom: 22px;
}

.contact-form-logo {
  max-width: 150px;
}

.contact-row {
  gap: 16px;
}

.contact-field {
  gap: 8px;
}

.contact-label {
  color: var(--awad-navy);
  font-family: var(--awad-sans-bold);
  font-size: 11px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  min-height: 52px;
  background: #f7f9fc;
  color: var(--awad-navy);
  border: 1px solid rgba(7,26,51,0.15);
}

.contact-field textarea {
  min-height: 112px;
}

.contact-submit {
  min-height: 56px;
  background: var(--awad-navy);
  color: #ffffff;
}

.site-footer {
  padding: 0;
  background: #06172d;
  color: #ffffff;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 28px 30px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 220px minmax(0, 560px);
  align-items: center;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.65;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
  padding: 0;
}

.footer-locations address {
  padding: 0;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  line-height: 1.65;
}

.footer-locations address strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--awad-sans-bold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copy {
  margin: 0;
  color: rgba(255,255,255,0.54);
}

.footer-bottom a {
  color: #ffffff;
  font-family: var(--awad-sans-bold);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-intake {
    margin-left: 0;
  }

  .hero-right {
    right: 0;
    opacity: 0.28;
  }

  .origin-story {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .origin-header,
  .origin-header h2 {
    max-width: 760px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .origin-video-container,
  .learn-more-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .learn-more-btn {
    justify-self: center;
  }

  .t-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 86px;
    padding: 14px 18px;
  }

  .logo img {
    height: 50px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .hero-left h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-intake {
    padding: 24px 18px;
  }

  .partners,
  .origin-story,
  .practice-areas,
  .testimonials-section,
  .cs-section,
  .team-section,
  .faq-section,
  .contact-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .t-grid,
  .footer-locations,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .contact-row-2 {
    grid-template-columns: 1fr;
  }

  .faq-card,
  .contact-form-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PHASE 2 PREMIUM STYLE REFINEMENTS & RESILIENT FALLBACKS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

/* Home page only: CEO Lawyer-inspired cleanup */
body.home-page {
  --home-bg: #f7f9fc;
  --home-ink: #07182f;
  --home-muted: #526174;
  --home-line: rgba(7,24,47,0.12);
  --home-card: #ffffff;
  --home-navy: #061a33;
  --home-blue: #2f7ec8;
  --home-gold: #c6a15b;
  background: var(--home-bg);
  color: var(--home-ink);
  font-family: 'Manrope', 'Outfit', Arial, sans-serif;
}

body.home-page *,
body.home-page *::before,
body.home-page *::after {
  letter-spacing: 0;
}

body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page p,
body.home-page a,
body.home-page button,
body.home-page input,
body.home-page textarea,
body.home-page select,
body.home-page label,
body.home-page address {
  font-family: 'Manrope', 'Outfit', Arial, sans-serif !important;
}

body.home-page .navbar {
  min-height: 92px;
  padding: 14px max(28px, calc((100vw - 1240px) / 2 + 24px));
  background: var(--home-navy);
  box-shadow: none;
}

body.home-page .logo {
  min-width: 164px;
}

body.home-page .logo img {
  height: 58px;
}

body.home-page .navbar nav {
  gap: 24px;
  font-size: 14px;
}

body.home-page .navbar nav a,
body.home-page .navbar .nav-dropdown-toggle {
  font-weight: 800;
  color: rgba(255,255,255,0.88);
}

body.home-page .navbar nav a.active,
body.home-page .navbar nav a:hover,
body.home-page .navbar .nav-dropdown-toggle:hover {
  color: #ffffff;
}

body.home-page .navbar nav > a[href="contact.html"] {
  padding: 15px 28px;
  background: #ffffff;
  color: var(--home-navy) !important;
}

body.home-page .nav-btn {
  width: 52px;
  height: 52px;
}

body.home-page .hero {
  min-height: 690px;
  margin: 0;
  padding: 62px max(32px, calc((100vw - 1240px) / 2 + 24px));
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  background:
    linear-gradient(90deg, rgba(6,26,51,0.98) 0%, rgba(9,35,66,0.94) 56%, rgba(25,66,107,0.9) 100%),
    url("assets/brokenefffect.png");
  border: 0;
  box-shadow: none;
}

body.home-page .hero-left h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(58px, 5.5vw, 94px);
  font-weight: 800;
  line-height: 0.98;
}

body.home-page .hero-left h1 .blue {
  color: #8fc5ff;
}

body.home-page .hero-left h1 .pill {
  color: var(--home-gold);
  font-weight: 800;
}

body.home-page .hero-left p {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 700;
}

body.home-page .cta {
  margin-top: 34px;
  padding: 17px 30px;
  background: #3f8fdb;
  color: #ffffff;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

body.home-page .hero-phone-cta {
  margin-top: 16px;
  box-shadow: none;
}

body.home-page .hero-right {
  right: calc((100vw - 1240px) / 2 + 300px);
  height: 520px;
  opacity: 0.38;
}

body.home-page .hero-intake {
  max-width: 430px;
  padding: 30px;
  gap: 12px;
  background: rgba(8,28,54,0.94);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 22px 54px rgba(0,0,0,0.2);
}

body.home-page .hero-intake h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
}

body.home-page .hero-intake input,
body.home-page .hero-intake select,
body.home-page .hero-intake textarea {
  min-height: 52px;
  background: #263a56;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
}

body.home-page .hero-intake textarea {
  min-height: 76px;
}

body.home-page .partners,
body.home-page .origin-story,
body.home-page .practice-areas,
body.home-page .testimonials-section,
body.home-page .cs-section,
body.home-page .team-section,
body.home-page .faq-section,
body.home-page .contact-section {
  padding-top: 64px;
  padding-bottom: 68px;
}

body.home-page .partners,
body.home-page .origin-story,
body.home-page .cs-section,
body.home-page .faq-section {
  background: #ffffff;
}

body.home-page .practice-areas,
body.home-page .testimonials-section,
body.home-page .team-section {
  background: #f1f6fc;
}

body.home-page .partners h2,
body.home-page .origin-header h2,
body.home-page .practice-header h2,
body.home-page .t-header-left h2,
body.home-page .cs-heading-row h2,
body.home-page .team-title,
body.home-page .faq-title,
body.home-page .contact-heading {
  color: var(--home-ink);
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

body.home-page .origin-subtitle,
body.home-page .practice-subtitle,
body.home-page .t-label,
body.home-page .team-label,
body.home-page .faq-label,
body.home-page .contact-kicker {
  color: var(--home-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.home-page .partners h2 {
  max-width: 900px;
  margin-bottom: 26px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PHASE 2 PREMIUM STYLE REFINEMENTS & RESILIENT FALLBACKS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

/* 2. Navigation Double Underline Override (Resilient Fallback) */

body.home-page .logo-card,
body.home-page .t-card,
body.home-page .faq-card,
body.home-page .contact-form-card {
  background: #ffffff;
  border: 1px solid var(--home-line);
  box-shadow: 0 16px 40px rgba(7,24,47,0.07);
}

body.home-page .origin-story {
  max-width: 1240px;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: 64px;
}

body.home-page .origin-header,
body.home-page .origin-header h2 {
  text-align: left;
}

body.home-page .origin-description,
body.home-page .t-body-text,
body.home-page .faq-answer p {
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.72;
}

body.home-page .origin-video-container {
  max-width: 620px;
}

body.home-page .video-thumbnail,
body.home-page .carousel-card,
body.home-page .cs-card,
body.home-page .team-card {
  border-radius: 0 !important;
}

body.home-page .learn-more-btn,
body.home-page .practice-btn.active,
body.home-page .faq-more,
body.home-page .contact-submit {
  background: var(--home-navy);
  color: #ffffff;
}

body.home-page .practice-header {
  margin-bottom: 18px;
}

body.home-page .practice-btn {
  background: #ffffff;
  color: var(--home-ink);
  border: 1px solid var(--home-line);
  font-weight: 800;
}

body.home-page .carousel-card-overlay p {
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

body.home-page .testimonials-inner,
body.home-page .cs-inner,
body.home-page .team-inner,
body.home-page .faq-inner,
body.home-page .contact-inner,
body.home-page .site-footer-inner {
  max-width: 1240px;
}

body.home-page .t-header {
  margin-bottom: 28px;
}

body.home-page .t-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.home-page .t-card {
  min-height: 230px;
  padding: 24px;
}

body.home-page .t-card-top {
  align-items: center;
}

body.home-page .t-card-star,
body.home-page .t-star {
  fill: #f4b423;
}

body.home-page .t-time-ago {
  display: none;
}

body.home-page .team-section::before,
body.home-page .team-section::after,
body.home-page .team-inner::after {
  display: none;
}

body.home-page .team-title {
  color: var(--home-ink);
}

body.home-page .team-title .highlight,
body.home-page .blue,
body.home-page .blue-italic,
body.home-page .partners h2 span {
  color: var(--home-blue);
  background: none;
  -webkit-text-fill-color: currentColor;
}

body.home-page .faq-card {
  padding: 44px 54px 36px;
}

body.home-page .faq-question {
  padding: 22px 0;
}

body.home-page .faq-question-text {
  color: var(--home-ink);
  font-weight: 800;
}

body.home-page .contact-section {
  background: var(--home-navy);
}

body.home-page .contact-heading,
body.home-page .contact-left,
body.home-page .contact-group-title {
  color: #ffffff;
  text-align: left;
}

body.home-page .contact-list-item,
body.home-page .contact-info-row {
  color: rgba(255,255,255,0.78);
}

body.home-page .contact-form-card {
  padding: 32px;
}

body.home-page .contact-label {
  color: var(--home-ink);
  font-weight: 900;
}

body.home-page .contact-field input,
body.home-page .contact-field select,
body.home-page .contact-field textarea {
  background: #f5f7fa;
  color: var(--home-ink);
  border: 1px solid var(--home-line);
}

body.home-page .site-footer {
  background: #05162c;
}

body.home-page .footer-brand p,
body.home-page .footer-locations address,
body.home-page .footer-copy {
  color: rgba(255,255,255,0.66);
}

body.home-page .footer-locations address strong,
body.home-page .footer-bottom a {
  color: #ffffff;
}

@media (max-width: 1180px) {
  body.home-page .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-page .hero-right {
    display: none;
  }

  body.home-page .origin-story {
    grid-template-columns: 1fr;
  }

  body.home-page .origin-header,
  body.home-page .origin-header h2,
  body.home-page .contact-heading {
    text-align: center;
  }

  body.home-page .t-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-page .hero {
    padding: 42px 20px;
  }

  body.home-page .hero-left h1 {
    font-size: clamp(40px, 10vw, 58px);
  }

  body.home-page .hero-intake {
    padding: 22px 18px;
  }

  body.home-page .partners,
  body.home-page .origin-story,
  body.home-page .practice-areas,
  body.home-page .testimonials-section,
  body.home-page .cs-section,
  body.home-page .team-section,
  body.home-page .faq-section,
  body.home-page .contact-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  body.home-page .t-grid,
  body.home-page .footer-brand,
  body.home-page .footer-locations {
    grid-template-columns: 1fr;
  }

  body.home-page .faq-card,
  body.home-page .contact-form-card {
    padding: 26px 18px;
  }
}

/* Home hero rebuild from provided reference */
body.home-page .navbar {
  min-height: 112px;
  padding: 18px max(48px, calc((100vw - 1450px) / 2 + 48px));
  background: #06162c;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  box-shadow: none;
}

body.home-page .logo {
  min-width: 260px;
}

body.home-page .logo img {
  height: 76px;
}

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

body.home-page .navbar nav {
  gap: 34px;
  font-size: 15px;
  text-transform: uppercase;
}

body.home-page .navbar nav a,
body.home-page .navbar .nav-dropdown-toggle {
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

body.home-page .navbar nav > a[href="contact.html"] {
  margin-left: 8px;
  padding: 20px 34px;
  background: linear-gradient(135deg, #d8b765, #f4dfad);
  color: #06162c !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 16px 34px rgba(0,0,0,0.18);
}

body.home-page .nav-icons {
  gap: 0;
  margin-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

body.home-page .nav-btn {
  width: 58px;
  height: 58px;
  border: 0;
  background: transparent;
}

body.home-page .nav-btn svg {
  stroke: #d6b760;
}

body.home-page .hero {
  position: relative;
  min-height: calc(100vh - 112px);
  margin: 0;
  padding: 74px max(48px, calc((100vw - 1450px) / 2 + 48px));
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(470px, 0.72fr);
  align-items: center;
  gap: 72px;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 74% 35%, rgba(63,143,219,0.2), transparent 33%),
    linear-gradient(90deg, rgba(4,16,32,0.98) 0%, rgba(6,24,47,0.96) 42%, rgba(8,31,61,0.94) 100%),
    url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

body.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,16,32,0.85), rgba(4,16,32,0.08) 44%, rgba(4,16,32,0.38)),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 28%);
  pointer-events: none;
}

body.home-page .hero-left {
  position: relative;
  z-index: 2;
}

body.home-page .hero-left::before {
  content: "ATLANTA PERSONAL INJURY LAWYERS";
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: #d6b760;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

body.home-page .hero-left::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 330px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, #d6b760, transparent);
}

body.home-page .hero-left h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(66px, 6.1vw, 112px);
  font-weight: 400;
  line-height: 0.96;
  text-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

body.home-page .hero-left h1 .blue {
  display: block;
  color: #4d8cdf;
}

body.home-page .hero-left h1 .pill {
  display: block !important;
  color: #d6b760;
}

body.home-page .hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(100%, 420px);
  margin: 32px 0 26px;
  color: #d6b760;
}

body.home-page .hero-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,183,96,0.85), transparent);
}

body.home-page .hero-divider b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214,183,96,0.65);
  color: #d6b760;
  font-size: 18px;
}

body.home-page .hero-left p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 500;
  line-height: 1.45;
}

body.home-page .hero-left p .blue {
  display: inline;
  color: #5da2f0;
  font-weight: 800;
}

body.home-page .hero-actions {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 40px;
  flex-wrap: wrap;
}

body.home-page .cta {
  min-width: 280px;
  min-height: 72px;
  margin: 0;
  padding: 0 34px;
  gap: 22px;
  border: 0;
  background: linear-gradient(135deg, #d4ad56, #f8e2aa);
  color: #07182f;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48), 0 18px 36px rgba(0,0,0,0.22);
}

body.home-page .cta span {
  font-size: 28px;
  line-height: 1;
}

body.home-page .hero-phone-cta {
  min-width: 260px;
  min-height: 72px;
  margin: 0;
  padding: 14px 24px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(93,162,240,0.65);
  background: rgba(10,34,65,0.55);
  color: #ffffff;
  box-shadow: none;
}

body.home-page .hero-phone-cta::before {
  content: "\260E";
  color: #d6b760;
  font-size: 28px;
}

body.home-page .hero-phone-cta span {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.home-page .hero-phone-cta strong {
  color: #ffffff;
  font-size: 21px;
  letter-spacing: 0.04em;
}

body.home-page .hero-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

body.home-page .hero-stars {
  color: #d6b760;
  font-size: 28px;
  letter-spacing: 0.08em;
}

body.home-page .hero-google {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.35);
  padding-left: 24px;
  color: #4285f4;
  font-size: 28px;
  font-weight: 900;
}

body.home-page .hero-rating-copy {
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

body.home-page .hero-rating-copy strong {
  color: #ffffff;
  letter-spacing: 0.12em;
}

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

body.home-page .hero-right {
  position: absolute;
  z-index: 1;
  right: min(36vw, 560px);
  bottom: 0;
  width: 520px;
  height: 660px;
  opacity: 0.78;
}

body.home-page .hero-right img {
  height: 110%;
  width: auto;
  left: -70px;
  top: 10px;
  filter: drop-shadow(0 34px 54px rgba(0,0,0,0.36));
}

body.home-page .hero-intake {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  padding: 44px;
  gap: 14px;
  border: 1px solid rgba(111,161,216,0.45);
  background: linear-gradient(180deg, rgba(10,35,67,0.9), rgba(5,20,40,0.88));
  box-shadow: 0 26px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

body.home-page .hero-intake-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d6b760;
  font-size: 13px;
  letter-spacing: 0.16em;
}

body.home-page .hero-intake-kicker::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, #d6b760, transparent);
}

body.home-page .hero-intake h2 {
  margin: 4px 0 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.08;
}

body.home-page .hero-intake input,
body.home-page .hero-intake select,
body.home-page .hero-intake textarea {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(124,169,220,0.34);
  background: rgba(18,45,80,0.68);
  color: #ffffff;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

body.home-page .hero-intake-grid {
  gap: 12px;
}

body.home-page .hero-intake textarea {
  min-height: 90px;
  padding-top: 18px;
}

body.home-page .hero-intake input::placeholder,
body.home-page .hero-intake textarea::placeholder {
  color: rgba(219,231,246,0.72);
}

body.home-page .hero-intake select {
  color: rgba(219,231,246,0.82);
}

body.home-page .hero-intake button {
  min-height: 70px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 0;
  background: linear-gradient(135deg, #1c5dc3, #65a9ff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.home-page .hero-intake button span {
  font-size: 28px;
  line-height: 1;
}

body.home-page .hero-intake-note {
  margin: 8px 0 0;
  color: rgba(219,231,246,0.68);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1260px) {
  body.home-page .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
    gap: 34px;
  }

  body.home-page .hero-right {
    right: 360px;
    opacity: 0.45;
  }

  body.home-page .navbar nav {
    gap: 18px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  body.home-page .navbar {
    min-height: 92px;
    padding: 14px 22px;
  }

  body.home-page .logo {
    min-width: 0;
  }

  body.home-page .logo img {
    height: 58px;
  }

  body.home-page .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 22px;
  }

  body.home-page .hero-left h1,
  body.home-page .hero-left p {
    max-width: 100%;
  }

  body.home-page .hero-left::after,
  body.home-page .hero-right {
    display: none;
  }

  body.home-page .hero-intake {
    max-width: 680px;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  body.home-page .hero-left::before {
    font-size: 11px;
    margin-bottom: 18px;
  }

  body.home-page .hero-left h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  body.home-page .hero-divider {
    margin: 22px 0 20px;
  }

  body.home-page .hero-actions,
  body.home-page .hero-rating {
    align-items: stretch;
    flex-direction: column;
  }

  body.home-page .cta,
  body.home-page .hero-phone-cta {
    width: 100%;
    min-width: 0;
  }

  body.home-page .hero-google {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
  }

  body.home-page .hero-intake {
    padding: 26px 18px;
  }

  body.home-page .hero-intake h2 {
    font-size: 32px;
  }

  body.home-page .hero-intake-grid {
    grid-template-columns: 1fr;
  }
}

/* Home hero final requested direction: no gold, shorter, photo background */
body.home-page .navbar {
  min-height: 96px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #06162c;
}

body.home-page .logo img {
  height: 66px;
}

body.home-page .navbar nav {
  gap: 32px;
  font-size: 17px;
  text-transform: uppercase;
}

body.home-page .navbar nav a,
body.home-page .navbar .nav-dropdown-toggle {
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

body.home-page .navbar nav > a[href="contact.html"] {
  background: #ffffff;
  color: #06162c !important;
  box-shadow: none;
  font-weight: 700;
}

body.home-page .nav-btn svg,
body.home-page .hero-phone-cta::before,
body.home-page .hero-stars,
body.home-page .hero-divider,
body.home-page .hero-intake-kicker {
  color: #6fb4ff;
}

body.home-page .hero {
  min-height: 610px;
  padding-top: 44px;
  padding-bottom: 46px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 0.9fr);
  gap: 54px;
  background:
    linear-gradient(90deg, rgba(3,8,14,0.74) 0%, rgba(3,8,14,0.48) 48%, rgba(3,8,14,0.68) 100%),
    url("assets/teamawad.png");
  background-size: cover;
  background-position: center 34%;
}

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

body.home-page .hero::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.22), rgba(0,0,0,0.04) 46%, rgba(0,0,0,0.18)),
    linear-gradient(180deg, rgba(6,22,44,0.36), rgba(6,22,44,0.12));
}

body.home-page .hero-left::before,
body.home-page .hero-left::after,
body.home-page .hero-divider,
body.home-page .hero-rating,
body.home-page .hero-right,
body.home-page .hero-intake-kicker,
body.home-page .hero-intake h2,
body.home-page .hero-intake-note {
  display: none;
}

body.home-page .hero-kicker {
  max-width: 720px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-transform: uppercase;
}

body.home-page .hero-left h1 {
  max-width: 700px;
  color: #ffffff;
  font-size: clamp(52px, 5.4vw, 86px);
  font-weight: 500;
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

body.home-page .hero-left h1 .blue,
body.home-page .hero-left h1 .pill {
  display: inline;
  color: #ffffff;
  font-weight: 500;
}

body.home-page .hero-left p {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.65;
}

body.home-page .hero-left p .blue {
  color: #85c4ff;
  font-weight: 700;
}

body.home-page .hero-support {
  max-width: 720px !important;
  margin-top: 28px !important;
  font-size: clamp(19px, 1.45vw, 25px) !important;
  line-height: 1.72 !important;
}

body.home-page .hero-actions {
  margin-top: 34px;
}

body.home-page .cta,
body.home-page .hero-phone-cta {
  min-height: 64px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  box-shadow: none;
}

body.home-page .cta {
  min-width: 250px;
}

body.home-page .hero-phone-cta {
  min-width: 250px;
}

body.home-page .hero-intake {
  max-width: 640px;
  padding: 0;
  gap: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .hero-intake-grid {
  gap: 18px;
}

body.home-page .hero-intake input,
body.home-page .hero-intake select,
body.home-page .hero-intake textarea {
  min-height: 62px;
  padding: 0 26px;
  border: 0;
  background: rgba(255,255,255,0.96);
  color: #132438;
  font-size: 17px;
  font-weight: 400;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

body.home-page .hero-intake input::placeholder,
body.home-page .hero-intake textarea::placeholder {
  color: #2d3d50;
}

body.home-page .hero-intake select {
  color: #2d3d50;
}

body.home-page .hero-intake textarea {
  min-height: 142px;
  padding-top: 26px;
}

body.home-page .hero-intake button {
  min-height: 64px;
  margin-top: 4px;
  border: 0;
  background: #2f7ec8;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

body.home-page .hero-intake button span {
  display: none;
}

@media (max-width: 1120px) {
  body.home-page .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.home-page .hero-intake {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body.home-page .navbar nav {
    font-size: 15px;
  }

  body.home-page .hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  body.home-page .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  body.home-page .hero-left h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  body.home-page .hero-left p,
  body.home-page .hero-support {
    font-size: 18px !important;
  }

  body.home-page .hero-intake input,
  body.home-page .hero-intake select,
  body.home-page .hero-intake textarea {
    min-height: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Hero correction: restore liked version, original attorneys image, shorter height */
body.home-page .navbar {
  min-height: 96px;
  padding: 14px max(44px, calc((100vw - 1380px) / 2 + 44px));
  background: #071a33;
}

body.home-page .logo {
  min-width: 190px;
}

body.home-page .logo img {
  height: 66px;
}

body.home-page .navbar nav {
  gap: 28px;
  font-size: 16px;
  text-transform: uppercase;
}

body.home-page .navbar nav a,
body.home-page .navbar .nav-dropdown-toggle {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

body.home-page .navbar nav a.active,
body.home-page .navbar nav a:hover,
body.home-page .navbar .nav-dropdown-toggle:hover {
  color: #ffffff;
}

body.home-page .navbar nav a::before,
body.home-page .navbar .nav-dropdown-toggle::before {
  background: linear-gradient(90deg, #c8a762, #7db5ec);
}

body.home-page .navbar nav > a[href="contact.html"] {
  background: #ffffff;
  color: #071a33 !important;
  box-shadow: none;
}

body.home-page .nav-btn svg {
  stroke: #c8a762;
}

body.home-page .hero {
  min-height: 610px;
  padding: 52px max(44px, calc((100vw - 1380px) / 2 + 44px));
  grid-template-columns: minmax(0, 1fr) minmax(400px, 450px);
  gap: 48px;
  background:
    linear-gradient(90deg, rgba(7,16,31,0.98) 0%, rgba(7,26,51,0.93) 50%, rgba(19,55,96,0.88) 100%),
    url("assets/brokenefffect.png");
  background-size: cover;
  background-position: center;
}

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

body.home-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7,16,31,0.58), rgba(7,16,31,0.14) 52%, rgba(7,16,31,0.42));
}

body.home-page .hero-left::before,
body.home-page .hero-left::after,
body.home-page .hero-divider,
body.home-page .hero-rating,
body.home-page .hero-kicker,
body.home-page .hero-support,
body.home-page .hero-intake-note {
  display: none !important;
}

body.home-page .hero-left h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(58px, 5.6vw, 96px);
  font-weight: 500;
  line-height: 0.98;
}

body.home-page .hero-left h1 .blue {
  display: inline;
  color: #7db5ec;
}

body.home-page .hero-left h1 .pill {
  display: inline !important;
  color: #c8a762;
  font-weight: 700;
}

body.home-page .hero-left p {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 600;
  line-height: 1.48;
}

body.home-page .hero-left p .blue {
  color: #7db5ec;
  font-weight: 800;
}

body.home-page .hero-actions {
  margin-top: 34px;
}

body.home-page .cta {
  min-width: 250px;
  min-height: 62px;
  background: linear-gradient(135deg, #4f96df, #2f73b8);
  color: #ffffff;
  border: 0;
}

body.home-page .hero-phone-cta {
  min-width: 250px;
  min-height: 62px;
  border: 1px solid rgba(125,181,236,0.62);
  background: rgba(10,34,65,0.55);
  color: #ffffff;
}

body.home-page .hero-phone-cta::before {
  color: #c8a762;
}

body.home-page .hero-right {
  display: block;
  position: absolute;
  z-index: 1;
  right: calc((100vw - 1380px) / 2 + 330px);
  bottom: 0;
  width: 390px;
  height: 500px;
  opacity: 0.52;
  pointer-events: none;
}

body.home-page .hero-right img {
  height: 118%;
  width: auto;
  left: -40px;
  top: 0;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,0.34));
}

body.home-page .hero-intake {
  max-width: 440px;
  margin-left: auto;
  padding: 30px;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(8,24,46,0.9);
  box-shadow: 0 26px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

body.home-page .hero-intake-kicker,
body.home-page .hero-intake h2 {
  display: block;
}

body.home-page .hero-intake-kicker {
  color: #7db5ec;
}

body.home-page .hero-intake-kicker::after {
  background: linear-gradient(90deg, #7db5ec, transparent);
}

body.home-page .hero-intake h2 {
  margin: 2px 0 10px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
}

body.home-page .hero-intake input,
body.home-page .hero-intake select,
body.home-page .hero-intake textarea {
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  background: #263a56;
  color: #ffffff;
  font-size: 15px;
  box-shadow: none;
}

body.home-page .hero-intake textarea {
  min-height: 70px;
  padding-top: 15px;
}

body.home-page .hero-intake input::placeholder,
body.home-page .hero-intake textarea::placeholder,
body.home-page .hero-intake select {
  color: rgba(255,255,255,0.74);
}

body.home-page .hero-intake button {
  min-height: 58px;
  background: rgba(79,150,223,0.2);
  border: 1px solid rgba(125,181,236,0.72);
  color: #ffffff;
  box-shadow: none;
}

@media (max-width: 1100px) {
  body.home-page .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.home-page .hero-right {
    display: none;
  }

  body.home-page .hero-intake {
    max-width: 620px;
    margin-left: 0;
  }
}

/* Home typography pass */
body.home-page {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif;
}

body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page .hero-left h1,
body.home-page .origin-header h2,
body.home-page .practice-header h2,
body.home-page .t-header-left h2,
body.home-page .cs-heading-row h2,
body.home-page .team-title,
body.home-page .faq-title,
body.home-page .contact-heading {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  letter-spacing: -0.018em;
}

body.home-page .navbar nav a,
body.home-page .navbar .nav-dropdown-toggle {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

body.home-page .navbar nav > a[href="contact.html"] {
  font-weight: 800;
  letter-spacing: 0;
}

body.home-page .hero-left h1 {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  font-size: clamp(64px, 6vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

body.home-page .hero-left h1 .blue,
body.home-page .hero-left h1 .pill {
  font-weight: 900;
}

body.home-page .hero-left p {
  font-family: 'Manrope', 'Outfit', Arial, sans-serif !important;
  font-size: clamp(21px, 1.65vw, 28px);
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.012em;
}

body.home-page .hero-left p .blue {
  font-weight: 900;
}

body.home-page .cta,
body.home-page .hero-phone-cta,
body.home-page .hero-intake button {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  font-weight: 900;
  letter-spacing: 0.035em;
}

body.home-page .hero-phone-cta span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

/* Offset margins for sticky header anchor navigation */
#video-grid-section,
#all-editions {
  scroll-margin-top: 100px !important;
}

body.home-page .hero-phone-cta strong {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

body.home-page .hero-intake-kicker {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body.home-page .hero-intake h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.home-page .hero-intake input,
body.home-page .hero-intake select,
body.home-page .hero-intake textarea {
  font-family: 'Manrope', 'Outfit', Arial, sans-serif !important;
  font-size: 15px;
  font-weight: 650;
}

body.home-page .partners h2,
body.home-page .origin-header h2,
body.home-page .practice-header h2,
body.home-page .t-header-left h2,
body.home-page .cs-heading-row h2,
body.home-page .team-title,
body.home-page .faq-title,
body.home-page .contact-heading {
  font-weight: 900;
  line-height: 1.02;
}

body.home-page .origin-description,
body.home-page .t-body-text,
body.home-page .faq-answer p,
body.home-page .contact-list-item,
body.home-page .contact-info-row {
  font-family: 'Manrope', 'Outfit', Arial, sans-serif !important;
  font-weight: 550;
  letter-spacing: -0.006em;
}

body.home-page .practice-btn,
body.home-page .team-name,
body.home-page .faq-question-text,
body.home-page .contact-label {
  font-family: 'Outfit', 'Manrope', Arial, sans-serif !important;
  font-weight: 850;
}

@media (max-width: 760px) {
  body.home-page .hero-left h1 {
    font-size: clamp(46px, 12vw, 66px);
    line-height: 0.96;
  }

  body.home-page .hero-left p {
    font-size: 19px;
  }
}

/* Premium hero composition refinement */
body.home-page .hero {
  min-height: 660px;
  padding-top: 54px;
  padding-bottom: 60px;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 430px);
  gap: 58px;
  background:
    radial-gradient(circle at 68% 44%, rgba(125,181,236,0.18), transparent 34%),
    linear-gradient(90deg, rgba(7,16,31,0.99) 0%, rgba(7,26,51,0.95) 46%, rgba(27,68,111,0.9) 100%),
    url("assets/brokenefffect.png");
  background-size: cover;
}

body.home-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7,16,31,0.72), rgba(7,16,31,0.18) 54%, rgba(7,16,31,0.32)),
    radial-gradient(circle at 56% 72%, rgba(79,150,223,0.22), transparent 28%);
}

body.home-page .hero-left {
  max-width: 700px;
}

body.home-page .hero-left h1 {
  font-size: clamp(62px, 5.8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body.home-page .hero-left h1 .blue {
  color: #86bcf6;
}

body.home-page .hero-left h1 .pill {
  color: #d0ad5b;
}

body.home-page .hero-left p {
  max-width: 660px;
  margin-top: 42px;
  font-size: clamp(22px, 1.75vw, 29px);
  line-height: 1.42;
  color: rgba(255,255,255,0.88);
}

body.home-page .hero-actions {
  margin-top: 44px;
  gap: 18px;
}

body.home-page .cta,
body.home-page .hero-phone-cta {
  min-height: 68px;
}

body.home-page .cta {
  background: linear-gradient(135deg, #5aa4ef, #347cc6);
  box-shadow: 0 18px 38px rgba(51,124,198,0.2);
}

body.home-page .hero-phone-cta {
  background: rgba(12,36,68,0.36);
  border-color: rgba(125,181,236,0.46);
}

body.home-page .hero-phone-cta::before {
  color: #d0ad5b;
}

body.home-page .hero-right {
  display: block;
  right: calc((100vw - 1380px) / 2 + 190px);
  bottom: -16px;
  width: 820px;
  height: 675px;
  opacity: 0.74;
  overflow: visible;
}

body.home-page .hero-right img {
  height: 112%;
  left: -250px;
  top: 12px;
  filter:
    saturate(1.04)
    brightness(1.12)
    contrast(0.96)
    drop-shadow(0 34px 56px rgba(0,0,0,0.38));
}

body.home-page .hero-intake {
  max-width: 420px;
  transform: translateX(24px);
  padding: 34px 32px;
  border: 1px solid rgba(125,181,236,0.18);
  background: linear-gradient(180deg, rgba(8,25,48,0.94), rgba(6,20,39,0.94));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

body.home-page .hero-intake h2 {
  font-size: 37px;
  letter-spacing: -0.045em;
}

body.home-page .hero-intake input,
body.home-page .hero-intake select,
body.home-page .hero-intake textarea {
  min-height: 54px;
  background: #2a3e5d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
}

body.home-page .hero-intake textarea {
  min-height: 78px;
}

body.home-page .hero-intake button {
  min-height: 60px;
  background: #1c395f;
  border-color: rgba(125,181,236,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

body.home-page .hero-intake button:hover {
  background: #4f96df;
}

@media (max-width: 1280px) {
  body.home-page .hero-right {
    right: 160px;
    width: 700px;
    opacity: 0.62;
  }

  body.home-page .hero-right img {
    left: -220px;
  }

  body.home-page .hero-intake {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  body.home-page .hero-right {
    display: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PHASE 2 PREMIUM STYLE REFINEMENTS & RESILIENT FALLBACKS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* 1. Global Page Entrance Reveal (Transition Fallback) */
@keyframes globalPageReveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

body {
  animation: globalPageReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

/* 2. Navigation Double Underline Override (Resilient Fallback) */
.navbar nav a::before,
.navbar .nav-dropdown-toggle::before {
  display: none !important;
  content: none !important;
}

.nav-dropdown-item::before,
.nav-dropdown-item::after {
  display: none !important;
  content: none !important;
}

/* 3. Five Steps Section Mobile Spacing Refinements */
@media (max-width: 768px) {
  .five-steps-card {
    padding: 40px 24px 30px !important;
  }
}

@media (max-width: 480px) {
  .five-steps-card {
    padding: 30px 16px 20px !important;
  }
}

/* 4. Client Reviews Section Mobile Padding Refinements */
@media (max-width: 480px) {
  .awad-reviews {
    padding: 24px 12px !important;
  }
}

/* 5. Scroll Reveal Animation Classes (Resilient Fallback) */
.scroll-reveal {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.scroll-reveal-left {
  opacity: 0 !important;
  transform: translateX(-28px) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.scroll-reveal-right {
  opacity: 0 !important;
  transform: translateX(28px) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.scroll-reveal-scale {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.scroll-reveal.revealed,
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed,
.scroll-reveal-scale.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-100 { transition-delay: 0.1s !important; }
.delay-150 { transition-delay: 0.15s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-250 { transition-delay: 0.25s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* 6. Premium Active Navigation Indicators (Resilient Fallback) */
.navbar nav a {
  position: relative;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.navbar nav a.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, #c8a762, #e6c57f) !important;
  box-shadow: 0 0 10px rgba(200, 167, 98, 0.6) !important;
  border-radius: 2px !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 7. Global Mobile Overflow Protection */
@media (max-width: 480px) {
  body {
    overflow-x: hidden !important;
  }

  .five-steps-row {
    gap: 12px !important;
  }

  .five-steps-number {
    width: 48px !important;
    height: 48px !important;
    font-size: 18px !important;
    top: -24px !important;
  }

  .five-steps-card-title {
    font-size: 16px !important;
  }

  .five-steps-card-desc {
    font-size: 13px !important;
  }
}

@media (max-width: 320px) {
  body {
    overflow-x: hidden !important;
  }

  .five-steps-card {
    padding: 24px 12px 16px !important;
  }

  .awad-reviews {
    padding: 16px 8px !important;
  }

  .awad-reviews .ar-hero-title {
    font-size: 20px !important;
  }

  .awad-reviews .ar-rating-row {
    padding: 10px 14px !important;
  }

  .awad-reviews .ar-big-score {
    font-size: 36px !important;
  }
}
