/* ============================================
   AFREON GROUP — PREMIUM AFRICAN-TECH THEME
   ============================================ */

:root {
  /* Core Brand Palette */
  --primary: #1B6CA8;
  --primary-dark: #0A3D62;
  --primary-mid: #1FA2A6;
  --secondary: #2ECC71;
  --accent-glow: #A3E4F7;

  /* Backgrounds */
  --bg-dark: #0F172A;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.96);

  /* Text */
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;

  /* Borders & Effects */
  --border-light: rgba(27, 108, 168, 0.12);
  --border-glow: rgba(163, 228, 247, 0.3);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.14);

  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  --container-max-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;

  /* Typography */
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-size-h1: clamp(2.8rem, 5.5vw, 5rem);
  --font-size-h2: clamp(2rem, 4vw, 3.2rem);
  --font-size-h3: clamp(1.3rem, 2.5vw, 1.8rem);
  --letter-spacing-headers: -0.03em;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(27, 108, 168, 0.2);
  color: var(--primary-dark);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--bg-dark);
  color: var(--accent-glow);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(163, 228, 247, 0.08);
  text-align: right;
  letter-spacing: 0.02em;
}

.top-bar-content {
  display: block;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-info {
  display: inline;
  opacity: 0.9;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 38px;
  }
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.cta-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  padding: 0.875rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-header);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(27, 108, 168, 0.3), 0 0 20px rgba(163, 228, 247, 0.15);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 108, 168, 0.4), 0 0 30px rgba(163, 228, 247, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  order: 3;
}

.hamburger span {
  width: 32px;
  height: 4px;
  background: var(--primary-dark);
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hamburger {
  z-index: 3000;
}

.hamburger.active span:nth-child(1) {
  background: var(--text-white);
  transform: rotate(45deg) translate(9px, 9px);
  box-shadow: 0 2px 8px rgba(255,255,255,0.6);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  background: var(--text-white);
  transform: rotate(-45deg) translate(8px, -8px);
  box-shadow: 0 2px 8px rgba(255,255,255,0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) contrast(1.1) brightness(0.5);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.85), rgba(27, 108, 168, 0.7), rgba(31, 162, 166, 0.5), rgba(46, 204, 113, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-central {
  text-align: center;
  max-width: 800px;
}

.hero-central svg {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
.practice-areas {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.practice-areas h2, 
.about-hero h1, 
.contact-hero h1,
.our-team h2,
.testimonials h2,
.contact-info h2,
.contact-form-container h2 {
  font-family: var(--font-header);
  font-weight: 700;
}

.practice-intro {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.practice-intro h2 {
  font-size: var(--font-size-h1);
  letter-spacing: var(--letter-spacing-headers);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.practice-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.practice-item {
  text-align: center;
  padding: 3rem 2rem;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.practice-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.practice-item:hover::before {
  transform: scaleX(1);
}

.practice-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(27, 108, 168, 0.15), 0 0 40px rgba(163, 228, 247, 0.1);
}

.practice-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  fill: var(--primary);
  filter: drop-shadow(0 4px 12px rgba(27, 108, 168, 0.3));
}

.practice-icon:hover {
  filter: drop-shadow(0 0 20px rgba(163, 228, 247, 0.5));
}

.practice-item h3 {
  font-family: var(--font-header);
  font-size: var(--font-size-h3);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-headers);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.practice-item p {
  color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}


.testimonials h2 {
  font-family: var(--font-header);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-headers);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-section {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  min-height: 400px;
  display: flex;
  align-items: center;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-card {
  background: var(--bg-white);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transform: perspective(1000px) rotateX(5deg);
  transition: var(--transition);
}

.coming-soon-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 0 30px 80px rgba(27, 108, 168, 0.15);
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(27, 108, 168, 0.3);
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.coming-soon-card h3 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.coming-soon-card p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}


.testimonial {
  background: var(--bg-light);
  padding: 3rem;
  border: 1px solid var(--border-light);
  border-left-width: 4px;
  border-left-color: var(--primary);
  border-radius: 0 20px 20px 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial::before {
  content: '"';
  font-size: 4.5rem;
  color: var(--primary);
  position: absolute;
  top: -15px;
  left: 25px;
  font-family: var(--font-header);
  font-weight: 300;
  opacity: 0.6;
}

.testimonial blockquote {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
}

cite {
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
  font-family: var(--font-header);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT & CONTACT HERO
   ============================================ */
.about-hero, .contact-hero {
  padding: var(--section-padding) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border-bottom: 1px solid var(--border-light);
}

.about-hero h1, .contact-hero h1 {
  font-family: var(--font-header);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-headers);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.about-hero p, .contact-hero p {
  font-size: 1.375rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   OUR STORY
   ============================================ */
.our-story {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-header);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-headers);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-text p {
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.story-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ============================================
   OUR TEAM
   ============================================ */
.our-team {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.our-team h2 {
  font-family: var(--font-header);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-headers);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--bg-light);
  transition: var(--transition);
}

.team-member:hover .team-photo {
  border-color: var(--primary);
}

.team-member h3 {
  font-family: var(--font-header);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-headers);
}

.role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-header);
  letter-spacing: var(--letter-spacing-headers);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-content {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info h2 {
  font-family: var(--font-header);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-headers);
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-item i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-family: var(--font-header);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-secondary);
}

.office-hours {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-form-container h2 {
  font-family: var(--font-header);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: var(--letter-spacing-headers);
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 108, 168, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.contact-form label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.contact-form input[type="checkbox"] {
  width: auto;
  margin: 0.3rem 0 0 0;
  accent-color: var(--primary);
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  padding: 1.25rem 4rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-header);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  grid-column: 1 / -1;
  justify-self: center;
  box-shadow: 0 8px 25px rgba(27, 108, 168, 0.3), 0 0 20px rgba(163, 228, 247, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(27, 108, 168, 0.4), 0 0 30px rgba(163, 228, 247, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2744 100%);
  color: var(--text-white);
  padding: var(--section-padding) 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: var(--spacing-lg);
}

.footer h3 {
  font-family: var(--font-header);
  margin-bottom: 1.5rem;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-headers);
  font-size: 1.25rem;
}

.footer p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--accent-glow);
}

.social-icons {
  display: flex;
  gap: 1.25rem;
}

.social-icons a {
  color: var(--text-white);
  transition: var(--transition);
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
  color: var(--secondary);
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.cybersecurity-icon {
  animation: pulse 2s infinite;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .header-content {
    gap: 1rem;
  }
  
  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 2000;
    padding: 2rem 0;
  }

  .nav.active {
    left: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 2.5rem;
  }

  .nav a {
    font-size: 1.5rem;
    color: var(--text-primary);
  }

  .cta-button {
    order: 2;
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
    margin-left: auto;
    margin-right: 1rem;
  }

  .top-bar-content {
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .story-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image img {
    height: 350px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .practice-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.25rem;
  }

  .testimonials-grid,
  .hero-content {
    gap: 1.5rem;
  }

  .section-padding {
    padding: var(--section-padding-mobile) 0 !important;
  }
  
  .hero-central svg {
    width: 200px !important;
    height: 160px !important;
  }
  
  .hero-central h1 {
    font-size: 2rem !important;
  }
}
